/* ============================================================
   CRACHÁ ATÔMICO — PulsoASAP
   ============================================================ */

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

:root {
  --navy:       #0f2543;
  --navy-light: #1a3a60;
  --navy-dark:  #070f1c;
  --gold:       #c19033;
  --gold-light: #d4a843;
  --white:      #ffffff;
  --gray:       #8892a0;
  --text-dark:  #1a2535;
  --text-mid:   #546e7a;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 50px;
  --t:      0.3s ease;
  --t-slow: 0.72s ease;
}

/* scroll-behavior handled by JS to avoid conflicts with GSAP ScrollTrigger */
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy-dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ── NAV ──────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, border-color 0.4s, transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
#navbar.scrolled {
  background: rgba(7,15,28,0.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(193,144,51,0.15);
}
#navbar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-badge {
  width: 44px; height: 44px; border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900; color: var(--gold); flex-shrink: 0;
}
.logo-text { font-size: 14px; font-weight: 800; color: var(--white); letter-spacing: 0.12em; text-transform: uppercase; }
.logo-text span { color: var(--gold); }
.nav-menu { display: flex; gap: 32px; list-style: none; }
.nav-menu a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 13px; font-weight: 500; transition: color var(--t); letter-spacing: 0.05em; }
.nav-menu a:hover { color: var(--gold); }
.nav-btn {
  background: transparent; border: 1.5px solid rgba(255,255,255,0.4); color: var(--white);
  padding: 10px 24px; border-radius: var(--radius-xl); font-size: 13px; font-weight: 600;
  cursor: pointer; letter-spacing: 0.05em; font-family: 'DM Sans', sans-serif;
  text-decoration: none; transition: background var(--t), border-color var(--t), color var(--t);
}
.nav-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px; background: var(--white);
  border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(7,15,28,0.98); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a { color: rgba(255,255,255,0.8); font-size: 22px; font-weight: 700; text-decoration: none; transition: color var(--t); }
.nav-drawer a:hover { color: var(--gold); }
.drawer-close {
  position: absolute; top: 24px; right: 28px; background: none; border: none;
  cursor: pointer; color: var(--gray); font-size: 32px; line-height: 1; font-family: inherit;
}

/* ── HERO ──────────────────────────────────────────────────── */
@keyframes tickerScroll { to { transform: translateX(-50%); } }
@keyframes ringRot      { to { transform: rotate(360deg); } }

.hero {
  min-height: 92vh;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
  background: var(--navy-dark);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 65%, rgba(26,58,96,0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 82% 28%, rgba(193,144,51,0.04) 0%, transparent 50%);
  pointer-events: none; z-index: 0;
}
.hero-left {
  position: relative; z-index: 1;
  padding: 80px 40px 60px clamp(40px, 18vw, 280px);
  display: flex; flex-direction: column; justify-content: center;
}

/* Badges */
.hero-badges { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-badge {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em;
  padding: 5px 13px; border-radius: 999px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
}
.hero-badge--gold { background: rgba(193,144,51,0.1); border-color: rgba(193,144,51,0.28); color: var(--gold); }

/* Title */
.hero-title {
  font-size: clamp(44px, 5.8vw, 82px); font-weight: 900;
  line-height: 0.93; letter-spacing: -0.03em; color: var(--white);
  text-transform: uppercase; margin-bottom: 16px;
}
.hero-title em { color: var(--gold); font-style: normal; display: block; }

/* Author */
.hero-author { font-size: 13px; color: rgba(255,255,255,0.42); letter-spacing: 0.06em; margin-bottom: 22px; }
.hero-author strong { color: rgba(255,255,255,0.72); font-weight: 600; }

/* Divider */
.hero-divider { width: 40px; height: 2px; background: var(--gold); margin-bottom: 20px; }

/* Tagline */
.hero-tagline { font-size: clamp(13px, 1.3vw, 16px); line-height: 1.7; color: rgba(255,255,255,0.42); max-width: 400px; margin-bottom: 24px; font-style: italic; }

/* Pull-quote */
.hero-quote {
  background: rgba(193,144,51,0.07); border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 15px 20px; margin-bottom: 32px; max-width: 440px;
}
.hero-quote p { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.72); }
.hero-quote strong { color: var(--white); font-weight: 700; }

