/* ============================================
   O CÓDIGO DA DECISÃO — Landing Page
   Lucienne Eluan
============================================ */

:root {
  /* Base */
  --bg: #0A0A0A;
  --surface: #111111;
  --surface-2: #1A1A1A;
  --surface-3: #222222;
  --border: #2A2A2A;
  --border-strong: #3A3A3A;

  /* Gold (clássico — default) */
  --gold-50: #FBF1D9;
  --gold-100: #F2DDA0;
  --gold-300: #E8B84B;
  --gold-400: #D7A33D;
  --gold-500: #C8973A;
  --gold-600: #A87A28;
  --gold-700: #7A5818;

  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0A0;
  --text-tertiary: #6A6A6A;
  --text-muted: #4A4A4A;

  /* Accent / utility */
  --danger: #8A3A3A;
  --danger-soft: #6A2A2A;

  /* Type */
  --font-display: "Cormorant Garamond", "Cormorant", "Playfair Display", Georgia, serif;
  --font-body: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --font-ui: "JetBrains Mono", "IBM Plex Mono", "Fira Code", ui-monospace, monospace;
  --font-sans: "Geist", "Söhne", "Neue Haas Grotesk", -apple-system, system-ui, sans-serif;

  /* Effects */
  --gold-glow: 0 0 80px -20px rgba(200, 151, 58, 0.45);
  --gold-glow-strong: 0 0 120px -10px rgba(232, 184, 75, 0.55);
}

/* ============== TONS DE DOURADO ============== */
[data-gold="warm"] {
  --gold-50: #F8E6CC;
  --gold-100: #F0CB97;
  --gold-300: #E5A85F;
  --gold-400: #D6924A;
  --gold-500: #C27A2A;
  --gold-600: #9A5C18;
  --gold-700: #6E4010;
}

[data-gold="champagne"] {
  --gold-50: #F5EFE0;
  --gold-100: #E5D9B5;
  --gold-300: #D4C188;
  --gold-400: #C2AC6E;
  --gold-500: #A89058;
  --gold-600: #826E3E;
  --gold-700: #5A4B26;
}

/* ============== RESET ============== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ============== TYPOGRAPHY ============== */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.02;
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 500;
}

.label-mono {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.body-text {
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1.55;
  color: var(--text-primary);
  font-weight: 400;
  text-wrap: pretty;
}

.body-text-secondary {
  color: var(--text-secondary);
}

/* Sans alternative */
[data-typography="sans"] {
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Geist", "Söhne", -apple-system, system-ui, sans-serif;
}
[data-typography="sans"] .body-text {
  font-size: 19px;
  line-height: 1.6;
}

/* ============== LAYOUT ============== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

@media (max-width: 720px) {
  section { padding: 80px 0; }
  .container { padding: 0 22px; }
}

/* ============== BACKGROUND TEXTURES ============== */
.dot-bg {
  background-image: radial-gradient(circle, rgba(200, 151, 58, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* Beams effect */
.beams {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.beam {
  position: absolute;
  background: linear-gradient(180deg, transparent 0%, rgba(232, 184, 75, 0.18) 50%, transparent 100%);
  width: 1px;
  height: 100%;
  top: 0;
  filter: blur(0.5px);
  animation: beam-fall 8s ease-in-out infinite;
}
@keyframes beam-fall {
  0%, 100% { transform: translateY(-100%); opacity: 0; }
  50% { transform: translateY(0%); opacity: 1; }
}

/* Aurora */
.aurora {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at 30% 20%, rgba(200, 151, 58, 0.18), transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(232, 184, 75, 0.10), transparent 50%);
  filter: blur(60px);
  animation: aurora-drift 20s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes aurora-drift {
  from { transform: translate(0, 0) rotate(0deg); }
  to { transform: translate(40px, -30px) rotate(2deg); }
}

/* Spotlight cursor effect */
.spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 50%),
    rgba(200, 151, 58, 0.10),
    transparent 40%
  );
  z-index: 1;
}

/* Density toggle: low fades the heavy stuff */
[data-density="low"] .beams,
[data-density="low"] .aurora,
[data-density="low"] .grain { display: none; }
[data-density="low"] .dot-bg { opacity: 0.4; }
[data-density="low"] .moving-border::before { animation-duration: 0s; opacity: 0.5; }

[data-density="med"] .beams .beam:nth-child(odd) { display: none; }
[data-density="med"] .aurora { opacity: 0.5; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(180deg, var(--gold-400) 0%, var(--gold-500) 50%, var(--gold-600) 100%);
  color: #0a0a0a;
  font-weight: 700;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 -1px 0 rgba(0, 0, 0, 0.4) inset,
    0 8px 24px -8px rgba(200, 151, 58, 0.6),
    var(--gold-glow);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 -1px 0 rgba(0, 0, 0, 0.4) inset,
    0 12px 32px -8px rgba(232, 184, 75, 0.8),
    var(--gold-glow-strong);
}

.btn-large {
  padding: 22px 40px;
  font-size: 15px;
}

.btn-huge {
  padding: 28px 56px;
  font-size: 17px;
  letter-spacing: 0.18em;
}

.btn-ghost {
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.02);
}
.btn-ghost:hover {
  border-color: var(--gold-500);
  color: var(--gold-300);
}

/* Moving border */
.moving-border {
  position: relative;
  background: var(--bg);
  border-radius: 2px;
  padding: 2px;
  display: inline-block;
}
.moving-border::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 2px;
  background: conic-gradient(
    from var(--angle, 0deg),
    transparent 0%,
    var(--gold-300) 10%,
    var(--gold-500) 20%,
    transparent 30%,
    transparent 100%
  );
  animation: moving-border-rotate 4s linear infinite;
  z-index: -1;
}
@keyframes moving-border-rotate {
  to { --angle: 360deg; }
}
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

