/* ================================================================
   VM STUDIO — Guía Maestra (canónica)
   Boutique moderno · Negro cálido · Champagne · Oliva editorial
   ================================================================ */

:root {
  /* Dark scale (warm black) */
  --d-bg-0: #0E0B08;
  --d-bg-1: #14110C;
  --d-bg-2: #1A1510;
  --d-bg-3: #221C15;
  --d-ink-0: #0A0806;
  --d-cream: #F3EBDC;
  --d-mute: rgba(243,235,220,0.62);
  --d-mute-2: rgba(243,235,220,0.42);
  --d-hair: rgba(243,235,220,0.10);

  /* Light scale (warm cream/white) */
  --l-bg-0: #FBF8F2;
  --l-bg-1: #F3EEDF;
  --l-bg-2: #E8E0CB;
  --l-ink: #1A1510;
  --l-mute: rgba(26,21,16,0.62);
  --l-mute-2: rgba(26,21,16,0.42);
  --l-hair: rgba(26,21,16,0.12);

  /* Gold (champagne) */
  --gold-1: #D4B572;
  --gold-2: #C9A85F;
  --gold-3: #E8CE92;
  --gold-deep: #8B6A2E;
  --gold-soft: rgba(212,181,114,0.12);
  --gold-line: rgba(212,181,114,0.28);

  /* Olive (acento editorial) */
  --olive: #5A5838;
  --olive-deep: #3A3824;
  --olive-soft: rgba(90,88,56,0.18);

  /* Type */
  --serif: 'Cormorant Garamond', 'Garamond', serif;
  --sans:  'Inter Tight', system-ui, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, monospace;

  /* Form */
  --r-xs: 3px;
  --r-sm: 5px;
  --r-md: 8px;
  --r-lg: 12px;

  /* Layout */
  --max: 1320px;

  /* Default = dark band */
  --bg-0: var(--d-bg-0);
  --bg-1: var(--d-bg-1);
  --bg-2: var(--d-bg-2);
  --bg-3: var(--d-bg-3);
  --ink: var(--d-cream);
  --mute: var(--d-mute);
  --mute-2: var(--d-mute-2);
  --hair: var(--d-hair);

  --gold-current: var(--gold-1); /* gold ajustável por theme */
}

/* ===== Theme: LIGHT ===== */
/* ============================================================
   THEME: LIGHT — paleta dedicada
   Filosofia: o forte é o BRANCO/CREAM. Cards e seções específicas
   podem ser pretas como acento (não tudo branco).
   ============================================================ */
