/* ============================================================================
   CLÍNICA RESPIRA · landing.css  (rediseño premium "Aliento Sereno")
   Mobile-first · tipografía editorial · fotografía · animaciones con GSAP.
   Paleta: azul marino + verde menta + aire. Sin recortes, máxima elegancia.
   ============================================================================ */

/* ----------------------------------------------------------------------------
   1) Design tokens
   ---------------------------------------------------------------------------- */
:root {
  /* Azul marino */
  --navy-900: #081726;
  --navy-800: #0C2238;
  --navy-700: #123250;
  --navy-600: #1C476E;
  --navy-500: #2A5C82;

  /* Verde menta / aguamarina */
  --mint-600: #1FB89C;
  --mint-500: #34D4B7;
  --mint-400: #5FE0C8;
  --mint-300: #9CEBD9;

  /* Aire / neutros */
  --paper: #FBFDFC;        /* fondo general, casi blanco con un punto verde */
  --paper-2: #F1F7F6;      /* secciones alternas */
  --cloud: #E7F0EF;        /* líneas suaves */
  --ink: #0C2238;          /* texto principal (navy) */
  --ink-soft: #51697A;     /* texto secundario */
  --line: #E2ECEB;

  /* Sombras (suaves, de boutique) */
  --sh-xs: 0 2px 10px rgba(12, 34, 56, 0.05);
  --sh-sm: 0 10px 30px rgba(12, 34, 56, 0.08);
  --sh-md: 0 24px 60px rgba(12, 34, 56, 0.12);
  --sh-lg: 0 40px 90px rgba(12, 34, 56, 0.18);
  --sh-mint: 0 18px 40px rgba(52, 212, 183, 0.35);

  --r-sm: 12px;
  --r: 18px;
  --r-lg: 28px;
  --r-xl: 38px;

  --grad-navy: linear-gradient(150deg, #0C2238 0%, #123250 55%, #0A1C2E 100%);
  --grad-mint: linear-gradient(135deg, #34D4B7 0%, #5FE0C8 100%);

  --maxw: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ----------------------------------------------------------------------------
   2) Reset y base
   ---------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 96px 0; position: relative; }
.section.tight { padding: 70px 0; }
.bg-soft { background: var(--paper-2); }
.bg-navy { background: var(--grad-navy); color: #fff; }

/* Scrollbar de boutique */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: #cde0db; border-radius: 10px; border: 3px solid var(--paper-2); }
::-webkit-scrollbar-thumb:hover { background: var(--mint-400); }
::selection { background: rgba(52, 212, 183, 0.28); }

/* ----------------------------------------------------------------------------
   3) Tipografía
   ---------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--mint-600);
}
.eyebrow::before { content: ''; width: 26px; height: 1.5px; background: var(--mint-500); display: inline-block; }
.bg-navy .eyebrow { color: var(--mint-400); }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1.04;
  letter-spacing: -0.015em;
}
h1.display { font-size: clamp(2.5rem, 7vw, 4.6rem); }
h2.display { font-size: clamp(2rem, 5vw, 3.25rem); }
.lead { color: var(--ink-soft); font-size: clamp(1.02rem, 2.2vw, 1.2rem); max-width: 56ch; }
.bg-navy .lead { color: rgba(255,255,255,0.78); }
.ital { font-style: italic; }
.accent-text { color: var(--mint-600); }
.bg-navy .accent-text { color: var(--mint-400); }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .display { margin-top: 18px; }
.section-head .lead { margin-top: 18px; }

/* ----------------------------------------------------------------------------
   4) Botones
   ---------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 0.98rem; padding: 15px 30px; border-radius: 999px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }
.btn-primary { background: var(--grad-mint); color: var(--navy-900); box-shadow: var(--sh-mint); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 24px 50px rgba(52,212,183,0.45); }
.btn-dark { background: var(--navy-800); color: #fff; }
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.btn-ghost { background: rgba(255,255,255,0.10); color: #fff; border: 1px solid rgba(255,255,255,0.28); }
.btn-ghost:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--mint-500); color: var(--mint-600); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

/* ----------------------------------------------------------------------------
   5) Header
   ---------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60; width: 100%;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(251, 253, 252, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  border-color: var(--line); box-shadow: var(--sh-xs);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 1.14rem; letter-spacing: -0.01em; }
.brand .logo {
  width: 40px; height: 40px; border-radius: 12px; background: var(--grad-navy);
  display: grid; place-items: center; color: var(--mint-400); font-size: 1.15rem; box-shadow: var(--sh-xs);
}
.brand .logo svg { width: 22px; height: 22px; }
.nav-links { display: none; gap: 34px; align-items: center; }
.nav-links a { color: var(--ink-soft); font-weight: 500; font-size: 0.94rem; position: relative; transition: color .25s; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--mint-500); transition: width .3s var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav .btn { padding: 11px 22px; font-size: 0.9rem; }
@media (min-width: 940px) { .nav-links { display: flex; } }

/* ----------------------------------------------------------------------------
   6) HERO (con fotografía)
   ---------------------------------------------------------------------------- */
.hero { position: relative; padding: 60px 0 80px; overflow: hidden; }
.hero-bg-blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; z-index: 0; pointer-events: none;
}
.hero-bg-blob.a { width: 460px; height: 460px; top: -120px; right: -80px; background: radial-gradient(circle, rgba(52,212,183,0.45), transparent 70%); }
.hero-bg-blob.b { width: 380px; height: 380px; bottom: -120px; left: -120px; background: radial-gradient(circle, rgba(28,71,110,0.22), transparent 70%); }

.hero-inner { position: relative; z-index: 2; display: grid; gap: 48px; align-items: center; }
.hero-copy h1 { margin: 22px 0 24px; }
.hero-copy h1 .ital { color: var(--mint-600); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 14px 26px; margin-top: 34px; }
.hero-trust .t { display: inline-flex; align-items: center; gap: 9px; font-size: 0.9rem; color: var(--ink-soft); }
.hero-trust .t svg { width: 18px; height: 18px; color: var(--mint-600); flex-shrink: 0; }

/* Marco de la foto */
.hero-media { position: relative; }
.hero-photo-frame {
  position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg);
  aspect-ratio: 4 / 5;
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.hero-photo-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,23,38,0) 40%, rgba(8,23,38,0.35) 100%); }