/* ============== UTIL ============== */
.gold { color: var(--gold-500); }
.gold-light { color: var(--gold-300); }
.muted { color: var(--text-secondary); }
.tertiary { color: var(--text-tertiary); }

.gold-text-grad {
  background: linear-gradient(180deg, var(--gold-300) 0%, var(--gold-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.divider-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  margin: 40px 0;
}

.divider-line {
  height: 1px;
  background: var(--border);
  width: 100%;
}

/* Strikethrough price */
.price-strike {
  text-decoration: line-through;
  text-decoration-color: var(--danger);
  text-decoration-thickness: 2px;
  color: var(--text-tertiary);
}

/* ============== HERO ============== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

[data-hero-layout="centered"] .hero-grid {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  gap: 60px;
}
[data-hero-layout="centered"] .hero-book-wrap {
  order: -1;
  display: flex;
  justify-content: center;
}
[data-hero-layout="centered"] .hero-cta-row {
  justify-content: center;
}
[data-hero-layout="centered"] .hero-meta {
  justify-content: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .hero-book-wrap { order: -1; }
}

.hero-eyebrow-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
}
.hero-eyebrow-row .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 12px var(--gold-500);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}
.hero-headline .line { display: block; }
.hero-headline em {
  font-style: italic;
  color: var(--gold-300);
  font-weight: 400;
}

.hero-sub {
  font-size: 21px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 44px;
  text-wrap: pretty;
}
[data-hero-layout="centered"] .hero-sub { margin-left: auto; margin-right: auto; }

.hero-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.hero-meta .check { color: var(--gold-500); }

/* Book mockup */
.hero-book-wrap {
  position: relative;
  perspective: 1800px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-3d {
  position: relative;
  width: 340px;
  height: 510px;
  transform-style: preserve-3d;
  transform: rotateY(-22deg) rotateX(4deg);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 60px 80px rgba(0, 0, 0, 0.6));
}
.book-3d:hover {
  transform: rotateY(-12deg) rotateX(2deg);
}

.book-front {
  position: absolute;
  inset: 0;
  background-image: url("assets/livro-codigo-decisao.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 2px 4px 4px 2px;
  box-shadow:
    inset -3px 0 8px rgba(0, 0, 0, 0.4),
    0 0 60px -10px rgba(200, 151, 58, 0.4);
  transform: translateZ(20px);
}

.book-spine {
  position: absolute;
  width: 40px;
  height: 100%;
  left: -20px;
  top: 0;
  transform: rotateY(-90deg) translateZ(20px);
  transform-origin: right;
  background:
    linear-gradient(180deg,
      rgba(20, 15, 10, 1) 0%,
      rgba(40, 30, 20, 1) 50%,
      rgba(20, 15, 10, 1) 100%);
  border-left: 1px solid rgba(200, 151, 58, 0.3);
}

.book-back {
  position: absolute;
  inset: 0;
  background: #0d0a07;
  transform: translateZ(-20px);
  border-radius: 2px;
}

.book-edge-top {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(180deg, #f0e8d0 0%, #d4c8a0 100%);
  transform: rotateX(90deg) translateZ(20px);
  transform-origin: top;
}

/* Glow under book */
.book-3d::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -20%;
  right: -20%;
  height: 80px;
  background: radial-gradient(ellipse at center, rgba(200, 151, 58, 0.5) 0%, transparent 70%);
  filter: blur(20px);
  z-index: -1;
  animation: book-glow 4s ease-in-out infinite alternate;
}
@keyframes book-glow {
  from { opacity: 0.4; transform: scale(0.9); }
  to { opacity: 0.7; transform: scale(1.05); }
}

/* Lançamento seal */
.launch-seal {
  position: absolute;
  top: -40px;
  right: -20px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, var(--gold-300) 0%, var(--gold-600) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a0a0a;
  font-weight: 700;
  line-height: 1.2;
  transform: rotate(-12deg);
  box-shadow: 0 12px 32px -4px rgba(200, 151, 58, 0.6);
  animation: seal-spin 20s linear infinite;
  z-index: 3;
}
.launch-seal-text {
  position: absolute;
  inset: 0;
  animation: seal-text-counter 20s linear infinite;
}
@keyframes seal-spin {
  to { transform: rotate(348deg); }
}
@keyframes seal-text-counter {
  to { transform: rotate(-360deg); }
}
.launch-seal strong {
  font-size: 16px;
  display: block;
  margin: 2px 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* ============== PROVA SOCIAL ============== */
.proof {
  background: var(--surface);
  padding: 70px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-anchor {
  text-align: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.proof-anchor strong { color: var(--gold-300); font-style: normal; }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
}
@media (max-width: 720px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
}
.proof-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.proof-item:last-child { border-right: none; }
@media (max-width: 720px) {
  .proof-item:nth-child(2) { border-right: none; }
  .proof-item:nth-child(1), .proof-item:nth-child(2) { border-bottom: 1px solid var(--border); }
}
.proof-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  color: var(--gold-300);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.proof-num small {
  font-size: 24px;
  color: var(--gold-500);
}
.proof-label {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ============== SECTION HEADERS ============== */
.section-head {
  margin-bottom: 64px;
  max-width: 920px;
}
.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head .eyebrow { display: block; margin-bottom: 18px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-weight: 500;
}
.section-head h2 em {
  font-style: italic;
  color: var(--gold-300);
}
.section-head p {
  margin-top: 24px;
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.55;
  text-wrap: pretty;
}

/* ============== DOR (PAIN) ============== */
.pain-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .pain-body { grid-template-columns: 1fr; gap: 50px; }
}

.pain-prose p {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.45;
  margin-bottom: 24px;
  color: var(--text-primary);
  font-weight: 400;
  text-wrap: pretty;
}
.pain-prose p.muted-line { color: var(--text-secondary); font-size: 22px; }
.pain-prose .punch {
  color: var(--gold-300);
  font-weight: 600;
  font-style: italic;
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.pain-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.pain-item .x {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(138, 58, 58, 0.4);
  color: #b85555;
  font-family: var(--font-ui);
  font-size: 14px;
  border-radius: 2px;
  margin-top: 2px;
}
.pain-item p {
  font-size: 18px;
  color: var(--text-primary);
  line-height: 1.5;
}

.pain-transition {
  margin-top: 80px;
  padding: 50px 40px;
  text-align: center;
  border-top: 1px solid var(--gold-700);
  border-bottom: 1px solid var(--gold-700);
  position: relative;
}
.pain-transition::before, .pain-transition::after {
  content: "✦";
  position: absolute;
  color: var(--gold-500);
  font-size: 16px;
  background: var(--bg);
  padding: 0 12px;
}
.pain-transition::before { top: -10px; left: 50%; transform: translateX(-50%); }
.pain-transition::after { bottom: -10px; left: 50%; transform: translateX(-50%); }

.pain-transition p {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.4;
  font-style: italic;
  color: var(--text-primary);
}
.pain-transition p strong {
  display: block;
  margin-top: 12px;
  color: var(--gold-300);
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
}

/* ============== AUTORIDADE ============== */
.authority {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.authority-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .authority-grid { grid-template-columns: 1fr; gap: 50px; }
}

.lucienne-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  background: var(--surface-2);
  cursor: pointer;
}
.lucienne-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.5s ease, transform 0.8s ease;
}
.lucienne-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 151, 58, 0.18) 0%, transparent 50%);
  mix-blend-mode: overlay;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.lucienne-photo:hover img {
  filter: grayscale(0.4) contrast(1);
  transform: scale(1.03);
}
.lucienne-photo .photo-frame {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(200, 151, 58, 0.3);
  pointer-events: none;
}
.lucienne-photo .photo-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-300);
  background: rgba(10, 10, 10, 0.8);
  padding: 8px 12px;
  border: 1px solid var(--gold-700);
  z-index: 2;
}