body[data-theme="light"] {
  /* Bases — branco puro + cream paper */
  --bg-0: #FFFFFF;          /* página */
  --bg-1: #FAF6EC;          /* card cream */
  --bg-2: #F2EBDA;          /* card cream mais saturado */
  --bg-3: #E6DDC4;
  --ink: #1A1510;           /* preto warm pra texto */
  --mute: rgba(26,21,16,0.72);
  --mute-2: rgba(26,21,16,0.55);
  --hair: rgba(26,21,16,0.16);

  /* Aliases legacy --d-* mapeados pra equivalentes light */
  --d-bg-0: #FFFFFF;
  --d-bg-1: #FAF6EC;
  --d-bg-2: #F2EBDA;
  --d-bg-3: #E6DDC4;
  --d-ink-0: #1A1510;
  --d-cream: #1A1510;       /* o "cream" no light é preto pra texto */
  --d-mute: rgba(26,21,16,0.72);
  --d-mute-2: rgba(26,21,16,0.55);
  --d-hair: rgba(26,21,16,0.16);

  /* Champagne mais escuro pra contraste em fundo claro */
  --gold-current: var(--gold-deep);
  --gold-1: var(--gold-deep);   /* sobrescreve pra não ficar dourado claro ilegível */
  --gold-soft: rgba(139,106,46,0.08);
  --gold-line: rgba(139,106,46,0.40);

  background: #FFFFFF;
  color: #1A1510;
}
body[data-theme="light"] ::selection { background: var(--gold-deep); color: #fff; }
body[data-theme="light"] .num-marker { color: var(--gold-deep); }

/* No light, .band-dark vira "band-accent" cream com champagne deep — mantém o ritmo editorial sem mar de preto */
body[data-theme="light"] .band-dark {
  background: linear-gradient(180deg, #F2EBDA 0%, #FAF6EC 100%) !important;
  color: #1A1510 !important;
}
body[data-theme="light"] .band-dark em { color: var(--gold-deep); }

/* EXCETO seções identificadas como "preto editorial obrigatório" (founder, ebooks) — mantêm dark mesmo no light */
body[data-theme="light"] .band-dark.keep-dark,
body[data-theme="light"] .band-dark[data-keep-dark] {
  background: #0E0B08 !important;
  color: #F3EBDC !important;
}
body[data-theme="light"] .band-dark.keep-dark *,
body[data-theme="light"] .band-dark[data-keep-dark] * { color: inherit; }
body[data-theme="light"] .band-dark.keep-dark h1,
body[data-theme="light"] .band-dark.keep-dark h2,
body[data-theme="light"] .band-dark.keep-dark h3,
body[data-theme="light"] .band-dark.keep-dark h4,
body[data-theme="light"] .band-dark.keep-dark .display,
body[data-theme="light"] .band-dark.keep-dark .display-md { color: #F3EBDC; }
body[data-theme="light"] .band-dark.keep-dark em { color: var(--gold-1); }
body[data-theme="light"] .band-dark.keep-dark p,
body[data-theme="light"] .band-dark.keep-dark .desc,
body[data-theme="light"] .band-dark.keep-dark .caption { color: rgba(243,235,220,0.72); }

/* Logo VM no light precisa de cor adequada */
body[data-theme="light"] .logo-mark,
body[data-theme="light"] .logo-circle {
  color: #1A1510 !important;
  border-color: var(--gold-deep) !important;
}
body[data-theme="light"] .logo-mark em,
body[data-theme="light"] .logo-circle em {
  color: var(--gold-deep) !important;
}

/* Nav no light: contraste + fontes maiores */
body[data-theme="light"] .nav {
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(26,21,16,0.10);
  backdrop-filter: blur(10px);
}
body[data-theme="light"] .nav.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: rgba(26,21,16,0.14);
}
body[data-theme="light"] .nav-links a {
  color: #1A1510 !important;
}
body[data-theme="light"] .nav-links a:hover,
body[data-theme="light"] .nav-links a.active {
  color: var(--gold-deep) !important;
}
body[data-theme="light"] .btn.btn-ghost {
  color: #1A1510;
  border-color: rgba(26,21,16,0.24);
}
body[data-theme="light"] .btn.btn-ghost:hover {
  background: rgba(139,106,46,0.10);
  border-color: var(--gold-deep);
  color: var(--gold-deep);
}
body[data-theme="light"] .btn.btn-gold {
  background: var(--gold-deep);
  color: #FFFFFF;
}
body[data-theme="light"] .btn.btn-gold:hover {
  background: #6e5424;
}

/* Fontes do nav um pouco maiores pra legibilidade */
.nav-links a { font-size: 13px !important; letter-spacing: 0.08em; }
.btn.btn-sm { font-size: 12px !important; padding: 9px 16px !important; }
@media (min-width: 1100px) {
  .nav-links a { font-size: 14px !important; }
  .btn.btn-sm { font-size: 13px !important; padding: 10px 18px !important; }
}

/* Botão "Mi área" com ícone de usuário (logado) — torna a CTA mais óbvia */
.btn.btn-user {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}
.btn.btn-user svg { width: 16px; height: 16px; }
@media (max-width: 600px) {
  .btn.btn-user span { display: none; }
  .btn.btn-user { padding: 8px !important; border-radius: 999px !important; width: 38px; height: 38px; justify-content: center; }
  .btn.btn-user svg { width: 18px; height: 18px; }
}

/* ===== Theme: AUTO segue prefers-color-scheme ===== */
@media (prefers-color-scheme: light) {
  body[data-theme="auto"] {
    --bg-0: var(--l-bg-0);
    --bg-1: var(--l-bg-1);
    --bg-2: var(--l-bg-2);
    --bg-3: #DCD4BC;
    --ink: var(--l-ink);
    --mute: var(--l-mute);
    --mute-2: var(--l-mute-2);
    --hair: var(--l-hair);
    --d-bg-0: var(--l-bg-0); --d-bg-1: var(--l-bg-1); --d-bg-2: var(--l-bg-2); --d-bg-3: #DCD4BC;
    --d-ink-0: var(--l-bg-0); --d-cream: var(--l-ink); --d-mute: var(--l-mute); --d-mute-2: var(--l-mute-2); --d-hair: var(--l-hair);
    --gold-current: var(--gold-deep);
    --gold-soft: rgba(139,106,46,0.10);
    --gold-line: rgba(139,106,46,0.32);
    background: var(--l-bg-0); color: var(--l-ink);
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  background: var(--d-bg-0);
  color: var(--d-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  cursor: none;
}
a, button, .btn, .module-card, .program-row, .ebook, .faq-q, .gallery .g-item, .ig-page,
.tweak-swatch, .tweak-btn, .ba { cursor: none; }
input, textarea, select { cursor: text; }
@media (max-width: 900px) {
  body, a, button, .btn, .module-card, .program-row, .ebook, .faq-q,
  .gallery .g-item, .ig-page, .tweak-swatch, .tweak-btn, .ba { cursor: auto; }
  input, textarea, select { cursor: text; }
  a, button, .btn { cursor: pointer; }
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: 0; background: transparent; color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--gold-1); color: var(--d-ink-0); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 760px) { .container { padding: 0 20px; } }

/* ================================================================
   BANDS — alternam dark/light para mostrar componentes em ambos
   ================================================================ */
.band {
  position: relative;
  padding: 100px 0;
}
.band-dark {
  --bg-0: var(--d-bg-0); --bg-1: var(--d-bg-1); --bg-2: var(--d-bg-2); --bg-3: var(--d-bg-3);
  --ink: var(--d-cream); --mute: var(--d-mute); --mute-2: var(--d-mute-2); --hair: var(--d-hair);
  background: var(--d-bg-0);
  color: var(--d-cream);
}
.band-light {
  --bg-0: var(--l-bg-0); --bg-1: var(--l-bg-1); --bg-2: var(--l-bg-2);
  --ink: var(--l-ink); --mute: var(--l-mute); --mute-2: var(--l-mute-2); --hair: var(--l-hair);
  background: var(--l-bg-0);
  color: var(--l-ink);
}
.band-seam {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-1) 20%, var(--gold-1) 80%, transparent);
  opacity: 0.4;
}
.band-label {
  position: absolute;
  top: 24px; left: 32px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mute-2);
  z-index: 5;
}
.use-hint {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.use-hint::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-1);
}

/* ================================================================
   TIPOGRAFÍA
   ================================================================ */