/* Tarjeta flotante "cita confirmada" */
.hero-badge {
  position: absolute; left: -18px; bottom: 34px; z-index: 3;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  border-radius: var(--r); padding: 16px 18px; box-shadow: var(--sh-md); width: 250px;
  border: 1px solid rgba(255,255,255,0.6);
}
.hero-badge .hb-top { display: flex; align-items: center; gap: 11px; }
.hero-badge .hb-check { width: 38px; height: 38px; border-radius: 11px; background: var(--grad-mint); display: grid; place-items: center; color: var(--navy-900); font-weight: 700; }
.hero-badge .hb-t { font-weight: 700; font-size: 0.92rem; }
.hero-badge .hb-s { color: var(--ink-soft); font-size: 0.78rem; }
.hero-badge .hb-row { display: flex; justify-content: space-between; font-size: 0.82rem; margin-top: 11px; padding-top: 11px; border-top: 1px solid var(--line); }
.hero-badge .hb-row span:last-child { font-weight: 600; }

/* Tarjeta flotante secundaria (rating) */
.hero-chip {
  position: absolute; right: -14px; top: 40px; z-index: 3;
  background: var(--navy-800); color: #fff; border-radius: 16px; padding: 13px 17px; box-shadow: var(--sh-md);
  display: flex; align-items: center; gap: 10px;
}
.hero-chip .stars { color: #FFC857; font-size: 0.85rem; letter-spacing: 1px; }
.hero-chip b { font-size: 1.1rem; }
.hero-chip small { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.7); }

@media (min-width: 940px) {
  .hero { padding: 80px 0 90px; }
  .hero-inner { grid-template-columns: 1.05fr 0.95fr; gap: 60px; }
}

/* ----------------------------------------------------------------------------
   7) Banda de stats (contadores)
   ---------------------------------------------------------------------------- */