/* Actions */
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-cta-note { font-size: 11px; color: rgba(255,255,255,0.22); margin-top: 10px; }

/* Meta info row */
.hero-meta-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 11px; color: rgba(255,255,255,0.28); margin-top: 22px; }
.hero-meta-sep { color: rgba(255,255,255,0.1); }
.hero-meta-item { display: flex; align-items: center; gap: 5px; }
.hero-meta-item svg { width: 12px; height: 12px; flex-shrink: 0; color: rgba(193,144,51,0.45); }

/* Right side — book display */
.hero-right {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: flex-start;
  padding: 40px clamp(20px, 8vw, 120px) 40px clamp(20px, 3vw, 40px);
  overflow: hidden;
}
.hero-cover-img { display: block; width: 100%; max-width: none; height: auto; }


/* ── TICKER ────────────────────────────────────────────────── */
.ticker-wrap { background: var(--gold); padding: 13px 0; overflow: hidden; }
.ticker-track { display: flex; align-items: center; animation: tickerScroll 22s linear infinite; white-space: nowrap; }
.tick { display: inline-flex; align-items: center; padding: 0 20px; font-size: 12px; font-weight: 800; color: var(--navy-dark); text-transform: uppercase; letter-spacing: 0.18em; }
.tick-sep { display: inline-flex; align-items: center; color: rgba(7,15,28,0.35); font-size: 14px; line-height: 1; flex-shrink: 0; }

/* ── SHARED ────────────────────────────────────────────────── */
section { padding: 100px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 60px; }

.stag { font-size: 11px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.25em; display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.stag::before { content: ''; display: block; width: 28px; height: 2px; background: var(--gold); flex-shrink: 0; }
.stag--center { justify-content: center; }
.stag--center::before { display: none; }

.stitle { font-size: clamp(30px,4vw,50px); font-weight: 900; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.02; margin-bottom: 20px; }
.stitle em { color: var(--gold); font-style: normal; }
.stitle--center { text-align: center; }
.faq-stitle { color: var(--text-dark); }

.sdesc { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 520px; }
.gold-bar { width: 52px; height: 3px; background: var(--gold); border-radius: 2px; margin: 18px 0; }

.btn-g {
  background: var(--gold); color: var(--navy-dark);
  padding: 16px 38px; border-radius: var(--radius-xl);
  font-size: 14px; font-weight: 800; border: none; cursor: pointer; letter-spacing: 0.06em;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  font-family: 'DM Sans', sans-serif; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase;
}
.btn-g:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 14px 36px rgba(193,144,51,0.35); }
.btn-g--lg { font-size: 16px; padding: 20px 52px; }
.btn-g--center { display: flex; margin: 0 auto; }
.btn-g--full { width: 100%; justify-content: center; }
.btn-g--mb { margin-bottom: 16px; }
.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

.faq-header { text-align: center; max-width: 560px; margin: 0 auto 40px; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--t-slow), transform var(--t-slow); }
.reveal.on { opacity: 1; transform: none; }
.rl { opacity: 0; transform: translateX(-28px); transition: opacity var(--t-slow), transform var(--t-slow); }
.rl.on { opacity: 1; transform: none; }
.rr { opacity: 0; transform: translateX(28px); transition: opacity var(--t-slow), transform var(--t-slow); }
.rr.on { opacity: 1; transform: none; }
.d1 { transition-delay: 0.10s; } .d2 { transition-delay: 0.20s; }
.d3 { transition-delay: 0.30s; } .d4 { transition-delay: 0.40s; }