.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-1);
}
.eyebrow .dot {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-1);
  margin: 0 10px;
  vertical-align: middle;
}
.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 0.98;
  color: var(--ink);
}
.display em { font-style: italic; color: var(--gold-1); font-weight: 400; }
.display-xl { font-family: var(--serif); font-size: clamp(72px, 9vw, 144px); font-weight: 400; line-height: 0.92; letter-spacing: -0.02em; }
.display-lg { font-family: var(--serif); font-size: clamp(56px, 6vw, 88px); font-weight: 400; line-height: 0.95; letter-spacing: -0.018em; }
.display-md { font-family: var(--serif); font-size: clamp(40px, 4.5vw, 64px); font-weight: 400; line-height: 0.98; letter-spacing: -0.012em; }
.display-sm { font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); font-weight: 500; line-height: 1.1; letter-spacing: -0.008em; }
.display-xs { font-family: var(--serif); font-size: 22px; font-weight: 500; line-height: 1.2; }
.display-xl em, .display-lg em, .display-md em, .display-sm em, .display-xs em {
  font-style: italic; color: var(--gold-1); font-weight: 400;
}
.body-lg { font-size: 17px; line-height: 1.65; color: var(--mute); }
.body { font-size: 15px; line-height: 1.65; color: var(--mute); }
.body-sm { font-size: 13px; line-height: 1.6; color: var(--mute); }
.caption { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute-2); }
.num-marker {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-1);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.guide-heading {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 56px;
}
.guide-heading .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-1);
  font-size: 56px;
  line-height: 1;
}
.guide-heading h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.012em;
}
.guide-heading h2 em { color: var(--gold-1); font-style: italic; font-weight: 400; }
@media (max-width: 760px) {
  .guide-heading { flex-direction: column; gap: 8px; }
  .guide-heading .num { font-size: 36px; }
}

/* ================================================================
   BOTÕES
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: all 0.35s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}
.btn .arrow { display: inline-block; transition: transform 0.3s; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-gold {
  background: linear-gradient(180deg, var(--gold-3) 0%, var(--gold-1) 50%, var(--gold-2) 100%);
  color: var(--d-ink-0);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 10px 30px rgba(212,181,114,0.18);
}
.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 14px 40px rgba(212,181,114,0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--gold-line);
}
.btn-ghost:hover {
  border-color: var(--gold-1);
  background: var(--gold-soft);
}

.btn-olive {
  background: var(--olive-deep);
  color: var(--d-cream);
  border: 1px solid var(--olive);
}
.btn-olive:hover { background: var(--olive); }

.btn-dark {
  background: var(--d-bg-2);
  color: var(--d-cream);
  border: 1px solid var(--d-hair);
}
.band-light .btn-dark { background: var(--l-ink); }
.btn-dark:hover { background: var(--gold-deep); border-color: var(--gold-1); color: var(--d-cream); }

.btn-outline {
  background: transparent;
  border: 1px solid currentColor;
  color: var(--ink);
}
.btn-outline:hover { background: currentColor; color: var(--bg-0); }

.btn-tiny {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-1);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.btn-tiny .dash {
  width: 24px; height: 1px;
  background: var(--gold-1);
  display: inline-block;
  transition: width 0.35s;
}
.btn-tiny:hover .dash { width: 48px; }

/* ================================================================
   CHIPS / BADGES
   ================================================================ */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid var(--hair);
  border-radius: var(--r-xs);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  background: var(--bg-1);
}
.chip .bullet { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-1); }
.chip-gold { border-color: var(--gold-line); color: var(--gold-1); background: var(--gold-soft); }

/* ================================================================
   INPUTS / FORMS
   ================================================================ */
.field {
  display: block;
  margin-bottom: 18px;
}
.field-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 8px;
}
.input,
.textarea {
  width: 100%;
  background: var(--bg-1);
  border: 1px solid var(--hair);
  border-radius: var(--r-sm);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.25s, background 0.25s;
}
.input:focus,
.textarea:focus {
  outline: none;
  border-color: var(--gold-1);
  background: var(--bg-0);
}
.input::placeholder,
.textarea::placeholder { color: var(--mute-2); font-style: italic; }
.textarea { min-height: 120px; resize: vertical; }

.form-row {
  display: flex;
  border-bottom: 1px solid var(--gold-line);
  padding: 12px 0;
  gap: 12px;
  align-items: center;
}
.form-row input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  padding: 8px 0;
}
.form-row input::placeholder { color: var(--mute-2); font-style: italic; }
.form-row button {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-1);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ================================================================
   ORNAMENTOS / HAIRLINES / DIAMONDS
   ================================================================ */
.hair-line {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-line) 20%, var(--gold-line) 80%, transparent);
}
.diamond {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--gold-1);
  transform: rotate(45deg);
  vertical-align: middle;
  margin: 0 8px;
}
.tick {
  width: 14px; height: 1px;
  background: var(--gold-1);
  display: inline-block;
}

/* ================================================================
   LINK EFFECTS (4 variantes)
   ================================================================ */
.link-underline {
  position: relative;
  display: inline-block;
  cursor: pointer;
  border-bottom: 1px solid var(--hair);
  padding-bottom: 2px;
}
.link-underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 0; height: 1px;
  background: var(--gold-1);
  transition: width 0.4s cubic-bezier(.2,.8,.2,1);
}
.link-underline:hover::after { width: 100%; }

.link-swap {
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
  height: 1.4em;
  vertical-align: bottom;
}
.link-swap > span { display: block; transition: transform 0.4s cubic-bezier(.2,.8,.2,1); }
.link-swap::after {
  content: attr(data-text);
  position: absolute;
  left: 0; top: 100%;
  color: var(--gold-1);
  font-style: italic;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.link-swap:hover > span { transform: translateY(-100%); }
.link-swap:hover::after { transform: translateY(-100%); }

.link-bracket {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding: 0 16px;
  transition: color 0.3s, padding 0.3s;
}
.link-bracket::before,
.link-bracket::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-1);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.link-bracket::before { content: '['; left: 4px; }
.link-bracket::after { content: ']'; right: 4px; }
.link-bracket:hover { color: var(--gold-1); padding: 0 22px; }
.link-bracket:hover::before { opacity: 1; transform: translate(-4px, -50%); }
.link-bracket:hover::after { opacity: 1; transform: translate(4px, -50%); }