.stats-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 16px; padding: 48px 0; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3rem); color: var(--navy-800); line-height: 1; }
.stat .num .suf { color: var(--mint-500); }
.stat .lbl { color: var(--ink-soft); font-size: 0.86rem; margin-top: 10px; }
@media (min-width: 760px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* ----------------------------------------------------------------------------
   8) Servicios
   ---------------------------------------------------------------------------- */
.services-grid { display: grid; gap: 26px; }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-xs); transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--sh-md); }
.svc-media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.svc-card:hover .svc-media img { transform: scale(1.07); }
.svc-media .svc-ic { position: absolute; left: 16px; bottom: 16px; width: 50px; height: 50px; border-radius: 14px; background: rgba(255,255,255,0.92); backdrop-filter: blur(6px); display: grid; place-items: center; font-size: 1.5rem; box-shadow: var(--sh-sm); }
.svc-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { font-family: var(--font-display); font-size: 1.4rem; }
.svc-body p { color: var(--ink-soft); margin: 10px 0 20px; font-size: 0.95rem; flex: 1; }
.svc-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--line); }
.svc-price { font-family: var(--font-display); font-size: 1.7rem; color: var(--navy-800); }
.svc-dur { font-size: 0.84rem; color: var(--ink-soft); display: inline-flex; gap: 6px; align-items: center; }
@media (min-width: 760px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* ----------------------------------------------------------------------------
   9) Método / Cómo funciona (timeline)
   ---------------------------------------------------------------------------- */
.method-grid { display: grid; gap: 22px; counter-reset: step; }
.method-step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px 28px;
  position: relative; box-shadow: var(--sh-xs); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.method-step:hover { transform: translateY(-6px); box-shadow: var(--sh-sm); }
.method-step .num { font-family: var(--font-display); font-size: 3rem; color: var(--cloud); line-height: 1; }
.method-step:hover .num { color: var(--mint-300); }
.method-step h4 { font-size: 1.2rem; margin: 12px 0 8px; }
.method-step p { color: var(--ink-soft); font-size: 0.94rem; }
.method-step .ic { position: absolute; top: 30px; right: 28px; width: 46px; height: 46px; border-radius: 13px; background: var(--paper-2); display: grid; place-items: center; color: var(--mint-600); }
.method-step .ic svg { width: 24px; height: 24px; }
@media (min-width: 860px) { .method-grid { grid-template-columns: repeat(3, 1fr); } }

/* ----------------------------------------------------------------------------
   10) Showcase (Panel del dueño · Automatización) — 2 secciones nuevas
   ---------------------------------------------------------------------------- */
.showcase { display: grid; gap: 44px; align-items: center; }
.showcase + .showcase { margin-top: 110px; }
.showcase-body .feat-list { list-style: none; margin: 26px 0 30px; display: grid; gap: 14px; }
.showcase-body .feat-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 0.97rem; color: var(--ink-soft); }
.showcase-body .feat-list .tick { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: rgba(52,212,183,0.15); color: var(--mint-600); display: grid; place-items: center; font-size: 0.8rem; font-weight: 700; margin-top: 1px; }
.bg-navy .showcase-body .feat-list li { color: rgba(255,255,255,0.82); }

/* Mockup del panel (ventana) */
.mockup {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); border: 1px solid rgba(255,255,255,0.08);
  background: #0A1626;
}
.mockup-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: #0F2138; border-bottom: 1px solid #1E3A5C; }
.mockup-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.mockup-bar .dot.r { background: #FF5F57; } .mockup-bar .dot.y { background: #FEBC2E; } .mockup-bar .dot.g { background: #28C840; }
.mockup-bar .url { margin-left: 10px; font-size: 0.74rem; color: #5E7A94; font-family: var(--font-body); }
.mockup img { width: 100%; display: block; }
.mockup-live { position: relative; }
.mockup-live .live-tag { position: absolute; top: 14px; right: 14px; background: rgba(52,212,183,0.16); color: var(--mint-400); font-size: 0.7rem; font-weight: 700; letter-spacing: .08em; padding: 5px 11px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; }
.mockup-live .live-tag .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--mint-400); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: .4; transform: scale(1.5);} }

