.footer-container {
  background-color: #222222;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-logo img {
  width: 360px;
  /*filter: brightness(0) invert(1);*/
}

.footer-links {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0ff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-column ul li a:hover {
  color: #0ff;
}

.social-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  justify-items: center; /* centra horizontalmente los iconos */
  align-items: center;
  max-width: 150px; /* ajusta el ancho total si lo deseas */
  margin: 0 auto;   /* centra el contenedor en la página */
  margin-top: 30px;
}

.social-icons a img {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease, filter 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.1);
  filter: brightness(1.2) saturate(1.5);
}

/*
.social-icons a img {
  width: 40px;
  height: 40px;
  transition: transform 0.2s ease, filter 0.3s ease;
  border-radius: 10px;
}

.social-icons a:hover img {
  transform: scale(1.1);
  filter: brightness(1.2) saturate(1.5);
}
*/
.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-top: 30px;
}

.subscribe_button{
  background-color: #B026FF;
  padding: 10px 18px;
  margin-right: 10px;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.subscribe_button:hover{
  background-color: #39FF14;
}

.payment-methods{
  margin-left: 380px;
  margin-top: -210px;
  
}

.payment-methods h4 {
  color: #0ff;
  margin-bottom: 10px;
  font-size: 20px;
}

.payment-icons {
  /*display: flex;
  flex-wrap: wrap;
  gap: 10px;*/
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  justify-items: center; /* centra horizontalmente los iconos */
  align-items: center;
  max-width: 150px; /* ajusta el ancho total si lo deseas */
  margin-left: -10px;
  margin-top: 20px;
}

.payment-icons img {
  width: 60px;
  height: 40px;
  transition: transform 0.2s ease, filter 0.3s ease;
}

.payment-icons img:hover{
  transform: scale(1.1);
  filter: brightness(1.2) saturate(1.5);
}



.subscribe_input {
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  width: 250px; /* Igual al botón */
  font-weight: bold;
  background-color: #111;
  color: white;
  box-shadow: 0 0 5px #B026FF, 0 0 10px #B026FF, 0 0 15px #B026FF;
  outline: none;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.subscribe_input:focus {
  box-shadow: 0 0 8px #B026FF, 0 0 20px #B026FF, 0 0 30px #B026FF;
  background-color: #1a1a1a;
}

@media screen and (min-width:834px) and (max-width:1360px) {
  .footer-links{
    margin-left: 150px;
  }
  .footer-logo{
    margin-left: 60px;
  }
  .payment-methods{
    margin-left: 320px;
  }
}

@media screen /*and (min-width: 393px)*/ and (max-width: 1360px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  /*
  .footer-logo {
    margin: 0 auto;
    text-align: center;
  }
    */

  .footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    margin-left: 50px;
  }

  .footer-logo img {
    width: 100%;
    max-width: 500px; /* Ajusta según tu preferencia */
    height: auto;
  }

  .footer-links {
    justify-content: center;
    gap: 40px;
    margin: 0 auto;
  }

  .footer-column {
    text-align: center;
  }

  .payment-methods {
    margin: 0 auto;
    text-align: center;
  }

  .payment-icons {
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    margin: 20px auto 0;
  }

  .social-icons {
    grid-template-columns: repeat(2, 1fr);
    margin: 30px auto 0;
  }

  .footer-bottom {
    margin-top: 20px;
  }
}