/* ═══════════════════════════════════════════════════════
   DG Camp — styles.css
   Tipografía: Strawford (local) + Barlow Condensed (Google)
   Paleta: azul marino (#031e2a → #edf7fb) + acento #4aacd3
═══════════════════════════════════════════════════════ */

/* ── @font-face Strawford ────────────────────────────── */
@font-face {
  font-family: 'Strawford';
  src: url('../assets/fonts/strawford-thin-webfont.woff2') format('woff2'),
       url('../assets/fonts/strawford-thin-webfont.woff') format('woff');
  font-weight: 100; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Strawford';
  src: url('../assets/fonts/strawford-extralight-webfont.woff2') format('woff2'),
       url('../assets/fonts/strawford-extralight-webfont.woff') format('woff');
  font-weight: 200; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Strawford';
  src: url('../assets/fonts/strawford-light-webfont.woff2') format('woff2'),
       url('../assets/fonts/strawford-light-webfont.woff') format('woff');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Strawford';
  src: url('../assets/fonts/strawford-regular-webfont.woff2') format('woff2'),
       url('../assets/fonts/strawford-regular-webfont.woff') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Strawford';
  src: url('../assets/fonts/strawford-medium-webfont.woff2') format('woff2'),
       url('../assets/fonts/strawford-medium-webfont.woff') format('woff');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Strawford';
  src: url('../assets/fonts/strawford-bold-webfont.woff2') format('woff2'),
       url('../assets/fonts/strawford-bold-webfont.woff') format('woff');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Strawford';
  src: url('../assets/fonts/strawford-black-webfont.woff2') format('woff2'),
       url('../assets/fonts/strawford-black-webfont.woff') format('woff');
  font-weight: 900; font-style: normal; font-display: swap;
}

/* ── Variables ────────────────────────────────────────── */
:root {
  /* Paleta azul marino
     Contraste verificado (WCAG AA):
     text-2 (#86c7e2) sobre bg (#031e2a):  9.2:1  ✓
     text-2 (#86c7e2) sobre bg-2 (#0c3241): 7.3:1  ✓
     text-2 (#86c7e2) sobre surf (#1f4859): 5.3:1  ✓
     accent (#4aacd3) sobre bg (#031e2a):   6.7:1  ✓
     accent (#4aacd3) sobre bg-2:           5.3:1  ✓
     text-3 SOLO decorativo — no usar para texto legible */
  --bg:          #031e2a;
  --bg-2:        #0c3241;
  --bg-3:        #1a3d52;
  --surface:     #1f4859;
  --border:      rgba(74, 172, 211, 0.12);
  --border-2:    rgba(74, 172, 211, 0.22);
  --muted:       #295f74;
  --text-3:      #357a96;   /* SOLO decorativo — falla WCAG sobre fondos oscuros */
  --text-2:      #86c7e2;   /* texto secundario — pasa WCAG en todos los fondos */
  --text-1:      #c8e8f4;   /* texto primario */
  --white:       #ffffff;
  --accent:      #4aacd3;
  --accent-soft: #86c7e2;
  --accent-glow: rgba(74, 172, 211, 0.25);

  --font-body:    'Strawford', 'Barlow', -apple-system, sans-serif;
  --font-display: 'Barlow Condensed', 'Strawford', sans-serif;
  --container:   1400px;
  --pad-h:       40px;
  --space-s:     clamp(72px, 9vw, 128px);
}

/* ── Reset ───────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; height: auto; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-1);
  background: var(--bg);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── Focus visible (accesibilidad) ──────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Layout ──────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}
.container.narrow { max-width: 800px; }

/* ── Section label (eyebrow) ─────────────────────────── */
/* 10px uppercase con letter-spacing amplio — etiqueta de UI, no cuerpo de texto */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

/* ── Section headings ────────────────────────────────── */
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: #6dc4e6;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--accent-glow);
}
.btn-primary.btn-full { display: block; text-align: center; justify-content: center; width: 100%; }