@media (min-width: 900px) {
  .showcase { grid-template-columns: 1fr 1.08fr; gap: 64px; }
  .showcase.reverse .showcase-body { order: 2; }
  .showcase.reverse .showcase-visual { order: 1; }
}

/* Chat de Telegram simulado (sección automatización) */
.chat {
  background: #0F2138; border-radius: var(--r-lg); padding: 22px; box-shadow: var(--sh-lg);
  border: 1px solid rgba(255,255,255,0.06); max-width: 420px; margin: 0 auto;
}
.chat-head { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid #1E3A5C; margin-bottom: 16px; }
.chat-head .av { width: 42px; height: 42px; border-radius: 50%; background: var(--grad-mint); display: grid; place-items: center; color: var(--navy-900); font-size: 1.2rem; }
.chat-head .nm { color: #fff; font-weight: 600; font-size: 0.95rem; }
.chat-head .on { color: var(--mint-400); font-size: 0.76rem; display: flex; align-items: center; gap: 6px; }
.chat-head .on::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--mint-400); }
.bubble { max-width: 80%; padding: 11px 15px; border-radius: 16px; font-size: 0.88rem; margin-bottom: 10px; line-height: 1.5; }
.bubble.in { background: #1B3350; color: #E8F1F8; border-bottom-left-radius: 5px; }
.bubble.out { background: var(--grad-mint); color: var(--navy-900); margin-left: auto; border-bottom-right-radius: 5px; font-weight: 500; }
.bubble.slots { display: flex; flex-wrap: wrap; gap: 7px; background: transparent; padding: 0; max-width: 100%; }
.bubble.slots span { background: #1B3350; color: var(--mint-300); border: 1px solid #2A5C82; padding: 7px 13px; border-radius: 9px; font-size: 0.82rem; }

/* ----------------------------------------------------------------------------
   11) Sección de reserva (se conserva, refinada)
   ---------------------------------------------------------------------------- */
.booking-wrap {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  box-shadow: var(--sh-md); overflow: hidden; display: grid; grid-template-columns: 1fr;
}
.booking-aside {
  background: var(--grad-navy); color: #fff; padding: 40px; min-width: 0; overflow: hidden; word-break: break-word;
  position: relative;
}
.booking-aside::before { content: ''; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(52,212,183,0.3), transparent 70%); }
.booking-aside h3 { font-family: var(--font-display); font-size: 1.7rem; line-height: 1.15; position: relative; }
.booking-aside p { color: rgba(255,255,255,0.8); margin-top: 14px; font-size: 0.95rem; position: relative; }
.booking-aside ul { list-style: none; margin-top: 28px; display: grid; gap: 15px; position: relative; }
.booking-aside li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.92rem; color: rgba(255,255,255,0.9); }
.booking-aside li .tick { color: var(--mint-400); font-weight: 700; flex-shrink: 0; }
.booking-form { padding: 34px; min-width: 0; }

.steps { display: flex; gap: 8px; margin-bottom: 28px; }
.step-dot { flex: 1; height: 5px; border-radius: 999px; background: var(--line); transition: background .4s; }
.step-dot.active { background: var(--grad-mint); }