.authority-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  font-weight: 500;
}
.authority-text h2 em { font-style: italic; color: var(--gold-300); }

.authority-text p {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 22px;
  text-wrap: pretty;
}
.authority-text p strong {
  color: var(--gold-300);
  font-weight: 500;
}

.credentials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.credential {
  padding: 12px 18px;
  border: 1px solid var(--border-strong);
  background: rgba(200, 151, 58, 0.04);
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  overflow: hidden;
}
.credential strong { color: var(--gold-300); margin-right: 6px; font-weight: 600; }
.credential::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 184, 75, 0.15), transparent);
  animation: shine 3s ease-in-out infinite;
}
@keyframes shine {
  to { left: 100%; }
}

/* ============== MECANISMO — 5 DÍGITOS ============== */
.mechanism {
  background: var(--surface);
  position: relative;
}
.mechanism .dot-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200, 151, 58, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.mech-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  line-height: 1.4;
  color: var(--text-primary);
  text-align: center;
  margin: 0 auto 80px;
  max-width: 780px;
  text-wrap: pretty;
}
.mech-quote strong { color: var(--gold-300); font-style: normal; }

/* Bento grid (default) */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr; }
  .bento-card { grid-column: auto !important; grid-row: auto !important; }
}
.bento-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.3s ease;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  cursor: default;
}
.bento-card:hover {
  border-color: var(--gold-600);
  transform: translateY(-2px);
}
.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    400px circle at var(--mx, 50%) var(--my, 50%),
    rgba(200, 151, 58, 0.12),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.bento-card:hover::before { opacity: 1; }

