/* Footer global */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 1.5rem 0 1rem 0;
  text-align: center;
  margin-top: 2rem;
  padding-bottom: 125px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  font-size: 1.2rem;
}

.footer-logo img {
  height: 40px;
  object-fit: cover;

  filter: drop-shadow(0 2px 5px rgb(255, 255, 255));

}

.footer-contact {
  display: flex;
  gap: 1.5rem;
  font-size: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Estilo para los enlaces del footer-contact */
.footer-contact a {
  color: #ffffff;
  /* O el color que prefieras */
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-contact a:hover {
  color: var(--gray-light);
  /* Color de WhatsApp o un color destacado */
  text-decoration: underline;
}

/* Opcional: iconos un poco más grandes */
.footer-contact i {
  font-size: 1.1em;
}

.footer-copy {
  font-size: 0.95rem;
  color: var(--gray-light);
  margin-top: 0.5rem;
}

/* Estilos para la descripción del footer */
.footer-description {
  max-width: 500px;
  margin: 0 auto 1rem auto;
  text-align: center;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.5;
  padding: 0 1rem;
}

.footer-help {
  border-radius: 10px;
  padding: 1rem;
  margin: 1rem 0;
  text-align: center;
  border: #ffffff 1px solid;
}

.footer-help-btn {
  display: inline-block;
  margin-top: 0.5rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
background-color: var(--secondary);}

.footer-help-btn:hover {
  background: var(--secondary);
}