/* =========================================================
   Ezequiel Peruzzo — sistema de design
   Identidade: Grafite & Âmbar. Archivo (grotesca pesada) + Inter.
   Força e execução: grafite quente como base + UM acento âmbar.
   (Os nomes de token --navy/--gold são herdados; valor mudou.)
   ========================================================= */

:root {
  /* Cores — Grafite & Âmbar */
  --navy:    #16130E;   /* grafite quente (base) */
  --navy-2:  #241E15;   /* superfície grafite */
  --gold:    #E0913A;   /* âmbar (acento / CTAs) */
  --gold-lt: #EEA75C;   /* âmbar claro (texto sobre grafite) */
  --sand:    #D8CDBA;
  --paper:   #EFE9DC;   /* bone quente (fundo claro) */
  --ink:     #221C13;   /* grafite-tinta (texto no claro) */
  --line:    #E1D8C7;

  /* Derivados */
  --on-navy:        #F2EEE6;                 /* texto primário sobre grafite */
  --on-navy-soft:   rgba(242,238,230,0.60);  /* texto secundário sobre grafite */
  --on-paper-soft:  rgba(34,28,19,0.66);     /* texto secundário sobre paper */
  --hair-navy:      rgba(224,145,58,0.24);   /* filete âmbar sutil */

  /* Tipografia */
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Layout */
  --maxw: 1120px;
  --gutter: clamp(24px, 6vw, 64px);
  --section-y: clamp(76px, 11vw, 132px);
  --radius: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--on-navy);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Tipografia ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(44px, 6.6vw, 74px); font-weight: 700; line-height: 1.03; }
h2 { font-size: clamp(29px, 4vw, 34px); font-weight: 600; }
h3 { font-size: 22px; font-weight: 600; }

.lead { font-size: clamp(17px, 2.1vw, 19px); max-width: 52ch; }
.gold { color: var(--gold-lt); }
.gold-ink { color: var(--gold); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px; min-width: 0;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}
.chapter {
  display: inline-flex; align-items: center; gap: 14px; min-width: 0;
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 26px;
}
/* (traço decorativo dos rótulos removido a pedido) */

/* ---------- Superfícies ---------- */
.s-navy   { background: var(--navy);   color: var(--on-navy); }
.s-navy-2 { background: var(--navy-2); color: var(--on-navy); }
.s-paper  { background: var(--paper);  color: var(--ink); }
.s-paper h1, .s-paper h2, .s-paper h3 { color: var(--ink); }
.s-paper .lead { color: var(--on-paper-soft); }
.s-navy .lead, .s-navy-2 .lead { color: var(--on-navy-soft); }

/* ---------- Layout ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.divider { height: 1px; background: var(--hair-navy); border: 0; }

/* ---------- Botões / links ---------- */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background .2s ease, transform .1s ease;
}
.btn:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.btn:active { transform: translateY(1px); }

.btn-ghost {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold-lt);
  padding: 16px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-body);
  transition: background .2s ease, color .2s ease;
}
.btn-ghost:hover { background: rgba(224,145,58,0.12); }
.s-paper .btn-ghost { color: var(--navy); }
.s-paper .btn-ghost:hover { background: rgba(224,145,58,0.10); }

.link-underline {
  color: inherit;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  font-weight: 500;
  transition: color .2s ease;
}
.link-underline:hover { color: var(--gold); }

.badge-soon {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--hair-navy);
  border-radius: 999px;
  padding: 4px 12px;
}