/* ── Scroll reveal ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(.16,1,.3,1),
              transform 0.65s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ══════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(3, 30, 42, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-h);
  height: 68px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 48px;
  height: 32px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 10px 22px;
  text-decoration: none;
  border-radius: 2px;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: #6dc4e6; transform: translateY(-1px); }

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--bg);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.32;
  will-change: transform;
  transition: transform 0.12s linear;
  transform-origin: center center;
  scale: 1.12;  /* margen para el parallax — debe cubrir el desplazamiento máximo */
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(3, 30, 42, 0.1) 0%,
    rgba(3, 30, 42, 0.52) 40%,
    rgba(3, 30, 42, 0.96) 90%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-h);
  padding-top: 168px;
  padding-bottom: 56px;
  width: 100%;
}
.hero-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  animation: fadeUp 0.8s cubic-bezier(.16,1,.3,1) both;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(60px, 9.5vw, 132px);
  font-weight: 900;
  line-height: 0.94;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  animation: fadeUp 0.9s cubic-bezier(.16,1,.3,1) 0.08s both;
}
.hero-h1 em {
  color: var(--accent);
  font-style: italic;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.7vw, 18px);
  font-weight: 300;
  color: var(--text-1);        /* texto legible: usar text-1 sin opacidad */
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeUp 1s cubic-bezier(.16,1,.3,1) 0.18s both;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 1s cubic-bezier(.16,1,.3,1) 0.26s both;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  animation: fadeUp 1s cubic-bezier(.16,1,.3,1) 0.6s both;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.35));
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero-scroll-arrow {
  animation: scrollPulse 2s ease-in-out infinite 0.3s;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50%       { opacity: 0.7;  transform: translateY(4px); }
}

/* ── Padding común a todas las secciones ─────────────── */
.section { padding: var(--space-s) 0; }

/* ══════════════════════════════════════════════════════
   DANI GARCÍA
══════════════════════════════════════════════════════ */
#dani {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.dani-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}
.dani-photo-wrap { position: relative; }
.dani-photo-inner {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.dani-photo-wrap:hover .dani-photo-inner { border-color: var(--accent); }
.dani-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.dani-photo-accent {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 72px;
  height: 72px;
  background: var(--accent);
  z-index: -1;
  border-radius: 2px;
}

.dani-h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 900;
  line-height: 1.01;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.dani-body {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 40px;
}
.dani-quote {
  border-left: 3px solid var(--accent);
  padding: 14px 0 14px 26px;
}
.dani-quote p {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
}
.dani-quote cite {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-2);        /* era text-3: falla WCAG */
  font-style: normal;
}

/* ══════════════════════════════════════════════════════
   EL CAMPUS / COMPARATIVA
══════════════════════════════════════════════════════ */
#el-campus {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.comparativa-header {
  max-width: 700px;
  margin: 0 auto 56px;
  text-align: center;
}

.comp-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
.comp-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
/* La card "campus habitual": reducimos opacidad a 0.7 (suficiente para distinguirla
   sin sacrificar legibilidad — contraste mínimo ~6.5:1 para text-2 sobre bg-2 */
.comp-card-bad { opacity: 0.7; }

.comp-card-good {
  background: var(--bg-3);
  border-color: var(--border-2);
  position: relative;
}
.comp-card-good::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 3px 3px 0 0;
}
.comp-card-good:hover {
  border-color: rgba(74, 172, 211, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(3, 30, 42, 0.6);
}

.comp-card-header {
  padding: 26px 30px;
  border-bottom: 1px solid var(--border);
}
.comp-card-header-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-2);        /* era text-3: falla WCAG */
  margin-bottom: 5px;
}
.comp-card-good .comp-card-header-label { color: var(--accent); }
.comp-card-header-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-2);
}
.comp-card-good .comp-card-header-title { color: var(--white); }

.comp-card-body { flex: 1; }
.comp-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 30px;
  border-bottom: 1px solid var(--border);
}
.comp-row:last-child { border-bottom: none; }
.comp-row-icon {
  font-size: 13px;
  font-weight: 700;
  width: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.comp-card-bad .comp-row-icon { color: var(--text-2); } /* era muted: falla WCAG */
.comp-card-good .comp-row-icon { color: var(--accent); }

.comp-row-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);        /* era text-3: falla WCAG */
  margin-bottom: 3px;
}
.comp-row-value {
  font-size: 16px;
  color: var(--text-1);
}
.comp-card-bad .comp-row-value { color: var(--text-2); } /* era muted: falla WCAG */