/* ================================================================
   NAV — sticky con glass al scroll + logo en círculo + hamburger mobile
   ================================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;  /* logo · links centrais · right */
  align-items: center;
  padding: 14px 32px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, padding 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  gap: 24px;
}
.nav .nav-links { justify-content: center; }
@media (max-width: 900px) {
  .nav { display: flex; justify-content: space-between; }
  .nav .nav-links { justify-content: flex-start; }
}
.nav.scrolled {
  background:
    radial-gradient(900px 280px at 50% -20%, rgba(212,181,114,0.08), transparent 60%),
    linear-gradient(180deg, rgba(8,8,8,0.55) 0%, rgba(5,5,5,0.45) 100%);
  backdrop-filter: blur(22px) saturate(1.6) brightness(0.88);
  -webkit-backdrop-filter: blur(22px) saturate(1.6) brightness(0.88);
  border-bottom-color: var(--gold-line);
  padding: 10px 32px;
  box-shadow: 0 1px 0 rgba(212,181,114,0.12), 0 20px 60px rgba(0,0,0,0.5);
}

.nav .logo-mark {
  display: inline-flex;
  align-items: center;
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.06em;
  color: var(--d-cream);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}
.nav .logo-mark em { font-style: italic; color: var(--gold-1); font-weight: 400; margin-left: 1px; }
.nav .logo-mark.logo-circle {
  width: 56px; height: 56px;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  font-size: 20px;
  letter-spacing: 0.04em;
  background: rgba(14,11,8,0.5);
  backdrop-filter: blur(8px);
}
.nav .logo-mark.logo-circle:hover {
  border-color: var(--gold-1);
  background: var(--gold-soft);
  transform: scale(1.04);
}
.nav.scrolled .logo-mark.logo-circle {
  width: 48px; height: 48px;
  font-size: 18px;
}

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d-mute);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold-1); }
.nav-links a.active { color: var(--gold-1); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 16px; height: 1px;
  background: var(--gold-1);
}

.nav-right {
  display: flex; gap: 10px; align-items: center;
}
.btn.btn-sm { padding: 10px 16px; font-size: 11px; }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  background: rgba(14,11,8,0.5);
  backdrop-filter: blur(8px);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all 0.25s;
}
.nav-toggle:hover { border-color: var(--gold-1); }
.nav-toggle span {
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 1px;
  background: var(--gold-1);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), opacity 0.25s;
}
.nav-toggle span:nth-child(1) { transform: translate(-50%, -6px); }
.nav-toggle span:nth-child(2) { transform: translate(-50%, 0); }
.nav-toggle span:nth-child(3) { transform: translate(-50%, 6px); }
.nav-toggle.open span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translate(-50%, 0) rotate(-45deg); }

.hide-mobile { display: inline-flex; }

@media (max-width: 900px) {
  .nav { padding: 12px 18px; }
  .nav.scrolled { padding: 10px 18px; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .hide-mobile { display: none !important; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 96px 32px 32px;
    background: var(--d-bg-0);
    border-left: 1px solid var(--gold-line);
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(.2,.8,.2,1);
    z-index: 90;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--d-hair);
    font-size: 11px;
  }
  .nav-links a.active::after { display: none; }
  body.nav-open { overflow: hidden; }
  body.nav-open::before {
    content: '';
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 89;
  }
}

/* ================================================================
   GUIDE TOP BAR (esta página)
   ================================================================ */
.guide-top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(14,11,8,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gold-line);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--d-cream);
}
.guide-top .left { display: flex; align-items: center; gap: 14px; }
.guide-top .left strong { color: var(--gold-1); font-weight: 500; letter-spacing: 0.24em; }
.guide-top .pill {
  padding: 4px 10px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  color: var(--gold-1);
  font-size: 9px;
  letter-spacing: 0.22em;
}
.guide-top .right a {
  color: var(--d-mute);
  margin-left: 18px;
  transition: color 0.2s;
}
.guide-top .right a:hover { color: var(--gold-1); }
body { padding-top: 38px; }

/* ================================================================
   01 · COVER
   ================================================================ */
.guide-cover {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.guide-cover .meta-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 56px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--d-mute-2);
}
.guide-cover h1 {
  font-family: var(--serif);
  font-size: clamp(64px, 8vw, 120px);
  line-height: 0.92;
  font-weight: 400;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.guide-cover h1 em { font-style: italic; color: var(--gold-1); font-weight: 400; }
.guide-cover .lead {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  color: var(--d-mute);
  max-width: 640px;
  margin-top: 32px;
  padding-left: 20px;
  border-left: 1px solid var(--gold-line);
}

.decisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
@media (max-width: 900px) { .decisions-grid { grid-template-columns: 1fr; } }
.decision-card {
  padding: 24px;
  border: 1px solid var(--d-hair);
  border-radius: var(--r-md);
  background: var(--d-bg-1);
}
.decision-card.in    { border-color: rgba(140,200,140,0.3); }
.decision-card.out   { border-color: rgba(200,90,90,0.3); }
.decision-card.tbd   { border-color: var(--gold-line); }
.decision-card .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.decision-card.in .lbl { color: rgb(170,220,170); }
.decision-card.out .lbl { color: rgb(220,150,150); }
.decision-card.tbd .lbl { color: var(--gold-1); }
.decision-card ul { list-style: none; }
.decision-card li {
  padding: 6px 0;
  font-size: 13px;
  color: var(--d-mute);
  border-bottom: 1px solid var(--d-hair);
}
.decision-card li:last-child { border-bottom: 0; }

/* ================================================================
   02 · TIPOGRAFÍA — type scale table
   ================================================================ */
.type-table {
  display: grid;
  grid-template-columns: 120px 1fr 180px;
  gap: 24px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--hair);
}
.type-table .lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--mute-2); }
.type-table .spec { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--mute-2); text-align: right; }
@media (max-width: 760px) {
  .type-table { grid-template-columns: 1fr; gap: 8px; }
  .type-table .spec { text-align: left; }
}