/* ── IDENTIFICAÇÃO (branca) ─────────────────────────────────── */
.identificacao { background: #fff; position: relative; overflow: hidden; }
.identificacao::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent 100%);
  opacity: 0.35;
  z-index: 1;
}
.identificacao::after {
  content: 'REFLEXÃO';
  position: absolute;
  font-size: clamp(72px, 11vw, 152px);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: rgba(193,144,51,0.045);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  line-height: 1;
}
.id-inner { max-width: 700px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.identificacao .stag { color: var(--gold); justify-content: center; }
.identificacao .stag::before { display: none; }
.id-title { font-size: clamp(22px,2.8vw,40px); font-weight: 900; line-height: 1.12; letter-spacing: -0.015em; color: var(--text-dark); margin-bottom: 24px; }
.id-body { display: flex; flex-direction: column; gap: 14px; }
.id-body p { font-size: 17px; line-height: 1.75; color: var(--text-mid); }
.id-body p:first-child { font-size: 20px; font-style: italic; color: var(--text-dark); font-weight: 500; }

/* ── APRESENTAÇÃO DO LIVRO (escura) ─────────────────────────── */
.apresentacao { background: var(--navy-dark); position: relative; overflow: hidden; }
.apresentacao::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,var(--gold),transparent); z-index: 1; }
.apresentacao::after {
  content: 'ATÔMICO';
  position: absolute;
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.018);
  bottom: -10px;
  right: -20px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.apres-grid { display: grid; grid-template-columns: 480px 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.apres-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.apres-visual::before {
  content: '';
  position: absolute;
  width: 340px; height: 340px;
  background: radial-gradient(ellipse at center, rgba(193,144,51,0.11) 0%, transparent 68%);
  border-radius: 50%;
  filter: blur(44px);
  pointer-events: none;
  z-index: 0;
}
.apres-book-img { display: block; width: 100%; max-width: 480px; height: auto; position: relative; z-index: 1; }
.apres-subtitle { font-size: 15px; font-style: italic; color: var(--gold); margin-bottom: 20px; line-height: 1.5; }
.apres-body { display: flex; flex-direction: column; gap: 16px; }
.apres-body p { font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.6); }
.apres-body strong { color: var(--white); }

/* ── TRANSFORMAÇÃO (branca) ─────────────────────────────────── */
.transformacao { background: #fff; position: relative; }
.transformacao::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent 100%);
  opacity: 0.3;
}
.trans-inner { max-width: 720px; margin: 0 auto; }
.transformacao .stag { color: var(--gold); }
.trans-title { font-size: clamp(20px,2.6vw,38px); font-weight: 900; line-height: 1.12; letter-spacing: -0.015em; color: var(--text-dark); margin-bottom: 24px; }
.trans-body { display: flex; flex-direction: column; gap: 16px; }
.trans-body p { font-size: 16px; line-height: 1.75; color: var(--text-mid); }
.trans-destaque { font-size: 18px; font-weight: 700; font-style: italic; color: var(--navy-dark); border-left: 4px solid var(--gold); padding: 16px 22px; background: rgba(193,144,51,0.06); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-top: 8px; }

/* ── O QUE DESENVOLVE (escura) ──────────────────────────────── */
.desenvolve { background: var(--navy-dark); }
.rev-header { text-align: center; margin-bottom: 36px; }
.desenvolve .stitle { color: var(--white); }
.dev-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.dev-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg); padding: 36px 28px;
  position: relative; overflow: hidden; isolation: isolate;
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.dev-card-bg {
  position: absolute; bottom: -12px; right: -12px;
  width: 150px; height: 150px;
  color: var(--gold);
  opacity: 0.07;
  pointer-events: none;
  z-index: -1;
  transition: opacity var(--t);
}
.dev-card-bg svg { width: 100%; height: 100%; display: block; }
.dev-card:hover .dev-card-bg { opacity: 0.13; }
.dev-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg,var(--gold),var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.dev-card:hover::before { transform: scaleX(1); }
.dev-card:hover { background: rgba(193,144,51,0.05); border-color: rgba(193,144,51,0.2); transform: translateY(-6px); }
.dev-n { font-size: 96px; font-weight: 900; color: rgba(193,144,51,0.065); line-height: 1; position: absolute; top: -4px; right: 12px; letter-spacing: -0.05em; }
.dev-icon { width: 48px; height: 48px; background: rgba(193,144,51,0.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 18px; }
.dev-icon svg { width: 20px; height: 20px; }
.dev-card p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.65); }

