/* Estilo del footer */
.footer {
  background: linear-gradient(71deg, #080509, #1a171c, #080509);
  color: white;
  padding: 40px 0;
  font-family: Arial, sans-serif;
}

/* Contenedor principal */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Secciones dentro del footer */
.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}

.footer-section .footer-direccion p {
  font-weight: 400;
  color: #ccc;
}

.footer-section .footer-direccion p strong {
  font-weight: bold;
  color: #fff;
}

/* Títulos de las secciones */
.footer-title {
  font-size: 1.6rem;
  background: linear-gradient(135deg, #f4dba3, #c8a060);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 15px;
}

/* Enlaces dentro de las secciones */
.footer-links,
.footer-social {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-social li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-social a {
  color: #080509;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  transition: color 0.3s ease;
}

.footer-links a {
  color: white;
}

/* Hover en los enlaces */
.footer-links a:hover,
.footer-social a:hover {
  color: #3c1e00; /* Un toque dorado en el hover */
}

/* Estilo de input y boton de suscripción */
.footer-input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
  border: 1px solid transparent;
  box-sizing: border-box; /* Asegura que el padding no afecte el tamaño del input */
}

.footer-input:focus {
  outline: none;
  border: 1px solid #c8a060; /* Puedes definir un color de borde diferente si quieres */
}

.footer-button {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #e5c58b, #b38a50); /* Dorado más intenso */
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1rem;
  box-sizing: border-box; /* Asegura que el padding no afecte el tamaño del botón */
  color: #3c1e00;
  transition: background 0.3s ease, transform 0.2s ease;
}

.footer-button:hover {
  background: linear-gradient(135deg, #e5c58b, #b38a50); /* Dorado más intenso */
  transform: scale(1.05);
}

.footer-button:active {
  background: linear-gradient(135deg, #d4b478, #a37a40); /* Un poco más oscuro */
  transform: scale(0.98);
}

/* Estilo para la parte inferior del footer */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
}

.footer-link {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

.footer-link:hover {
  color: #c8a060;
}

/* Media Query para pantallas hasta 250px */
@media (max-width: 250px) {
  .footer-container {
      padding: 0 5px;
  }

  .footer-title {
      font-size: 1.1rem; /* Reducir el tamaño de fuente */
      margin-bottom: 10px;
  }

  .footer-links a,
  .footer-social a {
      font-size: 0.9rem; /* Reducir tamaño de los enlaces */
  }

  .footer-input,
  .footer-button {
      font-size: 0.9rem; /* Ajustar el tamaño de los inputs y botones */
      padding: 8px; /* Reducir el padding */
  }

  .footer-social i {
      font-size: 1.3rem; /* Reducir tamaño de los iconos */
  }

  .footer-bottom {
      font-size: 0.8rem; /* Reducir tamaño de la fuente en la parte inferior */
  }

  .footer-link {
      font-size: 0.9rem; /* Reducir tamaño de los enlaces */
  }
}

/* Media Query para pantallas pequeñas (hasta 768px) */
@media (max-width: 768px) {
  .footer-title {
      font-size: 1.4rem;
  }

  .footer-links a,
  .footer-social a {
      font-size: 1rem;
  }

  .footer-input,
  .footer-button {
      font-size: 1rem;
  }
}

/* Media Query para pantallas muy pequeñas (hasta 480px) */
@media (max-width: 480px) {
  .footer-title {
      font-size: 1.3rem;
  }

  .footer-links a,
  .footer-social a {
      font-size: 1rem;
  }

  .footer-input,
  .footer-button {
      font-size: 1rem;
  }
}