/* --- FOOTER PRO 2.0 (Versión Híbrida) --- */
.bc-footer {
  background: linear-gradient(to bottom, #05010d 0%, #0a0514 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 40px 30px; position: relative; overflow: hidden; margin-top: 4rem;
}
/* CONTENEDOR PRINCIPAL (GRID) */
.footer-container {
  max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; 
  align-items: start; gap: 40px;
}
/* 1. SECCIÓN MARCA (Izquierda) */
.footer-brand { text-align: left; }
.brand-text {
  font-family: 'Cinzel', serif; font-size: 1.8rem; color: #fff; margin: 0 0 10px 0;
  letter-spacing: 1px;
}
.brand-text .dot { color: var(--primary-glow, #a855f7); }
.brand-tagline {
  color: #888; font-size: 0.9rem; font-family: 'Space Grotesk', sans-serif; opacity: 0.8;
  max-width: 250px; 
}
/* 2. SECCIÓN ENLACES (Centro) */
.footer-links-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; text-align: left;
}
.link-col { display: flex; flex-direction: column; gap: 12px; }
.link-col h4 {
  color: #fff; font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 8px; opacity: 0.5;
}
.link-clean {
  background: none; border: none; color: #ccc; font-size: 0.95rem;
  text-align: left; padding: 0; cursor: pointer;
  transition: all 0.3s ease; font-family: 'Inter', sans-serif;
  white-space: nowrap; 
}
.link-clean:hover {
  color: var(--primary-glow, #a855f7); transform: translateX(5px);
}
/* 3. SECCIÓN CAFÉ (Derecha) */
.footer-coffee { text-align: right; }
.btn-gold-glow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 30px; background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3); color: #ffd700;
  border-radius: 50px; text-decoration: none; font-weight: 600;
  transition: all 0.3s ease; backdrop-filter: blur(5px);
}
.btn-gold-glow:hover {
  background: rgba(255, 215, 0, 0.15);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
}
/* 4. LEGAL INFERIOR (Ocupa todo el ancho abajo) */
.footer-legal-bottom {
  grid-column: 1 / -1; margin-top: 50px; padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.medical-warning-text {
  font-size: 0.8rem; color: #666; margin-bottom: 15px;
  background: rgba(255,0,0,0.05); padding: 8px 16px;
  border-radius: 8px; border: 1px dashed rgba(255, 100, 100, 0.2);
  display: inline-block;
}
.copyright-row { color: #444; font-size: 0.8rem; }
/* --- BOTÓN SOCIAL DESTACADO (La Tribu) --- */
.btn-social-trigger {
  margin-top: 10px; display: none; align-items: center; gap: 10px;
  background: rgba(168, 85, 247, 0.1); border: 1px solid rgba(168, 85, 247, 0.3); 
  color: #e9d5ff; padding: 10px 16px; border-radius: 12px; cursor: pointer; font-size: 0.9rem;
  font-weight: 500; font-family: 'Inter', sans-serif; transition: all 0.3s ease; width: fit-content; 
}
/* El icono brillante */
.social-icon { font-size: 1.1rem; filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6)); }
/* Efecto Hover (Ratón o Toque) */
.btn-social-trigger:hover {
  background: rgba(168, 85, 247, 0.25); border-color: rgba(168, 85, 247, 0.6);
  color: #fff; transform: translateY(-2px); box-shadow: 0 4px 15px rgba(168, 85, 247, 0.2);
}

/* ==============================================
   📱 VERSIÓN MÓVIL (Aquí lo apilamos todo)
   ============================================== */
@media (max-width: 900px) {
  .bc-footer { padding: 40px 20px 100px; }
  .btn-social-trigger {
    display: flex; margin: 30px auto 20px; width: 100%; justify-content: center; padding: 12px;       
  }
  .footer-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .footer-brand {  text-align: center; display: flex; flex-direction: column; align-items: center; }
  .footer-links-grid { gap: 30px; justify-content: center; text-align: center; }
  .link-col { align-items: center; }
  .link-clean { text-align: center; }
  .link-clean:hover { transform: none; } 
  .footer-coffee { text-align: center; }
}