/* ── AMOSTRA (escura) ───────────────────────────────────────── */
.amostra { background: var(--navy-dark); text-align: center; position: relative; overflow: hidden; padding: 130px 0; }
.amostra::before { display: none; }
.amostra::after {
  content: '\201C';
  position: absolute;
  font-size: clamp(200px, 28vw, 380px);
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  color: rgba(193,144,51,0.04);
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.amostra-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.amostra .stitle { color: var(--white); }
.amostra-desc { font-size: 18px; line-height: 1.75; color: rgba(255,255,255,0.5); margin-bottom: 48px; }
.amostra-book-icon {
  width: 72px; height: 54px; margin: 0 auto 28px;
  color: var(--gold); opacity: 0.45;
}
.amostra-book-icon svg { width: 100%; height: 100%; display: block; }

/* ── AUTORA (branca com foto) ───────────────────────────────── */
.autora { background: #fff; position: relative; }
.autora::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent 100%);
  opacity: 0.28;
}
.autora-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: center; }
.autora-visual { position: relative; display: flex; justify-content: center; align-items: center; padding: 28px; }
.autora-visual::after {
  content: '';
  position: absolute;
  width: 340px; height: 340px;
  background: radial-gradient(ellipse at center, rgba(193,144,51,0.18) 0%, transparent 68%);
  border-radius: 50%;
  filter: blur(36px);
  pointer-events: none;
  z-index: 0;
}
.autora-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px dashed rgba(193,144,51,0.22); animation: ringRot 14s linear infinite; z-index: 1; }
.autora-photo-wrap { width: 330px; height: 330px; border-radius: 50%; overflow: hidden; border: 2px solid var(--gold); position: relative; z-index: 2; box-shadow: 0 0 80px rgba(193,144,51,0.2), 0 0 0 1px rgba(193,144,51,0.12); background: linear-gradient(135deg,var(--navy-light),var(--navy)); }
.autor-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.autora-tag { position: absolute; bottom: 20px; right: 8px; background: var(--gold); color: var(--navy-dark); padding: 7px 16px; border-radius: var(--radius-xl); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; z-index: 3; }
.autora-name { font-size: clamp(34px,4.5vw,58px); font-weight: 900; text-transform: uppercase; line-height: 0.96; color: var(--text-dark); margin: 12px 0 8px; letter-spacing: -0.02em; }
.autora .stag  { color: var(--gold); }
.autora .gold-bar { background: var(--gold); }
.autora-body { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.autora-body p { font-size: 16px; line-height: 1.8; color: var(--text-mid); }
.autora-body strong { color: var(--text-dark); }
.autora-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { padding: 6px 14px; background: rgba(193,144,51,0.08); border: 1px solid rgba(193,144,51,0.2); border-radius: var(--radius-xl); font-size: 12px; font-weight: 600; color: rgba(139,103,29,0.9); transition: background var(--t), color var(--t); cursor: default; }
.tag:hover { background: rgba(193,144,51,0.15); color: var(--gold); }

/* ── OFERTA INDIVIDUAL (escura) ─────────────────────────────── */
.oferta { background: var(--navy-dark); position: relative; }
.oferta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,var(--gold),transparent); }
.oferta-grid { display: grid; grid-template-columns: 1fr 330px; gap: 64px; align-items: start; }
.oferta-book-visual {
  display: flex; align-items: flex-end; gap: 6px;
  margin-bottom: 36px; height: 76px; position: relative; width: fit-content;
}
.obv-book { border-radius: 2px 3px 3px 2px; flex-shrink: 0; }
.obv-b1 {
  width: 46px; height: 74px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(193,144,51,0.38);
  box-shadow: -3px 0 0 rgba(193,144,51,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
}
.obv-b1::before {
  content: '';
  position: absolute; top: 12px; left: 10px; right: 8px; height: 2px;
  background: var(--gold); opacity: 0.38;
}
.obv-b2 {
  width: 40px; height: 62px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(193,144,51,0.22);
  box-shadow: -3px 0 0 rgba(193,144,51,0.3);
}
.obv-b3 {
  width: 36px; height: 52px;
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(193,144,51,0.13);
  box-shadow: -2px 0 0 rgba(193,144,51,0.18);
}
.obv-shadow {
  position: absolute; bottom: -8px; left: 0; width: 160px; height: 12px;
  background: radial-gradient(ellipse at 40% center, rgba(193,144,51,0.18) 0%, transparent 68%);
  filter: blur(4px);
}
.oferta-intro { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.6); margin-bottom: 30px; max-width: 460px; }
.oferta-beneficios { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.oferta-beneficios li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.55; }
.oferta-beneficios li svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--gold); margin-top: 3px; }
.oferta-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(193,144,51,0.28); border-radius: var(--radius-lg); padding: 34px 30px; position: sticky; top: 88px; box-shadow: 0 0 60px rgba(193,144,51,0.06), inset 0 1px 0 rgba(193,144,51,0.12); }
.oferta-box-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold); margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid rgba(193,144,51,0.15); }
.oferta-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.oferta-price-curr { font-size: 20px; font-weight: 700; color: var(--gold); }
.oferta-price-val { font-size: 52px; font-weight: 900; color: var(--white); line-height: 1; letter-spacing: -0.02em; }
.oferta-price-note { font-size: 12px; color: var(--gray); margin-bottom: 22px; }
.oferta-guarantee { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-sm); font-size: 13px; color: var(--gray); margin-bottom: 16px; }
.oferta-guarantee svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--gold); }
.oferta-event-reminder { padding: 12px 14px; background: rgba(193,144,51,0.06); border: 1px solid rgba(193,144,51,0.15); border-radius: var(--radius-sm); font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.6); }
.oferta-event-reminder strong { display: block; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); margin-bottom: 4px; }