.bento-1 { grid-column: span 3; grid-row: span 2; min-height: 380px; }
.bento-2 { grid-column: span 3; }
.bento-3 { grid-column: span 3; }
.bento-4 { grid-column: span 2; }
.bento-5 { grid-column: span 4; }

.bento-num {
  font-family: var(--font-display);
  font-size: 110px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--gold-500);
  background: linear-gradient(180deg, var(--gold-300) 0%, var(--gold-700) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.bento-1 .bento-num { font-size: 180px; }

.bento-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.bento-1 .bento-name { font-size: 36px; }

.bento-desc {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
  flex: 1;
}

.bento-card .corner {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Vertical list variant */
[data-mech="list"] .bento { display: none; }
[data-mech="list"] .mech-list { display: flex; }

.mech-list { display: none; flex-direction: column; max-width: 880px; margin: 0 auto; }
.mech-list-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.mech-list-item:first-child { border-top: 1px solid var(--border); }
.mech-list-item .num {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: var(--gold-500);
  background: linear-gradient(180deg, var(--gold-300) 0%, var(--gold-700) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}
.mech-list-item h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.mech-list-item p { font-size: 17px; color: var(--text-secondary); line-height: 1.55; }
@media (max-width: 720px) {
  .mech-list-item { grid-template-columns: 1fr; gap: 12px; }
  .mech-list-item .num { font-size: 56px; }
}

/* Circular variant */
[data-mech="circular"] .bento { display: none; }
[data-mech="circular"] .mech-circular { display: block; }

.mech-circular {
  display: none;
  position: relative;
  width: min(720px, 100%);
  margin: 0 auto;
  aspect-ratio: 1;
}
.mech-ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
}
.mech-ring-inner {
  position: absolute;
  inset: 18%;
  border: 1px solid var(--gold-700);
  border-radius: 50%;
}
.mech-center {
  position: absolute;
  inset: 30%;
  background: var(--surface-2);
  border: 1px solid var(--gold-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 24px;
}
.mech-center .label {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 8px;
}
.mech-center h3 {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
  color: var(--text-primary);
}
.mech-node {
  position: absolute;
  width: 180px;
  text-align: center;
  transform: translate(-50%, -50%);
}
.mech-node .num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--gold-300);
  margin-bottom: 8px;
}
.mech-node h4 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 6px;
}
.mech-node p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}
@media (max-width: 720px) {
  [data-mech="circular"] .mech-circular { display: none; }
  [data-mech="circular"] .mech-list { display: flex; }
}