/* ================================================================
   03 · COLOR — paletas
   ================================================================ */
.swatch-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 760px) { .swatch-grid { grid-template-columns: repeat(2, 1fr); } }
.swatch {
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-1);
}
.swatch .color {
  height: 110px;
  border-bottom: 1px solid var(--hair);
}
.swatch .info { padding: 14px; }
.swatch .name { font-family: var(--serif); font-size: 16px; color: var(--ink); margin-bottom: 4px; }
.swatch .hex { font-family: var(--mono); font-size: 11px; color: var(--mute-2); letter-spacing: 0.06em; }

/* ================================================================
   04 · HERO — Editorial Split (texto izq + foto der)
   ================================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
  background: var(--d-bg-0);
  color: var(--d-cream);
}
.hero-grain {
  position: absolute; inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.83 0 0 0 0 0.71 0 0 0 0 0.45 0 0 0 0.7 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
  z-index: 1;
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: center;
}
.hero-inner > div:first-child { max-width: 640px; }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-inner > div:first-child { max-width: 100%; }
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--d-mute-2);
}
.hero-meta .coords { font-size: 10px; letter-spacing: 0.15em; }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 0.98;
  font-weight: 400;
  margin: 18px 0 20px;
  letter-spacing: -0.014em;
  color: var(--d-cream);
}
.hero h1 em { font-style: italic; color: var(--gold-1); font-weight: 400; }
.hero-sub {
  max-width: 460px;
  font-size: 15px;
  color: var(--d-mute);
  line-height: 1.7;
  margin-top: 20px;
  padding-left: 18px;
  border-left: 1px solid var(--gold-line);
}
.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  align-items: center;
  flex-wrap: wrap;
}

/* Coluna foto direita */
.hero-media {
  position: relative;
  aspect-ratio: 3/4;
  width: 100%;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--gold-line);
}
@media (max-width: 900px) { .hero-media { max-width: 100%; aspect-ratio: 4/5; } }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(0.92) brightness(0.95);
}
.hero-media::before {
  content: '';
  position: absolute; inset: 12px;
  border: 1px solid rgba(212,181,114,0.18);
  border-radius: var(--r-sm);
  z-index: 2;
  pointer-events: none;
}
.hero-floating {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(14,11,8,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  z-index: 3;
}
.hero-floating .k {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--d-mute-2);
}
.hero-floating .v {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--d-cream);
  margin-top: 4px;
  line-height: 1.1;
}
.hero-floating .v em { color: var(--gold-1); font-style: italic; }

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--d-hair);
}
.hero-stats-row .stat {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--d-cream);
  line-height: 1;
}
.hero-stats-row .stat em { font-style: italic; color: var(--gold-1); font-weight: 400; }
.hero-stats-row .stat-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--d-mute-2);
  margin-top: 6px;
}

/* Marquee */
.hero-marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 0;
  border-top: 1px solid var(--d-hair);
  border-bottom: 1px solid var(--d-hair);
  overflow: hidden;
  white-space: nowrap;
  background: rgba(10,8,6,0.4);
  backdrop-filter: blur(12px);
  z-index: 4;
}
.hero-marquee .track {
  display: inline-flex;
  gap: 48px;
  animation: marquee 40s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-1);
  padding-left: 48px;
}
.hero-marquee .track .sep { width: 6px; height: 6px; background: var(--gold-1); transform: rotate(45deg); display: inline-block; margin: 0 24px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ================================================================
   05 · SECTION HEAD pattern
   ================================================================ */
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 64px;
  align-items: start;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.012em;
}
.section-head h2 em { color: var(--gold-1); font-style: italic; font-weight: 400; }
.section-head .desc { font-size: 15px; color: var(--mute); max-width: 460px; line-height: 1.65; }
@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
}

/* ================================================================
   06 · METHOD GRID (4-step)
   ================================================================ */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 900px) { .method-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .method-grid { grid-template-columns: 1fr; } }
.method-step .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 88px;
  color: var(--gold-1);
  line-height: 1;
  font-weight: 400;
}
.method-step h3 {
  font-family: var(--serif);
  font-size: 26px;
  margin: 16px 0 10px;
  font-weight: 400;
  color: var(--ink);
}
.method-step p { font-size: 14px; line-height: 1.65; color: var(--mute); }

/* ================================================================
   07 · PROGRAM ROWS (cursos editorial)
   ================================================================ */
.program-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr 1fr 180px;
  gap: 32px;
  align-items: center;
  padding: 32px 24px;
  border-top: 1px solid var(--hair);
  transition: background 0.4s, padding 0.4s;
  cursor: pointer;
}
.program-row:last-child { border-bottom: 1px solid var(--hair); }
.program-row:hover {
  background: linear-gradient(90deg, rgba(212,181,114,0.04), transparent);
  padding-left: 36px;
}
.program-row:hover .prog-num,
.program-row:hover .prog-title { color: var(--gold-1); }
.prog-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 300;
  color: var(--mute-2);
  transition: color 0.4s;
}
.prog-title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  transition: color 0.4s;
}
.prog-title em { font-style: italic; color: var(--gold-1); font-weight: 400; }
.prog-desc { font-size: 13px; color: var(--mute); line-height: 1.55; }
.prog-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute-2);
}
.prog-meta .duration {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-1);
  letter-spacing: 0;
  text-transform: none;
}
.prog-cta { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }

.cupos {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.cupos .pulse {
  position: relative;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-1);
}
.cupos .pulse::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--gold-1);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}
.cupos strong { color: var(--gold-1); font-weight: 500; }