.comp-card-footer {
  padding: 22px 30px 28px;
}

.comparativa-foot { text-align: center; }
.comparativa-foot p {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  font-style: italic;
  color: var(--text-2);        /* era text-3: falla WCAG */
}

/* ══════════════════════════════════════════════════════
   PROGRAMA / TIMELINE
══════════════════════════════════════════════════════ */
#programa {
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.programa-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.programa-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.28) saturate(0.6);
  transform: scale(1.08);
  will-change: transform;
  transition: transform 0.1s linear;
}
.programa-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg) 0%,
    rgba(3, 30, 42, 0.55) 30%,
    rgba(3, 30, 42, 0.55) 70%,
    var(--bg) 100%
  );
}
#programa .container {
  position: relative;
  z-index: 1;
}
.programa-header {
  max-width: 580px;
  margin: 0 auto 56px;
  text-align: center;
}
.programa-timeline-box {
  background: rgba(3, 30, 42, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  padding: 40px 48px;
}

.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
}
/* Línea vertical */
.timeline::before {
  content: '';
  position: absolute;
  left: 103px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(74, 172, 211, 0.22) 6%,
    rgba(74, 172, 211, 0.22) 94%,
    transparent
  );
  pointer-events: none;
}

.tl-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  position: relative;
  transition: background 0.2s;
}
.tl-item:first-child { border-top: 1px solid var(--border); }
.tl-item:hover { background: rgba(74, 172, 211, 0.03); }

/* Dot sobre la línea */
.tl-item::before {
  content: '';
  position: absolute;
  left: 99px;
  top: 28px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1.5px solid rgba(74, 172, 211, 0.4);
  z-index: 1;
  transition: border-color 0.2s, background 0.2s;
}
.tl-item:hover::before { border-color: var(--accent); }
.tl-item.highlight::before {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(74, 172, 211, 0.18);
}

.tl-time {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-2);        /* era text-3: falla WCAG */
  letter-spacing: 0.02em;
  padding-top: 2px;
}
.tl-item.highlight .tl-time { color: var(--accent); }
.tl-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.tl-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent);
  padding: 3px 9px;
  border-radius: 2px;
}
.tl-desc {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.65;
}
.tl-note {
  margin-top: 28px;
  padding: 18px 22px;
  background: var(--surface);
  border-left: 2px solid var(--accent);
  font-size: 16px;
  color: var(--text-2);        /* era text-3 sobre surface: ratio solo 2.05:1 → falla */
  line-height: 1.65;
  border-radius: 0 3px 3px 0;
}

/* ══════════════════════════════════════════════════════
   SEMANAS + PRICING
══════════════════════════════════════════════════════ */
#turnos {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.semanas-header { margin-bottom: 14px; text-align: center; }
.semanas-intro {
  font-size: 18px;
  color: var(--text-2);
  margin-bottom: 56px;
  max-width: 460px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.semanas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.semana-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.semana-card:hover {
  border-color: rgba(74, 172, 211, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 14px 48px rgba(3, 30, 42, 0.6);
}

.semana-header {
  padding: 28px 28px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);   /* cap oscuro para distinguirlo del cuerpo de la tarjeta */
  position: relative;
  overflow: hidden;
  min-height: 140px;    /* alinea las 3 tarjetas aunque semana-cat tenga distinto nº de líneas */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.semana-num-dec {
  position: absolute;
  top: 4px;
  right: 12px;
  font-family: var(--font-display);
  font-size: 90px;
  font-weight: 900;
  color: rgba(74, 172, 211, 0.06);  /* puramente decorativo */
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
  aria-hidden: true;
}
.semana-num {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.semana-cat {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.08;
}

.semana-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px 28px 26px;
  gap: 20px;
}
.semana-rows { display: flex; flex-direction: column; }
.semana-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
}
.semana-row:last-child { border-bottom: none; }
.s-label {
  color: var(--text-2);        /* era text-3: falla WCAG */
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.s-value { color: var(--text-1); font-weight: 500; }

.semana-pricing {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.semana-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.semana-price-note {
  font-size: 13px;
  color: var(--text-2);        /* era text-3: falla WCAG */
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.semana-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
}
.semana-includes li {
  font-size: 16px;
  color: var(--text-2);
  padding-left: 18px;
  position: relative;
  line-height: 1.45;
}
.semana-includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 11px;
  top: 3px;
}
.semana-cta {
  display: block;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.semana-cta:hover { background: #6dc4e6; transform: translateY(-1px); }

/* ══════════════════════════════════════════════════════
   INSTALACIONES
══════════════════════════════════════════════════════ */
#instalaciones {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.inst-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 72px;
  align-items: start;
}

.inst-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.inst-img-slot {
  background: var(--surface);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.25s;
}
.inst-img-slot:hover { border-color: var(--border-2); }
.inst-img-slot.inst-img-main {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}
.inst-img-slot:not(.inst-img-main) { aspect-ratio: 4 / 3; }
.inst-img-slot img { width: 100%; height: 100%; object-fit: cover; }

.inst-text { padding-top: 4px; }
.inst-h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.04;
  margin-bottom: 18px;
}
.inst-body {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 30px;
}
.inst-detail {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.inst-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--text-1);
  line-height: 1.5;
}
.inst-row-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
}
.map-embed {
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--border-2);
  margin-bottom: 18px;
}
.map-embed iframe {
  display: block;
  filter: grayscale(1) brightness(0.45) contrast(1.2) hue-rotate(175deg);
}
.inst-note {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  font-style: italic;
  color: var(--text-2);        /* era text-3: falla WCAG */
}