/* ── CORPORATIVO (branca) ───────────────────────────────────── */
.corporativo { background: #fff; position: relative; }
.corporativo::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent 100%);
  opacity: 0.3;
}
.corp-header { max-width: 680px; margin-bottom: 36px; }
.corp-header .stitle { color: var(--text-dark); }
.corp-header .stag  { color: var(--gold); }
.corp-header .sdesc { color: var(--text-mid); }
.corp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.corp-min { font-size: 15px; color: var(--text-mid); margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid rgba(0,0,0,0.08); }
.corp-min strong { color: var(--gold); }
.corp-apps-title { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold); margin-bottom: 14px; }
.corp-apps { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.corp-apps li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-mid); line-height: 1.5; }
.corp-apps li svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.corp-cta-box { background: var(--navy-dark); border: 1px solid rgba(193,144,51,0.2); border-radius: var(--radius-lg); padding: 36px 30px; display: flex; flex-direction: column; gap: 18px; }
.corp-cta-box p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.65); }
.corp-contact { display: flex; flex-direction: column; gap: 8px; }
.corp-contact a { font-size: 13px; color: var(--gray); text-decoration: none; transition: color var(--t); }
.corp-contact a:hover { color: var(--gold); }

/* ── FECHAMENTO (dramático) ─────────────────────────────────── */
.fechamento { background: var(--navy-dark); position: relative; text-align: center; padding: 130px 0; }
.fechamento::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 60%, rgba(26,58,96,0.35), transparent 52%),
    radial-gradient(ellipse at 75% 40%, rgba(26,58,96,0.25), transparent 50%),
    radial-gradient(ellipse at center, rgba(193,144,51,0.08), transparent 62%);
  pointer-events: none;
}
.fech-bg-decor {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 180px; pointer-events: none; z-index: 0;
  color: var(--gold); opacity: 0.1;
}
.fech-bg-decor svg { width: 100%; height: 100%; display: block; }
.fech-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.fech-title { font-size: clamp(30px,4.5vw,60px); font-weight: 900; line-height: 1.05; letter-spacing: -0.025em; color: var(--white); margin-bottom: 22px; }
.fech-title em { color: var(--gold); font-style: normal; }
.fech-sub { font-size: 17px; font-style: italic; color: rgba(255,255,255,0.5); margin-bottom: 20px; line-height: 1.6; }
.fech-text { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.38); max-width: 580px; margin: 0 auto 40px; }

