/* ============================================================
   MÉTODO VS® — components.css
   Componentes adicionales del landing page
   ============================================================ */

/* ----------------------------------------------------------
   HERO CONTENT
   ---------------------------------------------------------- */
.hero-content {
  max-width: 720px;
}

/* ----------------------------------------------------------
   SECTION CARDS (dark-section glass cards)
   ---------------------------------------------------------- */
.section-card-dark {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(196,149,106,0.12);
  border-radius: 18px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

/* ----------------------------------------------------------
   REGEN-TEXT (medicina regenerativa)
   ---------------------------------------------------------- */
.regen-text { color: rgba(255,255,255,0.75); }
.regen-text p {
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ----------------------------------------------------------
   HIGHLIGHT span (hero)
   ---------------------------------------------------------- */
.highlight {
  color: var(--gold-light);
  font-style: italic;
}

/* ----------------------------------------------------------
   TRUST STATS ROW
   ---------------------------------------------------------- */
.stats-row {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-box {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: center;
}

/* ----------------------------------------------------------
   ALLY SECTION PHOTO OVERLAY
   ---------------------------------------------------------- */
.ally-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,21,16,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

/* ----------------------------------------------------------
   CONSULTORIO SECTION
   ---------------------------------------------------------- */
#ubicacion .info-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(196,149,106,0.14);
  border-radius: 20px;
  padding: 2rem;
}

#ubicacion .info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

#ubicacion .info-row:last-child { border-bottom: none; }

#ubicacion .info-icon {
  width: 42px;
  height: 42px;
  background: rgba(196,149,106,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ----------------------------------------------------------
   WHATSAPP FLOAT BUTTON (whatsapp.js injects this)
   ---------------------------------------------------------- */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9980;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.wa-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: waPulse 2.8s ease infinite;
}

.wa-float a:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
  animation: none;
}

.wa-float svg { color: #fff; }

@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,0.65); }
}

/* ----------------------------------------------------------
   TOASTS (dashboard style — not used on landing but harmless)
   ---------------------------------------------------------- */
#toastContainer {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

/* ----------------------------------------------------------
   PRINT STYLES
   ---------------------------------------------------------- */
@media print {
  .navbar, .hamburger, .mobile-menu, #whatsapp-float,
  #chatbot-widget, .footer, .hero-cta-group,
  .scroll-indicator { display: none !important; }

  body { background: #fff; color: #000; }
  .section { padding: 2rem 0; }
}

/* ----------------------------------------------------------
   UTILITY: visually-hidden
   ---------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ----------------------------------------------------------
   BADGE / PILL HELPERS
   ---------------------------------------------------------- */
.pill {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pill-gold { background: rgba(196,149,106,0.12); color: var(--rose-dark); }
.pill-green { background: rgba(34,197,94,0.12); color: #15803d; }

/* ----------------------------------------------------------
   RESPONSIVE TWEAKS FOR COMPONENTS
   ---------------------------------------------------------- */
@media (max-width: 768px) {
  .stats-row   { gap: 1.5rem; }
  .wa-float    { bottom: 1rem; right: 1rem; }
  .wa-float a  { width: 48px; height: 48px; }
}