/* ══════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════ */
#faq {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.faq-header {
  max-width: 520px;
  margin: 0 auto 52px;
  text-align: center;
}
.accordion { border-top: 1px solid var(--border); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-1);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  gap: 20px;
  user-select: none;
  transition: color 0.2s;
}
.accordion-item summary:hover { color: var(--white); }
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(.16,1,.3,1);
}
.accordion-item[open] summary::after { transform: rotate(45deg); }
.accordion-body {
  padding: 0 0 22px;
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 660px;
}

.faq-foot {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.faq-foot p { font-size: 16px; color: var(--text-2); }
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  color: var(--text-1);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 22px;
  text-decoration: none;
  border-radius: 2px;
  border: 1px solid var(--border-2);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-wa:hover {
  border-color: var(--accent);
  background: rgba(74, 172, 211, 0.08);
  color: var(--white);
}

/* ══════════════════════════════════════════════════════
   CIERRE + FORMULARIO
══════════════════════════════════════════════════════ */
#cierre {
  background: var(--bg-2);
}
.cierre-intro {
  margin-bottom: 64px;
  text-align: center;
}
.cierre-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.cierre-h2 {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 104px);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.cierre-h2 em {
  color: var(--accent);
  font-style: italic;
}
.cierre-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.7;
  margin: 0 auto;
}

.cierre-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 72px;
}
.cierre-stat {
  padding: 28px 30px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
  transition: background 0.25s;
}
.cierre-stat:hover { background: rgba(74, 172, 211, 0.05); }
.cierre-stat:last-child { border-right: none; }
.cierre-stat-num {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.cierre-stat-label {
  font-size: 12px;
  color: var(--text-2);        /* era text-3: falla WCAG */
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── Formulario ───────────────────────────────────── */
#reserva { scroll-margin-top: 84px; }
.reserva-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.reserva-title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.reserva-sub {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 32px;
  line-height: 1.65;
}
.reserva-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: flex; gap: 18px; }
.form-row-2 > * { flex: 1; }
.form-row-3 > * { flex: 1; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-2);
}
.form-optional {
  font-weight: 400;
  color: var(--text-2);
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
}
.form-section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 8px 0 4px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: 2px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2386c7e2' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-group select option { background: var(--bg-2); }
.form-group textarea { resize: vertical; min-height: 72px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  outline: none; /* handled by border+shadow */
}
.form-group input.invalid,
.form-group select.invalid { border-color: #e05a5a; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-2); opacity: 0.55; }

/* Selector de turnos */
.form-label-block {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
}
.turno-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.turno-option { cursor: pointer; }
.turno-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.turno-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  background: var(--surface-2);
  transition: border-color 0.15s, background 0.15s;
}
.turno-card:hover { border-color: var(--mid); }
.turno-option input[type="radio"]:checked + .turno-card {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 18%, var(--surface-2));
  box-shadow: 0 0 0 1px var(--accent);
}
.turno-selector.invalid .turno-card { border-color: #e07070; }
.turno-card-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  color: var(--text-3);
  flex-shrink: 0;
}
.turno-option input[type="radio"]:checked + .turno-card .turno-card-num { color: var(--accent); }
.turno-card-info { display: flex; flex-direction: column; gap: 2px; }
.turno-card-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.1;
}
.turno-card-dates {
  font-size: 12px;
  color: var(--text-2);
}
@media (max-width: 600px) {
  .turno-selector { grid-template-columns: 1fr; }
}