/* ── FAQ (branca) ───────────────────────────────────────────── */
.faq { background: #fff; }
.faq .stitle { color: var(--text-dark); }
.faq .stag   { color: var(--gold); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; border-top: 1px solid rgba(0,0,0,0.08); }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600; color: var(--text-dark);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 0; text-align: left; transition: color var(--t);
}
.faq-q:hover, .faq-q[aria-expanded="true"] { color: var(--navy-dark); }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); transition: transform 0.3s; }
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-a { padding: 0 0 20px; font-size: 15px; line-height: 1.75; color: var(--text-mid); }
.faq-a[hidden] { display: none; }
.faq-a a { color: var(--gold); text-decoration: underline; }
.faq-a a:hover { color: var(--navy-dark); }
.faq-a p + p { margin-top: 10px; }

/* ── STICKY ────────────────────────────────────────────────── */
.sticky {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: rgba(7,15,28,0.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(193,144,51,0.2); padding: 16px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.sticky.show { transform: translateY(0); }
.sticky-info h4 { font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }
.sticky-info p  { font-size: 12px; color: var(--gray); }

/* ── FOOTER ────────────────────────────────────────────────── */
footer { background: #03070e; padding: 70px 0 36px; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.f-brand { font-size: 18px; font-weight: 900; color: var(--white); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.f-brand em { color: var(--gold); font-style: normal; }
.f-p { font-size: 13px; line-height: 1.8; color: var(--gray); max-width: 300px; }
.f-col h5 { font-size: 10px; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: 0.22em; margin-bottom: 18px; }
.f-col-mt { display: block; margin-top: 28px; margin-bottom: 18px; font-size: 10px; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: 0.22em; }
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-col a { font-size: 13px; color: var(--gray); text-decoration: none; transition: color var(--t); }
.f-col a:hover { color: var(--white); }
.footer-bot { border-top: 1px solid rgba(255,255,255,0.04); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; }
.footer-bot p { font-size: 12px; color: rgba(255,255,255,0.25); }
.socials { display: flex; gap: 12px; }
.soc { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background var(--t), border-color var(--t), color var(--t), transform var(--t); font-size: 12px; font-weight: 700; color: var(--gray); text-decoration: none; }
.soc:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); transform: translateY(-3px); }
.footer-contact { display: flex; flex-direction: column; gap: 6px; margin-top: 16px; }
.footer-contact a { font-size: 13px; color: var(--gray); text-decoration: none; transition: color var(--t); }
.footer-contact a:hover { color: var(--gold); }
.footer-event { display: flex; flex-direction: column; gap: 5px; margin-bottom: 24px; }
.footer-event strong { font-size: 13px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; }
.footer-event span { font-size: 13px; color: var(--gray); }

/* ── APOIADORES ─────────────────────────────────────────────── */
.apoiadores { background: #fff; padding: 120px 0; }
.apoiadores .stitle { color: var(--text-dark); }
.apoiadores-desc { font-size: 17px; line-height: 1.7; color: var(--text-mid); max-width: 560px; margin: 18px auto 0; text-align: center; }
.ap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }

.ap-card {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  min-height: 440px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: box-shadow var(--t), border-color var(--t);
}
.ap-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.ap-card--gold:hover { border-color: rgba(193,144,51,0.35); }
.ap-card--navy:hover { border-color: rgba(15,37,67,0.25); }

/* Default state — logo + title */
.ap-default {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px; padding: 40px;
  transition: opacity 0.3s ease;
}
.ap-card:hover .ap-default { opacity: 0; pointer-events: none; }
.ap-logo { width: 240px; height: 240px; display: flex; align-items: center; justify-content: center; }
.ap-logo-img { width: 100%; height: 100%; object-fit: contain; display: block; }
.ap-logo-img--gold { filter: sepia(1) saturate(3) hue-rotate(5deg) brightness(0.85); }
.ap-logo-img--navy { filter: sepia(1) saturate(4) hue-rotate(190deg) brightness(0.55); }
.ap-name { font-size: 16px; font-weight: 800; color: var(--text-dark); text-align: center; letter-spacing: 0.01em; }

/* Hover state — content */
.ap-hover {
  position: absolute; inset: 0;
  padding: 40px 36px 36px;
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex; flex-direction: column; gap: 12px;
}
.ap-card:hover .ap-hover { opacity: 1; }

.ap-watermark {
  position: absolute; right: -16px; bottom: -16px;
  width: 170px; height: 170px; opacity: 0.07; pointer-events: none;
}
.ap-hover--gold .ap-watermark { color: var(--gold); }
.ap-hover--navy .ap-watermark { color: var(--navy); }
.ap-watermark svg { width: 100%; height: 100%; display: block; }

.ap-sponsor-logo { position: relative; z-index: 1; margin-bottom: 4px; }
.ap-sponsor-logo img { height: 40px; width: auto; object-fit: contain; display: block; }
.ap-hover-name { font-size: 17px; font-weight: 800; color: var(--text-dark); position: relative; z-index: 1; }
.ap-hover-desc { font-size: 13px; line-height: 1.72; color: var(--text-mid); flex: 1; position: relative; z-index: 1; }
.ap-benefits { list-style: none; display: flex; flex-direction: column; gap: 7px; position: relative; z-index: 1; }
.ap-benefits li { font-size: 13px; color: var(--text-mid); display: flex; align-items: flex-start; gap: 8px; }
.ap-benefits li::before { content: '✓'; flex-shrink: 0; font-weight: 700; }
.ap-btn--gold .ap-benefits li::before,
.ap-hover--gold .ap-benefits li::before { color: var(--gold); }
.ap-hover--navy .ap-benefits li::before { color: var(--navy); }

.ap-btn {
  display: inline-block; align-self: flex-start;
  padding: 10px 22px; border-radius: 50px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  transition: background var(--t), color var(--t), border-color var(--t);
  position: relative; z-index: 1;
}
.ap-btn--gold { border: 1.5px solid var(--gold); color: var(--gold); background: transparent; }
.ap-btn--gold:hover { background: var(--gold); color: #fff; }
.ap-btn--navy { border: 1.5px solid var(--navy); color: var(--navy); background: transparent; }
.ap-btn--navy:hover { background: var(--navy); color: #fff; }

/* ── DEPOIMENTOS ────────────────────────────────────────────── */
.depoimentos { background: var(--navy-dark); padding: 120px 0; }
.depoimentos .stitle { color: var(--white); }
.dep-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.dep-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 40px 36px 36px;
  display: flex; flex-direction: column; gap: 20px;
  transition: border-color var(--t), background var(--t);
}
.dep-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(193,144,51,0.2); }
.dep-icon {
  font-family: Georgia, serif;
  font-size: 72px; line-height: 0.7;
  color: var(--gold); opacity: 0.35;
  font-weight: 700; user-select: none;
}
.dep-text { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.7); flex: 1; }
.dep-author { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 20px; }
.dep-name { font-size: 14px; font-weight: 700; color: var(--white); }
.dep-role { font-size: 12px; color: var(--gold); margin-top: 3px; letter-spacing: 0.05em; }

