/* ============================================
   FOOTER - NEGRO + NARANJA ELEGANTE
   ============================================ */

.footer {
  background: var(--black-pure);  /* Negro puro #000000 */
  padding: 3rem 2rem 2rem;
  color: var(--gray-300);  /* Gris claro */
  border-top: 2px solid rgba(255, 107, 53, 0.2);  /* Línea naranja sutil */
}

/* Columnas */
.footer-col {
  margin-bottom: 2rem;
}

.footer-titulo-col {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);  /* Blanco */
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Links */
.footer-link {
  color: var(--gray-400) !important;  /* Gris medio */
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  display: block;
  padding: 0.375rem 0;
}

.footer-link:hover {
  color: var(--orange-elegant) !important;  /* Naranja al hover */
}

/* Contacto items */
.contacto-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--gray-300);  /* Gris claro */
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.contacto-icon {
  font-size: 1.875rem !important;
  transition: all 0.3s ease;
}

.contacto-item:hover .contacto-icon {
  color: var(--orange-elegant);  /* Naranja en hover */
  transform: scale(1.1);
}

/* WhatsApp específico */
.whatsapp-link .contacto-icon {
  color: #25d366; /* Verde WhatsApp */
}

.whatsapp-link:hover .contacto-icon {
  color: #20ba5a;
  transform: scale(1.15);
}

/* Teléfono */
.phone-link .contacto-icon {
  color: #3b82f6;
}

.phone-link:hover .contacto-icon {
  color: #2563eb;
}

/* Email */
.email-link .contacto-icon {
  color: #8b5cf6;
}

.email-link:hover .contacto-icon {
  color: #7c3aed;
}

/* Legal section */
.footer-legal {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 107, 53, 0.2);  /* Línea naranja */
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-legal-link {
  color: var(--gray-400) !important;  /* Gris medio */
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--orange-elegant) !important;  /* Naranja en hover */
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--gray-500);  /* Gris más oscuro */
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 2rem 1.5rem 1.5rem;
  }
  
  .contacto-icon {
    font-size: 1.5rem !important;
  }
}