.mech-close {
  margin-top: 80px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-secondary);
}
.mech-close strong { color: var(--gold-300); font-style: normal; }

/* ============== OFERTA ============== */
.offer { position: relative; }
.offer-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  .offer-stack { grid-template-columns: 1fr; }
}

.offer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.offer-card:hover {
  border-color: var(--gold-600);
  transform: translateY(-4px) rotate(-0.3deg);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6), 0 0 40px -10px rgba(200, 151, 58, 0.2);
}
.offer-card.hero-card {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 100%);
}
@media (max-width: 900px) {
  .offer-card.hero-card { grid-column: span 1; }
}

.offer-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: inline-flex;
  width: 56px; height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-700);
  background: rgba(200, 151, 58, 0.06);
  border-radius: 2px;
}
.offer-card .tag {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 10px;
}
.offer-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  font-weight: 500;
}
.offer-card .meta {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}
.offer-card .desc {
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 24px;
  text-wrap: pretty;
}
.offer-card .price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.offer-card .price-row .included {
  color: var(--gold-300);
  font-weight: 600;
}

/* Total box */
.offer-total {
  position: relative;
  margin: 80px auto 40px;
  max-width: 720px;
  padding: 50px 40px;
  text-align: center;
  border: 1px solid var(--gold-600);
  background:
    radial-gradient(ellipse at center, rgba(200, 151, 58, 0.06) 0%, transparent 70%),
    var(--surface);
  position: relative;
}
.offer-total::before, .offer-total::after {
  content: "";
  position: absolute;
  width: 24px; height: 24px;
  border: 1px solid var(--gold-500);
}
.offer-total::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.offer-total::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.offer-total .label {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}
.offer-total .total-strike {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 16px;
}
.offer-total .total-now {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 96px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--gold-300);
  background: linear-gradient(180deg, var(--gold-300) 0%, var(--gold-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.offer-total .total-now small {
  font-size: 32px;
  vertical-align: top;
  margin-right: 4px;
  display: inline-block;
  margin-top: 16px;
}
.offer-total .installments {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 12px;
  letter-spacing: 0.08em;
}

.lucienne-quote {
  text-align: center;
  max-width: 720px;
  margin: 60px auto 50px;
  padding: 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.lucienne-quote p {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.45;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.lucienne-quote .signature {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.cta-block {
  text-align: center;
}
.cta-block .micro {
  margin-top: 20px;
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* ============== TESTIMONIALS ============== */
.testimonials {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

.testi-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.testi-card:hover {
  border-color: var(--gold-700);
  transform: translateY(-4px);
}
.testi-card .quote-mark {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.5;
  color: var(--gold-700);
  margin-bottom: 16px;
}
.testi-card .lines {
  flex: 1;
  margin-bottom: 28px;
}
.testi-card .lines p {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.45;
  color: var(--text-primary);
  margin-bottom: 12px;
  text-wrap: pretty;
}
.testi-card .lines p.before { color: var(--text-tertiary); font-style: italic; }
.testi-card .lines p.turn { color: var(--text-secondary); }
.testi-card .lines p.after { color: var(--gold-300); font-weight: 500; }

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--surface-2));
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: #0a0a0a;
}
.testi-author .info { line-height: 1.3; }
.testi-author .name { font-weight: 500; font-size: 15px; font-family: var(--font-sans); }
.testi-author .ctx {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

/* ============== GARANTIA ============== */
.guarantee {
  position: relative;
}
.guarantee-grid {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .guarantee-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
}

.guarantee-seal {
  width: 280px;
  height: 280px;
  margin: 0 auto;
  position: relative;
}

.guarantee-text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 28px;
  font-weight: 500;
}
.guarantee-text h2 em { font-style: italic; color: var(--gold-300); }

.guarantee-text p {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.55;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 18px;
  text-wrap: pretty;
}
.guarantee-text p strong { color: var(--gold-300); font-style: normal; font-weight: 500; }

.guarantee-cta-row {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 900px) { .guarantee-cta-row { justify-content: center; } }

/* ============== ESCASSEZ ============== */
.scarcity {
  background: var(--surface);
  border-top: 1px solid var(--gold-700);
  text-align: center;
}
.scarcity h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.scarcity h2 em { font-style: italic; color: var(--gold-300); }

.scarcity-body {
  max-width: 720px;
  margin: 0 auto 50px;
  font-size: 20px;
  line-height: 1.55;
  color: var(--text-secondary);
}
.scarcity-body strong { color: var(--gold-300); display: block; margin-top: 16px; }

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.cd-unit {
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  padding: 24px 28px;
  min-width: 120px;
  position: relative;
}
.cd-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold-300);
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.cd-label {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
@media (max-width: 720px) {
  .cd-unit { min-width: 76px; padding: 16px 12px; }
  .cd-num { font-size: 36px; }
}

/* Vagas */
.vagas {
  max-width: 600px;
  margin: 0 auto 40px;
}
.vagas-bar {
  height: 6px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}
.vagas-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-300));
  width: 93.5%; /* 187/200 */
  box-shadow: 0 0 12px var(--gold-500);
}
.vagas-text {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
}
.vagas-text strong { color: var(--gold-300); }

/* ============== FAQ ============== */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--gold-300); }
.faq-q .icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border: 1px solid var(--gold-600);
  display: grid;
  place-items: center;
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--gold-300);
  transition: transform 0.4s ease, background 0.3s ease;
}
.faq-item.open .faq-q .icon {
  transform: rotate(45deg);
  background: var(--gold-500);
  color: #0a0a0a;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 0 32px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  font-family: var(--font-display);
  max-width: 720px;
  text-wrap: pretty;
}