/* ── TABLET ≤ 1024px ───────────────────────────────────────── */
@media (max-width: 1024px) {
  #navbar { padding: 18px 40px; }
  .container { padding: 0 40px; }
  .autora-grid { grid-template-columns: 1fr 1.4fr; gap: 48px; }
  .autora-photo-wrap { width: 280px; height: 280px; }
  .autora-visual::after { width: 280px; height: 280px; }
  .apres-grid { grid-template-columns: 280px 1fr; gap: 52px; }
  .apres-book-img { max-width: 320px; }
  .oferta-grid { grid-template-columns: 1fr 290px; gap: 48px; }
  .dev-grid { grid-template-columns: repeat(2,1fr); }
  .corp-grid { gap: 36px; }
}

/* ── MOBILE ≤ 768px ────────────────────────────────────────── */
@media (max-width: 768px) {
  #navbar { padding: 16px 20px; }
  .nav-menu, .nav-btn { display: none; }
  .nav-hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 100px 20px 60px; justify-content: flex-start; }
  .hero-badges { gap: 6px; }
  .hero-title { font-size: clamp(40px, 10vw, 60px); line-height: 0.9; }
  .hero-quote { max-width: 100%; padding: 13px 16px; margin-bottom: 26px; }
  .hero-meta-row { gap: 8px; font-size: 10px; }

  .container { padding: 0 20px; }
  section { padding: 64px 0; }

  .apres-grid { grid-template-columns: 1fr; }
  .apres-visual { display: none; }

  .autora-grid { grid-template-columns: 1fr; gap: 36px; }
  .autora-photo-wrap { width: 220px; height: 220px; }
  .autora-visual { padding: 16px; margin-bottom: 4px; }
  .autora-visual::after { width: 220px; height: 220px; }

  .oferta-grid { grid-template-columns: 1fr; gap: 32px; }
  .oferta-box { position: static; }

  .corp-grid { grid-template-columns: 1fr; gap: 24px; }

  .dev-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  .faq-q { font-size: 15px; padding: 18px 0; }

  .trans-destaque { font-size: 16px; padding: 14px 18px; }

  .oferta-book-visual { margin-bottom: 24px; }
  .obv-b1 { width: 38px; height: 62px; }
  .obv-b2 { width: 34px; height: 52px; }
  .obv-b3 { width: 30px; height: 44px; }

  .fech-bg-decor { height: 120px; opacity: 0.07; }

  .sticky { padding: 14px 20px; flex-direction: column; gap: 10px; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bot { flex-direction: column; gap: 14px; text-align: center; }

  .ap-grid { grid-template-columns: 1fr; }
  .ap-card { min-height: 400px; }
  .dep-grid { grid-template-columns: 1fr; }
}