/* Checkbox de consentimiento */
.form-group-check .form-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
  cursor: pointer;
}
.form-group-check .form-check-label a {
  color: var(--accent);
  text-decoration: underline;
}
.form-group-check .form-check-label a:hover { opacity: 0.8; }
.form-group-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  border: 2px solid var(--border-2);
  border-radius: 4px;
  background: var(--bg-2);
  cursor: pointer;
  position: relative;
  transition: border-color 0.15s, background 0.15s;
}
.form-group-check input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.form-group-check input[type="checkbox"]:checked::after {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 100%;
  color: var(--bg);
  font-size: 12px;
}
.form-group-check.invalid input[type="checkbox"] { border-color: #e07070; }
.form-group-check.invalid .form-check-label { color: #e07070; }
.form-error { color: #e07070; font-size: 16px; min-height: 16px; }
.field-error {
  font-size: 12px;
  color: #e07070;
  margin-top: 4px;
  margin-bottom: 0;
}
.form-submit {
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px 32px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  width: 100%;
}
.form-submit:hover:not(:disabled) {
  background: #6dc4e6;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--accent-glow);
}
.form-submit:disabled { opacity: 0.5; cursor: wait; }
.form-fine {
  font-size: 14px;
  color: var(--text-2);
  text-align: center;
  padding-top: 2px;
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 64px;
  align-items: start;
  margin-bottom: 44px;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-logo-icon { width: 26px; height: 26px; object-fit: contain; }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-tagline { font-size: 16px; color: var(--text-2); line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 14px;
}
.footer-col p, .footer-col a {
  font-size: 16px;
  color: var(--text-2);
  text-decoration: none;
  line-height: 2;
  display: block;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 14px; color: var(--text-2); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 14px; color: var(--text-2); text-decoration: none; }
.footer-links a:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════════
   PÁGINAS LEGALES
═══════════════════════════════════════════════════════ */
.legal-page {
  padding: 120px 0 80px;
  min-height: 60vh;
}
.legal-header { margin-bottom: 48px; }
.legal-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text-1);
  margin-top: 8px;
}
.legal-body { max-width: 720px; }
.legal-body h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-1);
  margin: 40px 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.legal-body p,
.legal-body li { font-size: 16px; line-height: 1.7; color: var(--text-2); margin-bottom: 12px; }
.legal-body ul { padding-left: 20px; margin-bottom: 16px; }
.legal-body a { color: var(--accent); text-decoration: underline; }
.legal-body strong { color: var(--text-1); }
.legal-body code {
  font-family: monospace;
  font-size: 14px;
  background: var(--surface-2);
  padding: 2px 6px;
  border-radius: 3px;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 14px;
}
.legal-table th,
.legal-table td { text-align: left; padding: 10px 14px; border: 1px solid var(--border); color: var(--text-2); }
.legal-table th { background: var(--surface-2); font-weight: 600; color: var(--text-1); }
.legal-updated { margin-top: 48px; font-size: 13px; color: var(--text-3); font-style: italic; }

/* ══════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.visible {
    transition: none; opacity: 1; transform: none;
  }
  .hero-tag, .hero-h1, .hero-sub, .hero-cta-row, .hero-scroll-indicator {
    animation: none;
  }
  .hero-bg-img { transition: none; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — tablet (≤960px)
══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  :root { --pad-h: 24px; }

  .nav-inner { padding: 0 24px; gap: 0; }
  .nav-links { display: none; }
  /* En mobile: el logo queda a la izquierda, el CTA a la derecha */
  .nav-cta { margin-left: auto; }

  .dani-grid { grid-template-columns: 1fr; gap: 40px; }
  .dani-photo-wrap { max-width: 240px; }
  .comp-cards { grid-template-columns: 1fr; }
  .semanas-grid { grid-template-columns: 1fr; }
  .inst-grid { grid-template-columns: 1fr; gap: 48px; }
  .cierre-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .reserva-wrap { padding: 32px 24px; }

  /* Ajuste de la línea vertical para la columna más estrecha en tablet */
  .timeline::before { left: 72px; }
  .tl-item::before { left: 68px; }
  .tl-item { grid-template-columns: 72px 1fr; gap: 20px; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — mobile (≤600px)
══════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .form-row-2,
  .form-row-3 { flex-direction: column; }
  .cierre-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .semana-num-dec { font-size: 64px; }
}

/* ═══════════════════════════════════════════════════════
   PÁGINA GRACIAS / THANK YOU
═══════════════════════════════════════════════════════ */
.thankyou-page { padding-top: 80px; }

.ty-hero {
  padding: 80px 0 64px;
  text-align: center;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border);
}
.ty-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.ty-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 10vw, 96px);
  font-weight: 900;
  line-height: 1;
  color: var(--text-1);
  margin-bottom: 20px;
}
.ty-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Vídeo */
.ty-video-wrap { padding: 64px 0; }
.ty-video-inner { max-width: 800px; margin: 0 auto; }
.ty-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  background: var(--surface-2);
  display: block;
}
.ty-video-caption {
  margin-top: 16px;
  font-size: 15px;
  font-style: italic;
  color: var(--text-2);
  text-align: center;
}