/* ============== CTA FINAL ============== */
.cta-final {
  background: var(--bg);
  position: relative;
  text-align: center;
  padding: 160px 0 140px;
}
.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  font-weight: 500;
}
.cta-final h2 em { font-style: italic; color: var(--gold-300); }
.cta-final .sub {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 60px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.cta-stack {
  max-width: 480px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.cta-stack-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  color: var(--text-primary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-display);
}
.cta-stack-item .star { color: var(--gold-300); font-size: 14px; }

.cta-final .price-line {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 40px;
  color: var(--text-secondary);
}
.cta-final .price-line .strike { text-decoration: line-through; text-decoration-color: var(--danger); color: var(--text-tertiary); }
.cta-final .price-line strong { color: var(--gold-300); font-weight: 500; }

/* ============== NAVBAR ============== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, border-color 0.4s, padding 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 14px 32px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.nav-logo .accent { color: var(--gold-300); }
.nav-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-micro {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
}
@media (max-width: 720px) {
  .nav-micro { display: none; }
  .navbar { padding: 14px 18px; }
  .navbar.scrolled { padding: 10px 18px; }
}

/* ============== FOOTER ============== */
.footer {
  background: #080808;
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
}
.footer-grid a:hover { color: var(--gold-300); }
.footer-disclaimer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

/* ============== ANIMATIONS ============== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.word-fade {
  display: inline-block;
  opacity: 0;
  filter: blur(4px);
  transform: translateY(8px);
  transition: opacity 0.6s, filter 0.6s, transform 0.6s;
}
.word-fade.in {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .word-fade { opacity: 1; filter: none; transform: none; }
}

/* Hide on demand (tweaks) */
.section-hidden { display: none !important; }

/* Mobile fixed CTA */
.mobile-cta {
  display: none;
}
@media (max-width: 720px) {
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 99;
    justify-content: center;
  }
  .mobile-cta .btn { width: 100%; }
}