@media (max-width: 900px) {
  .program-row {
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 24px 0;
  }
  .program-row > *:not(.prog-num):not(.prog-title) { grid-column: 2; }
  .program-row .prog-cta { align-items: flex-start; }
  .prog-title { font-size: 22px; }
}

/* ================================================================
   08 · MODULE CARDS (3-up)
   ================================================================ */
.modules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .modules-grid { grid-template-columns: 1fr; } }
.module-card {
  position: relative;
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-1);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), border-color 0.4s;
  cursor: pointer;
}
.module-card:hover { border-color: var(--gold-line); transform: translateY(-4px); }
.module-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.module-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14,11,8,0.8) 100%);
}
.module-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.92);
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.module-card:hover .module-img img { transform: scale(1.05); }
.module-body { padding: 24px; }
.module-body .kicker { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.module-body h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--ink);
}
.module-body h3 em { font-style: italic; color: var(--gold-1); font-weight: 400; }
.module-body .desc { font-size: 13px; color: var(--mute); line-height: 1.6; margin-bottom: 18px; }
.module-body .foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--hair);
}
.module-body .price {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--gold-1);
  font-style: italic;
  font-weight: 300;
}
.module-body .arrow-link {
  width: 38px; height: 38px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-1);
  transition: all 0.35s;
}
.module-card:hover .arrow-link { background: var(--gold-1); color: var(--d-ink-0); transform: rotate(-45deg); }

/* ================================================================
   09 · COURSE BOOK ("Lo que vas a aprender")
   ================================================================ */
.paper {
  background: var(--l-bg-0);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-sm);
  padding: 80px 80px 60px;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  color: var(--l-ink);
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
}
.band-light .paper { background: white; }
@media (max-width: 760px) { .paper { padding: 48px 32px; } }
.paper .seal {
  position: absolute;
  top: 32px; right: 32px;
  width: 90px; height: 90px;
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  line-height: 1.4;
}
.paper .seal em { display: block; font-size: 22px; font-style: italic; color: var(--gold-1); margin-top: 4px; text-transform: none; letter-spacing: 0; }
.paper .top { text-align: center; margin-bottom: 48px; }
.paper .top .mark { font-family: var(--mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-deep); }
.paper .top h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  margin: 12px 0;
  color: var(--l-ink);
}
.paper .top h2 em { font-style: italic; color: var(--gold-deep); font-weight: 400; }
.paper .top .sub { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--l-mute-2); }
.paper .toc-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  text-align: center;
  color: var(--gold-deep);
  margin: 32px 0 24px;
}
.paper .chapters {
  list-style: none;
  border-top: 1px solid var(--l-hair);
}
.paper .chapters li {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--l-hair);
}
.paper .chapters .ch-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-deep);
}
.paper .chapters .ch-title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--l-ink);
  font-weight: 400;
}
.paper .chapters .ch-title .sub {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--l-mute);
  margin-top: 4px;
  font-style: italic;
}
.paper .chapters .ch-page {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--l-mute-2);
  letter-spacing: 0.1em;
}
.paper .signature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--l-hair);
}
.paper .sig .line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--l-ink);
  border-bottom: 1px solid var(--l-ink);
  padding-bottom: 6px;
  margin-bottom: 6px;
  min-height: 30px;
}
.paper .sig .lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--l-mute-2); }

/* ================================================================
   10 · STUDIO RESERVE PANEL (spa)
   ================================================================ */
.studio-reserve {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px;
  background: linear-gradient(135deg, var(--bg-1), var(--bg-2));
  border: 1px solid var(--gold-line);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) { .studio-reserve { grid-template-columns: 1fr; padding: 36px; gap: 32px; } }
.studio-reserve::before {
  content: '';
  position: absolute; inset: 12px;
  border: 1px solid rgba(212,181,114,0.15);
  border-radius: var(--r-sm);
  pointer-events: none;
}
.studio-reserve h3 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
  margin: 14px 0 16px;
  font-weight: 400;
  color: var(--ink);
}
.studio-reserve h3 em { font-style: italic; color: var(--gold-1); font-weight: 400; }
.service-list { display: flex; flex-direction: column; gap: 12px; }
.service-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dotted var(--hair);
  align-items: center;
}
.service-item:last-child { border-bottom: 0; }
.service-item .name { font-size: 14px; color: var(--ink); }
.service-item .dur { font-family: var(--mono); font-size: 10px; color: var(--mute-2); letter-spacing: 0.14em; text-transform: uppercase; }
.service-item .pricen {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--gold-1);
}

/* ================================================================
   11 · FOUNDER section
   ================================================================ */
.founder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .founder { grid-template-columns: 1fr; gap: 40px; } }
.founder-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  overflow: hidden;
}
.founder-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.9) grayscale(0.15);
  transition: filter 0.6s;
}
.founder-img:hover img { filter: contrast(1.05) saturate(1) grayscale(0); }
.founder-img::before {
  content: '';
  position: absolute; inset: 16px;
  border: 1px solid rgba(212,181,114,0.3);
  border-radius: var(--r-sm);
  z-index: 2;
  pointer-events: none;
}
.founder-sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: 48px;
  color: var(--gold-1);
  font-weight: 400;
  margin: 24px 0 8px;
  line-height: 1;
}
.founder-role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--mute-2); }
.founder-quote {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: var(--ink);
  margin: 32px 0;
  padding-left: 20px;
  border-left: 2px solid var(--gold-1);
}
.founder-body { font-size: 15px; color: var(--mute); line-height: 1.75; }
.founder-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--hair);
}
.founder-numbers .n {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  color: var(--gold-1);
  line-height: 1;
}
.founder-numbers .l { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute-2); margin-top: 6px; }