.field { margin-bottom: 18px; }
.field > label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 8px; }
.field .hint { font-weight: 400; color: var(--ink-soft); font-size: 0.78rem; }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-family: inherit; font-size: 0.97rem; color: var(--ink); background: var(--paper); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--mint-500); background: #fff; box-shadow: 0 0 0 4px rgba(52,212,183,0.14); }
.field input.invalid, .field textarea.invalid { border-color: #E5484D; box-shadow: 0 0 0 4px rgba(229,72,77,0.12); }
.field .error-msg { color: #E5484D; font-size: 0.78rem; margin-top: 6px; display: none; }
.field .error-msg.show { display: block; }

.service-picker { display: grid; gap: 12px; }
.service-option { display: flex; align-items: center; gap: 14px; padding: 16px; border: 1.5px solid var(--line); border-radius: var(--r-sm); cursor: pointer; transition: border-color .2s, background .2s, transform .15s; }
.service-option:hover { border-color: var(--mint-300); transform: translateY(-2px); }
.service-option.selected { border-color: var(--mint-500); background: rgba(52,212,183,0.07); }
.service-option .so-ic { font-size: 1.5rem; }
.service-option .so-info { flex: 1; min-width: 0; }
.service-option .so-info strong { display: block; font-size: 1rem; }
.service-option .so-info small { color: var(--ink-soft); font-size: 0.82rem; }
.service-option .so-price { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--navy-800); }

.day-picker { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 8px; scrollbar-width: thin; }
.day-chip { flex: 0 0 auto; min-width: 76px; text-align: center; padding: 12px 10px; border: 1.5px solid var(--line); border-radius: var(--r-sm); background: #fff; transition: border-color .2s, background .2s, transform .15s; cursor: pointer; }
.day-chip:hover { border-color: var(--mint-300); transform: translateY(-2px); }
.day-chip.selected { border-color: var(--mint-500); background: rgba(52,212,183,0.10); }
.day-chip .dc-dow { font-size: 0.7rem; text-transform: uppercase; color: var(--ink-soft); letter-spacing: .05em; }
.day-chip .dc-num { font-family: var(--font-display); font-size: 1.35rem; color: var(--navy-800); line-height: 1.1; }
.day-chip .dc-mon { font-size: 0.7rem; color: var(--ink-soft); }

.slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 6px; }
.slot { padding: 12px 6px; text-align: center; border: 1.5px solid var(--line); border-radius: var(--r-sm); font-weight: 600; font-size: 0.94rem; background: #fff; transition: border-color .2s, background .2s, color .2s, transform .15s; }
.slot:hover { border-color: var(--mint-400); transform: translateY(-2px); }
.slot.selected { background: var(--grad-mint); border-color: transparent; color: var(--navy-900); }
.slots-empty { grid-column: 1 / -1; text-align: center; color: var(--ink-soft); padding: 18px; font-size: 0.9rem; }
.tramo-label { font-size: 0.76rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); margin: 16px 0 8px; font-weight: 600; }

.summary-box { background: var(--paper-2); border-radius: var(--r-sm); padding: 16px 18px; margin-bottom: 22px; }
.summary-box .sb-row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 0.9rem; }
.summary-box .sb-row span:first-child { color: var(--ink-soft); }
.summary-box .sb-row span:last-child { font-weight: 600; text-align: right; }
.summary-box .sb-total { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 12px; }
.summary-box .sb-total span:last-child { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy-800); }

.form-nav { display: flex; gap: 12px; margin-top: 8px; }
.form-nav .btn { flex: 1; }
.btn-back { background: var(--paper-2); color: var(--navy-800); }
.btn-back:hover { background: var(--cloud); }

.confirm-screen { text-align: center; padding: 16px 6px; }
.confirm-screen .cs-check { width: 84px; height: 84px; border-radius: 50%; background: var(--grad-mint); display: grid; place-items: center; margin: 0 auto 20px; font-size: 2.3rem; color: var(--navy-900); animation: pop .55s var(--ease); }
@keyframes pop { 0% { transform: scale(0);} 100% { transform: scale(1);} }
.confirm-screen h3 { font-family: var(--font-display); font-size: 1.7rem; }
.confirm-screen p { color: var(--ink-soft); margin-top: 10px; }
.confirm-detail { background: var(--paper-2); border-radius: var(--r-sm); padding: 18px; margin: 22px 0; text-align: left; }
.confirm-detail .cd-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.92rem; }
.confirm-detail .cd-row span:first-child { color: var(--ink-soft); }
.confirm-detail .cd-row span:last-child { font-weight: 600; }

.step { display: none; }
.step.active { display: block; animation: fadeUp .45s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px);} to { opacity: 1; transform: translateY(0);} }

@media (min-width: 900px) {
  .booking-wrap { grid-template-columns: minmax(310px, 0.82fr) minmax(0, 1.18fr); }
  .booking-form { padding: 46px; }
}