/* ---------- Cabeçalho / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(22,19,14,0.90);
  backdrop-filter: blur(10px);
  border-top: 3px solid rgba(224,145,58,0.22);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding-block: 18px; }
.logo { display: inline-flex; align-items: center; }
.logo svg { height: 38px; width: auto; display: block; }
.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--on-navy); }
.brand svg { height: 30px; width: auto; display: block; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--on-navy); letter-spacing: 0.02em; line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { color: var(--on-navy-soft); font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; transition: color .2s ease; }
.nav-links a:hover { color: var(--gold-lt); }
.nav-links .nav-cta { color: var(--navy); background: var(--gold); padding: 11px 20px; border-radius: var(--radius); font-weight: 600; letter-spacing: 0.08em; }
.nav-links .nav-cta:hover { color: var(--navy); background: var(--gold-lt); }
.nav-toggle { display: none; background: none; border: 0; color: var(--on-navy); font-size: 26px; cursor: pointer; line-height: 1; }

/* ---------- Hero (guiado por imagem) ---------- */
.hero { position: relative; overflow: hidden; min-height: clamp(600px, 90vh, 900px); display: flex; align-items: center; }
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero-content { max-width: 560px; padding-block: clamp(40px, 7vw, 72px); }
.hero h1 { max-width: 15ch; margin-top: 26px; }
.hero .lead { margin: 28px 0 44px; max-width: 42ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-figure { position: absolute; top: 0; right: 0; bottom: 0; width: 47%; z-index: 1; border-left: 1px solid rgba(224,145,58,0.35); }
.hero-figure img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%; display: block; }
.hero-figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(22,19,14,0.55) 28%, rgba(22,19,14,0.10) 68%, rgba(22,19,14,0.30) 100%);
}
@media (max-width: 900px) {
  .hero { display: block; min-height: 0; }
  .hero-figure { position: relative; width: 100%; height: 58vh; max-height: 460px; border-left: 0; border-bottom: 1px solid rgba(224,145,58,0.35); }
  .hero-figure img { object-position: 50% 12%; }
  .hero-figure::after { background: linear-gradient(180deg, rgba(22,19,14,0.20) 0%, rgba(22,19,14,0.04) 42%, var(--navy) 100%); }
  .hero-content { max-width: none; padding-block: 30px 8px; }
}

/* ---------- Faixa de credibilidade ---------- */
.credibility { padding-bottom: clamp(56px, 9vw, 96px); }
.cred-list { display: flex; flex-wrap: wrap; gap: 14px 26px; color: var(--on-navy-soft); font-size: 14.5px; align-items: center; }
.cred-list .sep { color: var(--gold); }