/* ================================================================
   12 · BEFORE/AFTER slider (single, the cleaner version)
   ================================================================ */
.ba-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .ba-wrap { grid-template-columns: 1fr; gap: 32px; } }
.ba {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--hair);
  user-select: none;
  cursor: ew-resize;
}
.ba img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ba .ba-after { clip-path: inset(0 0 0 50%); }
.ba .ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold-1);
  z-index: 3;
  transform: translateX(-50%);
  box-shadow: 0 0 18px rgba(212,181,114,0.6);
}
.ba .ba-handle::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: var(--gold-1);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(212,181,114,0.4), inset 0 1px 0 rgba(255,255,255,0.4);
}
.ba .ba-handle::after {
  content: '⇄';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--d-ink-0);
  font-size: 16px;
  font-weight: 700;
  z-index: 2;
}
.ba .ba-label {
  position: absolute;
  top: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(14,11,8,0.6);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: var(--r-xs);
  z-index: 4;
  border: 1px solid var(--hair);
}
.ba .ba-label.before { left: 16px; }
.ba .ba-label.after { right: 16px; }

/* ================================================================
   13 · GALLERY mosaic
   ================================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
}
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; } }
.gallery .g-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
  cursor: pointer;
}
.gallery .g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter 0.6s;
  filter: grayscale(0.15) contrast(1.04);
}
.gallery .g-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14,11,8,0.75) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery .g-item:hover img { transform: scale(1.06); filter: none; }
.gallery .g-item:hover::after { opacity: 1; }
.gallery .g-item .g-label {
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--d-cream);
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
  transform: translateY(10px);
  z-index: 2;
}
.gallery .g-item:hover .g-label { opacity: 1; transform: translateY(0); }
.gallery .g-tall { grid-row: span 2; }
.gallery .g-wide { grid-column: span 2; }
@media (max-width: 900px) { .gallery .g-tall { grid-row: span 1; } }

/* ================================================================
   14 · TESTIMONIOS
   ================================================================ */
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px 80px; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; gap: 40px; } }
.testi {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding-top: 24px;
  border-top: 1px solid var(--hair);
}
.testi .avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--gold-line);
}
.testi .avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi blockquote {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 16px;
}
.testi blockquote::before {
  content: '"';
  font-size: 48px;
  line-height: 0;
  color: var(--gold-1);
  vertical-align: -18px;
  margin-right: 6px;
  font-style: italic;
}
.testi .who { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-1); }
.testi .when { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; color: var(--mute-2); margin-top: 4px; }

/* ================================================================
   15 · EBOOKS — variants dark + light (canónico de design-guide)
   ================================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } }

.card-ebook {
  padding: 24px;
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  background: var(--bg-1);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  cursor: pointer;
}
.card-ebook:hover { border-color: var(--gold-1); transform: translateY(-2px); }
.card-ebook .cover {
  width: 92px;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--gold-1);
  border-radius: var(--r-xs);
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: rotate(-4deg);
  transition: transform 0.55s cubic-bezier(.2,.8,.2,1), box-shadow 0.5s;
  box-shadow: -6px 8px 16px rgba(0,0,0,0.22);
  position: relative;
}
.card-ebook .cover::before {
  content: ''; position: absolute; inset: 5px;
  border: 1px solid rgba(201,162,74,0.35);
  border-radius: 2px;
  pointer-events: none;
}
.card-ebook:hover .cover { transform: rotate(0) scale(1.06); }
.card-ebook .cover .t {
  font-family: var(--serif);
  font-size: 11px;
  line-height: 1.2;
  color: var(--gold-1);
  font-weight: 400;
}
.card-ebook .cover .v {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mute-2);
}
.card-ebook h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
}
.card-ebook h4 em { color: var(--gold-1); font-style: italic; font-weight: 400; }
.card-ebook .meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute-2);
  margin-top: 8px;
}
.card-ebook .price {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-1);
  font-size: 20px;
  font-weight: 400;
  margin-top: 10px;
}

/* Ebook — light variant */
.card-ebook.light {
  background: var(--l-bg-1);
  border-color: var(--l-hair);
}
.card-ebook.light:hover { border-color: var(--gold-deep); }
.card-ebook.light .cover {
  background: linear-gradient(135deg, #FFFFFF, #FFFFFF);
  border-color: var(--gold-deep);
  box-shadow: -6px 8px 18px rgba(0,0,0,0.16);
}
.card-ebook.light .cover::before { border-color: rgba(139,106,46,0.35); }
.card-ebook.light .cover .t { color: var(--gold-deep); }
.card-ebook.light .cover .v { color: rgba(10,10,10,0.42); }
.card-ebook.light h4 { color: var(--l-ink); }
.card-ebook.light .meta { color: rgba(10,10,10,0.45); }
.card-ebook.light .price { color: var(--gold-deep); }

/* ================================================================
   16 · FAQ accordion
   ================================================================ */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--hair); overflow: hidden; }
.faq-item:last-child { border-bottom: 1px solid var(--hair); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8px;
  cursor: pointer;
  gap: 24px;
  transition: color 0.3s;
}
.faq-q h5 { font-family: var(--serif); font-size: 22px; font-weight: 400; line-height: 1.2; color: var(--ink); transition: color 0.3s; }
.faq-item.open .faq-q h5 { color: var(--gold-1); }
.faq-q .ico {
  width: 30px; height: 30px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-1);
  transition: transform 0.4s, background 0.3s;
  flex-shrink: 0;
  font-size: 16px;
}
.faq-item.open .faq-q .ico { transform: rotate(45deg); background: var(--gold-soft); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(.2,.8,.2,1); }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding: 0 8px 24px; color: var(--mute); font-size: 15px; line-height: 1.7; max-width: 780px; }

/* ================================================================
   17 · CTA / NEWSLETTER
   ================================================================ */