/* ── EXTRA SMALL ≤ 480px ───────────────────────────────────── */
@media (max-width: 480px) {
  .dev-grid { grid-template-columns: 1fr; }
  .btn-g--lg { font-size: 14px; padding: 16px 30px; }
  .faq-q { font-size: 14px; }
  .corp-cta-box { padding: 24px 20px; }
  .trans-destaque { font-size: 15px; }
  .hero-badges { gap: 5px; }
  .hero-badge { font-size: 9px; padding: 4px 10px; }
}

/* ── REDUCED MOTION ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .rl, .rr { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ── INTRO OVERLAY ─────────────────────────────────────────── */
.intro-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
}
.intro-content { text-align: center; max-width: 1100px; width: 100%; }
.intro-line {
  font-weight: 900; line-height: 1.1; color: var(--white); opacity: 0;
  display: block; text-transform: uppercase; letter-spacing: 0.02em;
  white-space: nowrap;
}
.intro-line em { color: var(--gold); font-style: normal; }
.intro-line-1 { font-size: clamp(10px, 3.4vw, 52px); margin-bottom: 10px; }
.intro-line-2 { font-size: clamp(9px, 3.0vw, 46px); }
.intro-bar { width: 56px; height: 3px; background: var(--gold); margin: 28px auto 0; transform: scaleX(0); transform-origin: center; border-radius: 2px; }


/* ── PRINT ─────────────────────────────────────────────────── */
@media print {
  #navbar, .ticker-wrap, .sticky, .nav-drawer { display: none !important; }
  body { background: #fff; color: #000; }
  section { padding: 40px 0; break-inside: avoid; }
}