/* ---------- Sobre ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 0.82fr; gap: clamp(30px, 5vw, 68px); align-items: center; }
.about-photo {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--line);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; display: block; }
.about-photo::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(224,145,58,0.28); border-radius: var(--radius); pointer-events: none; }
.facts { list-style: none; margin-top: 26px; display: grid; gap: 12px; }
.facts li { display: flex; gap: 12px; align-items: baseline; font-size: 15.5px; }
.facts i { color: var(--gold); font-size: 15px; position: relative; top: 1px; }
.pull { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: clamp(21px,2.6vw,26px); color: var(--ink); margin-top: 30px; line-height: 1.3; max-width: 22ch; }
.path { margin-top: 28px; font-family: var(--font-display); font-weight: 800; font-size: clamp(17px, 2.2vw, 21px); line-height: 1.6; color: var(--ink); max-width: 36ch; }
.path .arw { color: var(--gold); font-weight: 400; margin: 0 3px; }
.path b { display: block; margin-top: 12px; color: var(--ink); }

/* ---------- Grades de cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 44px; }

.card {
  border-radius: var(--radius); padding: 32px 30px;
  display: flex; flex-direction: column;
  border: 1px solid var(--hair-navy);
  background: var(--navy-2);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold); }
.s-paper .card:hover { box-shadow: 0 14px 34px rgba(22,19,14,0.10); }
.card .t-num { font-family: var(--font-display); color: var(--gold-lt); font-size: 30px; font-weight: 700; line-height: 1; }
.card h3 { margin: 14px 0 8px; color: var(--on-navy); }
.card p { color: var(--on-navy-soft); font-size: 15px; line-height: 1.65; flex: 1; }
.card .link-underline { margin-top: 22px; align-self: flex-start; }

/* cards sobre paper */
.s-paper .card { background: #fff; border: 1px solid var(--line); }
.s-paper .card h3 { color: var(--ink); }
.s-paper .card p { color: var(--on-paper-soft); }

/* card em destaque (oferta principal) */
.card--feature,
.s-paper .card--feature { background: var(--navy); border: 1px solid var(--gold); }
.card--feature h3, .s-paper .card--feature h3 { color: var(--on-navy); }
.card--feature p, .s-paper .card--feature p { color: var(--on-navy-soft); }
.card-tag { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }

/* ---------- Estado "em breve" ---------- */
.soon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.soon-item {
  border: 1px dashed var(--hair-navy); border-radius: var(--radius);
  aspect-ratio: 16/10; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: var(--on-navy-soft); text-align: center; padding: 18px;
}
.soon-item i { font-size: 26px; color: var(--gold); }
.soon-item span { font-size: 13px; }

/* ---------- Captura ---------- */
.capture { padding-block: clamp(72px, 11vw, 124px); }
.form-inline { display: flex; gap: 10px; flex-wrap: wrap; max-width: 520px; margin-top: 30px; }
.form-inline input[type="email"] {
  flex: 1; min-width: 230px;
  background: rgba(243,238,228,0.06); border: 1px solid var(--hair-navy); border-radius: var(--radius);
  color: var(--on-navy); font-family: var(--font-body); font-size: 15px; padding: 15px 16px;
}
.form-inline input::placeholder { color: var(--on-navy-soft); }
.form-inline input:focus { outline: none; border-color: var(--gold); }
.form-note { color: var(--on-navy-soft); font-size: 13px; margin-top: 14px; }
.form-success { color: var(--gold-lt); font-size: 16px; margin-top: 18px; display: none; }

/* ---------- Rodapé ---------- */
.site-footer { background: #100D07; border-top: 1px solid var(--hair-navy); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; padding-block: 34px; flex-wrap: wrap; gap: 16px; }
.socials { display: flex; gap: 18px; color: var(--on-navy-soft); font-size: 21px; }
.socials a:hover { color: var(--gold); }
.footer-legal { color: rgba(243,238,228,0.4); font-size: 12px; width: 100%; padding-bottom: 30px; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center; font-size: 28px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.4);
  transition: transform .15s ease, background .2s ease;
}
.wa-float:hover { transform: scale(1.06); background: var(--gold-lt); }

/* ---------- Reveal ---------- */
.reveal { transition: opacity .8s cubic-bezier(.16,.7,.3,1), transform .8s cubic-bezier(.16,.7,.3,1); }
.has-js .reveal { opacity: 0; transform: translateY(24px); }
.reveal.in { opacity: 1; transform: none; }
/* cascata dentro das grades */
.grid-3 .reveal:nth-child(2), .grid-2 .reveal:nth-child(2), .stat-grid .reveal:nth-child(2), .soon-grid .reveal:nth-child(2) { transition-delay: .09s; }
.grid-3 .reveal:nth-child(3), .stat-grid .reveal:nth-child(3), .soon-grid .reveal:nth-child(3) { transition-delay: .18s; }
.stat-grid .reveal:nth-child(4) { transition-delay: .27s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 820px) {
  .grid-3, .soon-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 300px; order: -1; }
}
@media (max-width: 760px) {
  body { font-size: 17px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--navy); border-bottom: 1px solid var(--hair-navy);
    padding: 22px var(--gutter);
  }
}

/* =========================================================
   Componentes adicionais (v2 de layout)
   ========================================================= */

/* ---------- Manifesto (frase-statement) ---------- */
.manifesto { padding-block: clamp(72px, 10vw, 120px); }
.manifesto .quote {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(30px, 5vw, 54px); line-height: 1.14; letter-spacing: -0.01em;
  max-width: 20ch; margin-top: 26px;
}
.manifesto .quote-attr { margin-top: 28px; font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-navy-soft); }
.manifesto .quote-attr b { color: var(--gold-lt); font-weight: 600; }

/* faixa cinematográfica (imagem full-bleed) */
.image-band { position: relative; overflow: hidden; background: var(--navy); }
.image-band .band-img { position: absolute; inset: 0; background-image: url("../assets/img/band.jpg"); background-size: cover; background-position: 60% 28%; }
.image-band .band-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(16,13,8,0.95) 0%, rgba(16,13,8,0.82) 42%, rgba(22,19,14,0.55) 100%);
}
.image-band .container { position: relative; z-index: 1; }

/* ---------- Números (prova) ---------- */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.stat { padding-top: 4px; }
.stat .stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(48px, 6.2vw, 74px); line-height: 1; color: var(--ink); letter-spacing: -0.02em; }
.s-navy .stat .stat-num, .s-navy-2 .stat .stat-num { color: var(--on-navy); }
.stat .stat-num .u { color: var(--gold); }
.stat .stat-label { margin-top: 12px; font-size: 14px; line-height: 1.5; color: var(--on-paper-soft); }
.s-navy .stat .stat-label, .s-navy-2 .stat .stat-label { color: var(--on-navy-soft); }
.stat-note { margin-top: 40px; font-size: 14px; color: var(--on-navy-soft); }
.s-paper .stat-note { color: var(--on-paper-soft); }