.cta-block {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.cta-block .bg-ornament { position: absolute; inset: 0; pointer-events: none; opacity: 0.5; }
.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .newsletter { grid-template-columns: 1fr; gap: 32px; } }
.newsletter h3 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  font-weight: 400;
}
.newsletter h3 em { font-style: italic; color: var(--gold-1); font-weight: 400; }

/* ================================================================
   18 · FOOTER
   ================================================================ */
.footer {
  padding: 80px 0 40px;
  background: var(--d-ink-0);
  color: var(--d-cream);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 60px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; } }
.footer-brand .mono-big {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
}
.footer-brand .mono-big em { color: var(--gold-1); font-style: italic; font-weight: 300; }
.footer-col h6 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
  color: var(--gold-1);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  padding: 5px 0;
  font-size: 14px;
  color: var(--d-mute);
  transition: color 0.25s;
  cursor: pointer;
}
.footer-col li:hover { color: var(--gold-1); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--d-hair);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--d-mute-2);
}

/* ================================================================
   ANCHOR — section spacing, scroll offset
   ================================================================ */
section[id] { scroll-margin-top: 60px; }

/* Annotation badge */
.annot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-left: 12px;
  vertical-align: middle;
}
.annot.in { background: rgba(140,200,140,0.15); color: rgb(170,220,170); border: 1px solid rgba(140,200,140,0.25); }
.annot.tbd { background: var(--gold-soft); color: var(--gold-1); border: 1px solid var(--gold-line); }
.annot.note { background: rgba(243,235,220,0.06); color: var(--mute); border: 1px solid var(--hair); }

/* ================================================================
   CURSOR DORADO — point + ring with states
   ================================================================ */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--gold-1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, background 0.25s;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.25s, opacity 0.25s, background 0.25s;
}
.cursor-dot.hover-link { width: 4px; height: 4px; }
.cursor-ring.hover-link { width: 26px; height: 26px; border-color: var(--gold-1); background: rgba(212,181,114,0.05); }
.cursor-dot.hover-media { width: 80px; height: 80px; background: var(--gold-1); display: grid; place-items: center; }
.cursor-dot.hover-media::after {
  content: 'Ver +';
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d-ink-0);
}
.cursor-ring.hover-media { opacity: 0; }
@media (max-width: 900px) { .cursor-dot, .cursor-ring { display: none; } }

/* ================================================================
   INSTAGRAM MAGAZINE SPREAD
   ================================================================ */
.ig-spread {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 8px;
}
@media (max-width: 900px) { .ig-spread { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; } }
.ig-page {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
  background: var(--bg-1);
  border: 1px solid var(--hair);
}
.ig-page img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.8,.2,1); }
.ig-page:hover img { transform: scale(1.06); }
.ig-page::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14,11,8,0.85) 100%);
}
.ig-page .corner {
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--gold-1);
  background: rgba(14,11,8,0.7);
  backdrop-filter: blur(8px);
  padding: 4px 8px;
  border-radius: var(--r-xs);
  z-index: 2;
}
.ig-page .meta {
  position: absolute;
  bottom: 16px; left: 16px;
  z-index: 2;
}
.ig-page .meta .edition {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-1);
  display: block;
  margin-bottom: 4px;
}
.ig-page .meta .title {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--d-cream);
  font-weight: 400;
  line-height: 1.1;
}
.ig-page .meta .title em { font-style: italic; color: var(--gold-1); }

.ig-page.cover-page {
  background: linear-gradient(135deg, var(--bg-3), var(--bg-1));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
}
.ig-page.cover-page::after { display: none; }
.ig-page.cover-page .top-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-1);
}
.ig-page.cover-page .top-row em { font-style: italic; color: var(--d-mute-2); text-transform: none; }
.ig-page.cover-page .title-big {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
  color: var(--d-cream);
  font-weight: 400;
}
.ig-page.cover-page .title-big em { font-style: italic; color: var(--gold-1); font-weight: 400; }
.ig-page.cover-page .bottom-line {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--d-mute-2);
}

.ig-page.tall { grid-row: span 2; }
.ig-page.wide { grid-column: span 2; }
@media (max-width: 900px) {
  .ig-page.tall { grid-row: span 1; }
}

.ig-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}
.ig-header .right { text-align: right; }
.ig-header .handle { font-family: var(--serif); font-size: 28px; color: var(--ink); }
.ig-header .handle em { color: var(--gold-1); font-style: italic; }
.ig-header .sub { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mute-2); margin-top: 4px; }

/* ================================================================
   TWEAKS PANEL (live tone tweaker)
   ================================================================ */
.tweaks-demo {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
  padding: 40px;
  background: var(--bg-1);
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  overflow: visible;
}
@media (max-width: 900px) { .tweaks-demo { grid-template-columns: 1fr; } }
.tweaks-panel {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--gold-line);
  border-radius: var(--r-md);
  padding: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.tweaks-panel h4 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-1);
  margin-bottom: 14px;
  font-weight: 400;
}
.tweak-group { margin-bottom: 18px; }
.tweak-group:last-child { margin-bottom: 0; }
.tweak-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute-2);
  margin-bottom: 10px;
}
.tweak-options {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.tweak-btn {
  padding: 7px 12px;
  background: var(--bg-1);
  border: 1px solid var(--hair);
  border-radius: var(--r-xs);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  cursor: pointer;
  transition: all 0.25s;
}
.tweak-btn.active {
  background: var(--gold-soft);
  border-color: var(--gold-1);
  color: var(--gold-1);
}
.tweak-swatch {
  width: 30px; height: 30px;
  border-radius: var(--r-xs);
  border: 1px solid var(--hair);
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}
.tweak-swatch.active {
  border-color: var(--gold-1);
  transform: scale(1.1);
}