/* ----------------------------------------------------------------------------
   12) FAQ
   ---------------------------------------------------------------------------- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq-item.open { box-shadow: var(--sh-sm); border-color: var(--mint-300); }
.faq-q { width: 100%; text-align: left; padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-weight: 600; font-size: 1.02rem; }
.faq-q .pm { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--paper-2); display: grid; place-items: center; transition: background .3s, transform .3s; color: var(--mint-600); font-size: 1.1rem; }
.faq-item.open .pm { background: var(--grad-mint); color: var(--navy-900); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 24px 24px; color: var(--ink-soft); font-size: 0.95rem; }

/* ----------------------------------------------------------------------------
   13) CTA final + Footer
   ---------------------------------------------------------------------------- */
.cta-final { position: relative; overflow: hidden; }
.cta-final .container { position: relative; z-index: 2; text-align: center; }
.cta-final h2 { color: #fff; }
.cta-final .lead { margin: 18px auto 32px; }
.cta-art { position: absolute; inset: 0; z-index: 1; opacity: 0.25; background-size: cover; background-position: center; }

/* Banner demo MISTEREIA */
.demo-banner {
  background: var(--mint-600);
  color: var(--navy-900);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 200;
}
.demo-banner b { font-weight: 700; }
.demo-banner a {
  background: var(--navy-900);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.84rem;
  white-space: nowrap;
  transition: opacity .2s;
}
.demo-banner a:hover { opacity: 0.85; }

/* Sección CTA MISTEREIA */
.mistereia-cta {
  background: var(--paper-2);
  border-top: 1px solid var(--cloud);
  border-bottom: 1px solid var(--cloud);
}
.mist-badge {
  display: inline-block;
  background: var(--navy-900);
  color: var(--mint-400);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
}
.mist-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.mist-sub {
  margin-top: 18px;
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.7); padding: 70px 0 32px; }
.footer-grid { display: grid; gap: 34px; }
.footer-brand { display: flex; align-items: center; gap: 11px; color: #fff; font-weight: 700; font-size: 1.16rem; }
.footer-brand .logo { width: 38px; height: 38px; border-radius: 11px; background: var(--grad-mint); display: grid; place-items: center; color: var(--navy-900); }
.footer-brand .logo svg { width: 21px; height: 21px; }
.site-footer h5 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; font-weight: 600; }
.site-footer ul { list-style: none; display: grid; gap: 10px; font-size: 0.9rem; }
.site-footer a { transition: color .2s; }
.site-footer a:hover { color: var(--mint-400); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 40px; padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-credit { display: inline-flex; align-items: center; gap: 8px; }
.footer-credit b { color: var(--mint-400); font-weight: 600; }
.footer-credit a { color: var(--mint-400); }
@media (min-width: 820px) { .footer-grid { grid-template-columns: 2.2fr 1fr 1fr 1fr; } }

/* ----------------------------------------------------------------------------
   14) Botón flotante
   ---------------------------------------------------------------------------- */
.float-cta {
  position: fixed; right: 20px; bottom: 22px; z-index: 70;
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px;
  background: var(--grad-mint); color: var(--navy-900); font-weight: 600; border-radius: 999px;
  box-shadow: var(--sh-mint); transition: transform .35s var(--ease), box-shadow .35s var(--ease), opacity .4s;
  transform: translateY(120px);
}
.float-cta.show { transform: translateY(0); }
.float-cta:hover { transform: translateY(-3px) scale(1.03); }
.float-cta svg { width: 19px; height: 19px; }

/* ----------------------------------------------------------------------------
   15) Toast
   ---------------------------------------------------------------------------- */
.toast {
  position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%) translateY(140%);
  background: var(--navy-800); color: #fff; padding: 14px 24px; border-radius: 14px; box-shadow: var(--sh-lg);
  font-size: 0.92rem; z-index: 120; transition: transform .45s var(--ease); max-width: 90%;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.error { background: #E5484D; }

/* ----------------------------------------------------------------------------
   16) Animaciones GSAP — estados iniciales (progressive enhancement)
   Solo se ocultan si <html> tiene .anim-ready (lo añade anim.js al cargar GSAP).
   Si el JS falla, todo queda visible.
   ---------------------------------------------------------------------------- */
.anim-ready [data-reveal] { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  .anim-ready [data-reveal] { opacity: 1 !important; transform: none !important; }
  * { scroll-behavior: auto !important; }
}