/* ---------- Livro (feature) ---------- */
.book-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(36px, 6vw, 84px); align-items: center; margin-top: 8px; }
.book-cover {
  position: relative; width: min(340px, 82vw); justify-self: center;
  border-radius: 3px; overflow: hidden;
  box-shadow: 0 26px 60px rgba(0,0,0,0.45);
}
.book-cover img { width: 100%; height: auto; display: block; }
.book-pull { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: clamp(20px, 2.6vw, 26px); line-height: 1.35; color: var(--on-navy); margin: 20px 0; max-width: 28ch; }

/* ---------- Captura com capa ---------- */
.capture-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(36px, 6vw, 76px); align-items: center; }
.lead-cover {
  position: relative; width: min(260px, 70vw); aspect-ratio: 3/4.2; justify-self: center;
  background: linear-gradient(135deg, #2a2318, #1b1710);
  border: 1px solid var(--gold); border-radius: 4px; padding: 28px 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 22px 50px rgba(0,0,0,0.45);
}
.lead-cover .lc-top { font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-lt); font-weight: 600; }
.lead-cover .lc-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 3.4vw, 34px); line-height: 1.06; color: var(--on-navy); }
.lead-cover .lc-title .u { color: var(--gold); }
.lead-cover .lc-foot { font-size: 12px; color: var(--on-navy-soft); }