/* Redes sociales */
.ty-social-wrap {
  padding: 64px 0 80px;
  border-top: 1px solid var(--border);
}
.ty-social-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.ty-social-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 12px;
}
.ty-social-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-1);
  margin-bottom: 16px;
}
.ty-social-sub {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 36px;
}
.ty-social-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.ty-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: opacity 0.15s;
}
.ty-social-btn:hover { opacity: 0.85; }
.ty-social-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.ty-social-tt { background: #010101; color: #fff; }
.ty-whatsapp { margin-top: 8px; }
.ty-whatsapp p { font-size: 14px; color: var(--text-2); margin-bottom: 12px; }

/* ═══════════════════════════════════════════════════════
   ALTERNATIVA TIPOGRÁFICA — Strawford en todos los títulos
   REVERTIR: eliminar este bloque + bloque en footer.php + línea en head.php + bloque en main.js
══════════════════════════════════════════════════════════ */

/* Cambio de variable: todos los elementos con font-family: var(--font-display) pasan a Strawford */
html.font-alt {
  --font-display: 'Strawford', sans-serif;
}

/* Ajustes de tamaño — Barlow Condensed ocupa ~55% del ancho de Strawford,
   así que los títulos grandes se reducen para que sigan cabiendo en línea */
html.font-alt .hero-h1        { font-size: clamp(48px, 7.5vw, 104px); letter-spacing: -0.04em; }
html.font-alt .section-h2     { font-size: clamp(34px, 4.5vw,  58px); letter-spacing: -0.03em; }
html.font-alt .dani-h2        { font-size: clamp(28px, 3.8vw,  48px); letter-spacing: -0.03em; }
html.font-alt .cierre-h2      { font-size: clamp(42px, 6.5vw,  82px); letter-spacing: -0.04em; }
html.font-alt .inst-h2        { font-size: clamp(24px, 3.2vw,  40px); }
html.font-alt .semana-price   { font-size: 38px; }
html.font-alt .semana-num-dec { letter-spacing: -0.04em; }

/* Toggle pill — UI de demo, no forma parte del diseño del site */
.font-toggle-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(3, 30, 42, 0.92);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 6px 10px 6px 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.ft-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}
.ft-options {
  display: flex;
  gap: 4px;
}
.ft-opt {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 100px;
  padding: 4px 12px;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.ft-opt:hover { color: var(--white); }
.ft-opt-active {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}
/* /ALTERNATIVA TIPOGRÁFICA */
