/* =========================
FOOTER ESPACIOS AMPLIOS
========================= */
.footer {
  background-color: #1d1616;
  padding: 100px 20px; /* más altura */
  font-family: 'DM Sans', sans-serif;
  color: rgb(255, 255, 255);
  height: auto;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;

  margin: 0 auto;
  flex-wrap: wrap;
  gap: 30px; /* más separación entre columnas */
}

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 280px;
}

.footer-brand {
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 30px; /* más separación interna */
}

/* LIBRO DE RECLAMACIONES */
.footer-brand .libro {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.6rem; /* ícono más grande */
  gap: 10px; /* mayor separación */
  text-decoration: none;
  color: #ffffff;
  margin-bottom: 15px; /* más margen */
}

.footer-brand .libro i {
  font-size: 4rem; /* ícono grande y llamativo */
}

.footer-brand .libro:hover {
  text-decoration: none;
} 

.footer-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 30px; /* más espacio */
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  transition: max-height 0.3s ease;
}

.footer-links li {
  margin-bottom: 8px; /* más espacio entre links */
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem; /* un poco más grande */
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-toggle {
  font-size: 1.3rem;
  display: none;
}

.footer-social a {
  margin: 0 10px; /* más espacio entre iconos */
  color: #ffffff;
  font-size: 22px; /* iconos más grandes */
}

.footer-social a:hover {
    color: #ffaacd;
} 

/* Móviles */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px; /* más espacio vertical */
  }
  .footer-col, .footer-brand {
    max-width: 100%;
    flex: 0;
  }
  .footer-toggle {
    display: inline-block;
  }
  .footer-col .footer-links {
    max-height: 0;
    overflow: hidden;
  }
  .footer-col.active .footer-links {
    max-height: 350px; /* altura más amplia */
  }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
  .footer-container {
    justify-content: flex-start;
    gap: 25px;
  }
  .footer-col, .footer-brand {
    flex-basis: 45%;
    max-width: 45%;
  }
  
}

/* Escritorio */
@media (min-width: 1025px) {
  .footer-toggle {
    display: none;
  }
  .footer-col .footer-links {
    max-height: none;
    overflow: visible;
  }
  
}