.s-paper .form-inline input[type="email"] { background: #fff; border-color: var(--line); color: var(--ink); }
.s-paper .form-inline input::placeholder { color: rgba(28,42,56,0.5); }
.s-paper .form-note { color: var(--on-paper-soft); }
.s-paper .form-success { color: var(--gold); }

@media (max-width: 820px) {
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .book-grid { grid-template-columns: 1fr; gap: 40px; }
  .book-cover { order: -1; }
  .capture-grid { grid-template-columns: 1fr; gap: 40px; }
  .capture-grid .lead-cover { order: -1; }
}
@media (max-width: 460px) {
  .stat-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Camada de brilho (motion & textura)
   ========================================================= */

/* Grão de filme (textura sutil sobre tudo) */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 200; pointer-events: none;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Zoom cinematográfico (Ken Burns) nas fotos */
@keyframes kenburns { from { transform: scale(1.001); } to { transform: scale(1.07); } }
.hero-figure img { transform-origin: 60% 40%; animation: kenburns 20s ease-out both; }
.image-band .band-img { animation: kenburns 24s ease-out both; }

/* Header muda ao rolar */
.site-header { transition: background .3s ease, box-shadow .3s ease; }
.site-header .nav { transition: padding .3s ease; }
.site-header.scrolled { background: rgba(16,13,8,0.97); box-shadow: 0 8px 30px rgba(0,0,0,0.28); }
.site-header.scrolled .nav { padding-block: 12px; }

/* Botão com brilho passando no hover */
.btn { position: relative; overflow: hidden; }
.btn > span, .btn { z-index: 0; }
.btn::after {
  content: ""; position: absolute; top: 0; left: 0; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: translateX(-180%) skewX(-18deg); transition: transform .6s ease;
}
.btn:hover::after { transform: translateX(320%) skewX(-18deg); }

/* Hover mais rico nos cards escuros */
.s-navy .card:hover, .s-navy-2 .card:hover {
  box-shadow: 0 20px 44px rgba(0,0,0,0.36); border-color: var(--gold);
}

/* Sublinhado animado na navegação */
.nav-links a:not(.nav-cta) { position: relative; }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -7px; height: 1px; width: 0;
  background: var(--gold); transition: width .3s ease;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a:not(.nav-cta).active { color: var(--gold-lt); }
.nav-links a:not(.nav-cta).active::after { width: 100%; }

/* Zoom suave em imagens no hover */
.about-photo img, .image-band .band-img { transition: transform .8s cubic-bezier(.2,.7,.3,1); }
.about-photo:hover img { transform: scale(1.05); }

/* Cue de rolagem no hero */
.scroll-cue {
  position: absolute; left: var(--gutter); bottom: 30px; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--on-navy-soft); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-cue i { color: var(--gold); font-size: 18px; animation: bob 1.9s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@media (max-width: 900px) { .scroll-cue { display: none; } }

/* Números: leve destaque enquanto conta */
.stat-num .count { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  .hero-figure img, .image-band .band-img { animation: none; transform: none; }
  .scroll-cue i { animation: none; }
  .btn::after { display: none; }
}

/* ---------- Vídeos (YouTube, embed leve) ---------- */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.video-card { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hair-navy); aspect-ratio: 16/9; cursor: pointer; background: #1b1710; }
.video-card .thumb { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.video-card:hover .thumb { transform: scale(1.05); }
.video-card .play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(180deg, rgba(22,19,14,0.05), rgba(22,19,14,0.55)); }
.video-card .play i { width: 58px; height: 58px; border-radius: 50%; background: var(--gold); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 26px; transition: transform .2s ease; }
.video-card:hover .play i { transform: scale(1.08); }
.video-card .v-title { position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 1; color: var(--on-navy); font-size: 14px; font-weight: 500; text-shadow: 0 1px 4px rgba(0,0,0,0.7); }
.video-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 820px) { .video-grid { grid-template-columns: 1fr; } }

/* ---------- Blog ---------- */
.blog-head { padding-top: clamp(56px, 8vw, 96px); padding-bottom: clamp(36px, 5vw, 56px); }
.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; color: var(--ink); transition: transform .28s ease, box-shadow .28s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(22,19,14,0.12); }
.post-card-cover { aspect-ratio: 16/9; overflow: hidden; }
.post-card-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.post-card:hover .post-card-cover img { transform: scale(1.05); }
.post-card-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.post-meta { font-family: var(--font-body); font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.post-card-body h3 { margin: 12px 0 8px; color: var(--ink); font-size: 22px; }
.post-card-body p { color: var(--on-paper-soft); font-size: 15px; line-height: 1.6; flex: 1; }
.post-more { margin-top: 18px; font-weight: 600; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--navy); display: inline-flex; align-items: center; gap: 8px; }
.post-more i { color: var(--gold); transition: transform .2s ease; }
.post-card:hover .post-more i { transform: translateX(4px); }

/* Artigo */
.article { max-width: 760px; margin: 0 auto; }
.article h1 { font-size: clamp(32px, 5vw, 50px); margin: 14px 0 0; }
.article-cover { margin: 34px 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.article-cover img { width: 100%; display: block; }
.article-body { font-size: 18px; line-height: 1.8; color: var(--ink); }
.article-body > * + * { margin-top: 1.3em; }
.article-body h2 { font-size: clamp(24px, 3.4vw, 30px); margin-top: 1.7em; }
.article-body h3 { font-size: 21px; margin-top: 1.4em; }
.article-body a { color: var(--navy); border-bottom: 1px solid var(--gold); }
.article-body strong { font-weight: 600; }
.article-body ul, .article-body ol { padding-left: 1.3em; }
.article-body li { margin-top: .5em; }
.article-body blockquote { border-left: 3px solid var(--gold); padding: 2px 0 2px 22px; margin-left: 0; font-family: var(--font-display); font-style: italic; font-size: clamp(21px,2.6vw,26px); line-height: 1.35; color: var(--navy); }
.article-body img { border-radius: var(--radius); }
.article-body code { background: #ece7db; padding: 2px 6px; border-radius: 4px; font-size: .9em; }
.article-back { margin-top: 44px; display: inline-block; }

/* FAQ do artigo (SEO + IA) */
.article-faq { margin-top: 56px; }
.article-faq h2 { font-size: clamp(24px, 3.4vw, 30px); margin-bottom: 8px; }
.faq-item { border-top: 1px solid var(--line); padding: 22px 0; }
.faq-item h3 { font-family: var(--font-body); font-weight: 600; font-size: 18px; color: var(--ink); margin-bottom: 8px; }
.faq-item p { color: var(--on-paper-soft); font-size: 16px; line-height: 1.7; }

/* CTA dentro do artigo */
.article-cta { margin-top: 56px; padding: clamp(28px, 4vw, 40px); border-radius: var(--radius); background: var(--navy); }
.article-cta .eyebrow { color: var(--gold); }
.article-cta h2 { color: var(--on-navy); font-size: 26px; margin: 12px 0 10px; }
.article-cta p { color: var(--on-navy-soft); margin-bottom: 22px; }
.article-cta strong { color: var(--on-navy); font-weight: 600; }

/* Leia também */
.article-related { margin-top: 52px; }
.article-related h2 { font-size: 22px; margin-bottom: 8px; }
.article-related ul { list-style: none; }
.article-related li { border-top: 1px solid var(--line); }
.article-related a { display: block; padding: 16px 0; color: var(--ink); font-family: var(--font-display); font-weight: 600; font-size: 20px; transition: color .2s ease; }
.article-related a:hover { color: var(--gold); }

@media (max-width: 720px) { .post-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Camada de brilho 2 (movimento com intenção)
   ========================================================= */

/* Barra de progresso de leitura */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--gold); z-index: 300; }

/* Hero: revelação do título por linhas (máscara) */
.hero-title .line { display: block; overflow: hidden; padding: 0.06em 0.02em; margin: -0.06em -0.02em; }
.hero-title .line-inner { display: block; transition: transform 1s cubic-bezier(.16,.8,.3,1); }
.has-js .hero-title .line-inner { transform: translateY(116%); }
.hero-title.in .line:nth-child(1) .line-inner { transition-delay: .05s; }
.hero-title.in .line:nth-child(2) .line-inner { transition-delay: .18s; }
.hero-title.in .line-inner { transform: translateY(0); }

/* Faixa cinética (marquee) */
.marquee { overflow: hidden; background: var(--navy); border-block: 1px solid var(--hair-navy); padding: clamp(18px, 2.6vw, 30px) 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 38s linear infinite; will-change: transform; }
.marquee-track span { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 5.2vw, 58px); line-height: 1; text-transform: uppercase; letter-spacing: .01em; color: transparent; -webkit-text-stroke: 1px rgba(224,145,58,0.5); white-space: nowrap; }
.marquee-track .dot { color: var(--gold); -webkit-text-stroke: 0; font-weight: 400; padding: 0 .28em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Revelação de imagem (wipe com máscara) */
.reveal-img { transition: clip-path 1.1s cubic-bezier(.16,.8,.3,1); }
.has-js .reveal-img { clip-path: inset(0 0 100% 0); }
.reveal-img.in { clip-path: inset(0 0 0 0); }

@media (prefers-reduced-motion: reduce) {
  .hero-title .line-inner { transform: none; transition: none; }
  .marquee-track { animation: none; }
  .reveal-img { clip-path: none; transition: none; }
  .scroll-progress { display: none; }
}

/* Banner de aviso no topo (aula/webinário — ligado em js/content.js) */
.aviso-bar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 6px 14px; padding: 11px 18px; text-align: center;
  background: var(--gold); color: var(--navy);
  font: 600 14px/1.4 var(--font-body); text-decoration: none;
}
.aviso-bar:hover .aviso-cta { text-decoration: underline; }
.aviso-bar .aviso-cta {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: .06em; font-size: 13px; white-space: nowrap;
}

/* ============ AVISO DE COOKIES (LGPD) ============ */
.cookie-bar {
  position: fixed; left: 50%; bottom: 18px; transform: translate(-50%, 130%);
  z-index: 9999; width: min(760px, calc(100vw - 32px));
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: var(--navy-2); color: var(--on-navy);
  border: 1px solid var(--hair-navy); border-radius: 14px;
  padding: 18px 22px; box-shadow: 0 18px 50px rgba(0,0,0,0.4);
  transition: transform .45s cubic-bezier(.2,.7,.3,1);
}
.cookie-bar.in { transform: translate(-50%, 0); }
.cookie-txt { flex: 1 1 320px; margin: 0; font-size: 14px; line-height: 1.6; color: #D9D0C2; }
.cookie-txt a { color: var(--gold); text-decoration: underline; }
.cookie-acts { display: flex; gap: 10px; margin-left: auto; }
.cookie-btn {
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  padding: 11px 20px; border-radius: 8px; cursor: pointer; border: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}
.cookie-btn:active { transform: scale(.97); }
.cookie-no { background: transparent; color: #D9D0C2; border-color: rgba(224,145,58,0.4); }
.cookie-no:hover { border-color: var(--gold); color: var(--on-navy); }
.cookie-yes { background: var(--gold); color: #1A1712; }
.cookie-yes:hover { background: var(--gold-lt); }
@media (max-width: 560px) {
  .cookie-bar { padding: 16px 18px; }
  .cookie-acts { width: 100%; margin-left: 0; }
  .cookie-btn { flex: 1; }
}
