/* ============================================================
   FORGE VENDAS — Landing Page
   Preto, off-white/creme e laranja como cor de ACENTO
   Montserrat em toda a tipografia (títulos e texto)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  /* Cores */
  --black: #000000;
  --black-soft: #0c0c0c;
  --card-black: #101010;
  --card-black-border: rgba(255,255,255,0.08);
  --cream: #fff7ee;
  --cream-2: #ffffff;
  --orange: #ff8e4c;
  --orange-deep: #f4772c;
  --orange-soft: rgba(255, 142, 76, 0.14);
  --ink: #17171a;
  --ink-soft: #58554f;
  --text-on-dark: #f5f1ea;
  --text-on-dark-muted: #aca89f;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  /* Grid editorial */
  --container: 1200px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Ritmo de espaçamento (desktop) */
  --section-pad: 100px;
  --section-pad-lg: 132px;
  --section-pad-sm: 72px;

  /* Ritmo de espaçamento (mobile) */
  --section-pad-mobile: 64px;
  --section-pad-lg-mobile: 84px;
  --section-pad-sm-mobile: 48px;

  /* Sombras suaves */
  --shadow-soft: 0 12px 28px -18px rgba(23, 23, 26, 0.14);
  --shadow-soft-strong: 0 18px 36px -18px rgba(23, 23, 26, 0.2);
  --shadow-glow-orange: 0 14px 30px -16px rgba(255, 142, 76, 0.28);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html, body { margin: 0; padding: 0; }

body {
  background: var(--black);
  color: var(--text-on-dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: inherit;
  margin: 0;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.01em;
}

p { margin: 0; }
strong, b { font-weight: 700; }
.accent { color: var(--orange); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

section { position: relative; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Watermark de fundo (DORES / VENDAS) — textura discreta ---------- */
.watermark {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(90px, 16vw, 230px);
  color: #ffffff;
  opacity: 0.022;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  letter-spacing: 0.02em;
}

/* ---------- Badge pill (hero) ---------- */
.badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border: 1px solid rgba(255, 142, 76, 0.5);
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  margin-bottom: 24px;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #1a0e05;
  box-shadow: 0 6px 18px -8px rgba(255, 142, 76, 0.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--orange-deep);
  box-shadow: 0 10px 22px -8px rgba(255, 142, 76, 0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--text-on-dark-muted);
  border-color: rgba(244, 241, 234, 0.22);
}
.btn-ghost:hover {
  transform: translateY(-1px);
  color: var(--text-on-dark);
  border-color: rgba(244, 241, 234, 0.42);
  background: rgba(244, 241, 234, 0.04);
}
.btn-block { width: 100%; }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

/* Link estilo seta, usado nos cards de Soluções */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--orange-deep);
  font-size: 14.5px;
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.link-arrow svg { width: 17px; height: 17px; transition: transform .25s var(--ease); }
.link-arrow:hover { gap: 12px; color: var(--orange); }
.link-arrow:hover svg { transform: translateX(2px); }

.cta-row { display: flex; flex-wrap: wrap; gap: 16px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 22px 0;
  transition: background 0.35s var(--ease), padding 0.35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 8px 24px -14px rgba(0,0,0,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 32px; width: auto; display: block; }
.brand .brand-text { display: flex; flex-direction: column; justify-content: center; line-height: 1; font-family: var(--font-head); }
.brand .brand-text .l1 { font-weight: 800; font-size: 15.5px; color: var(--text-on-dark); letter-spacing: 0.02em; }
.brand .brand-text .l2 { font-weight: 700; font-size: 12.5px; color: var(--orange); letter-spacing: 0.08em; margin-top: 3px; }

.nav-desktop { display: flex; align-items: center; gap: 26px; flex-wrap: nowrap; }
.nav-desktop a {
  font-size: 13.5px; font-weight: 600; color: var(--text-on-dark-muted);
  position: relative; padding: 4px 0; white-space: nowrap; line-height: 1;
  transition: color .25s var(--ease);
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 1.5px;
  background: var(--orange); transition: width .3s var(--ease); border-radius: 2px;
}
.nav-desktop a:hover { color: var(--text-on-dark); }
.nav-desktop a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-actions .btn { padding: 10px 20px; font-size: 13px; line-height: 1; }

.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 38px; height: 38px; border: 1px solid rgba(244,241,234,0.22); border-radius: 10px; padding: 0;
}
.hamburger span { display: block; width: 16px; height: 1.5px; background: var(--text-on-dark); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.hamburger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; z-index: 999; background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav a { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--text-on-dark); }
.mobile-nav a:hover { color: var(--orange); }
.mobile-nav .btn { margin-top: 10px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: var(--black); padding: 156px 0 96px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 0.92fr; gap: 56px; align-items: center; }
.hero-copy { position: relative; z-index: 1; max-width: 580px; }
.hero h1 {
  font-size: clamp(33px, 4.2vw, 50px);
  margin-bottom: 24px;
}
.hero-lead {
  font-size: 17.5px;
  color: var(--text-on-dark-muted);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-lead strong { color: var(--text-on-dark); font-weight: 700; }
.hero-image { position: relative; z-index: 1; }
.hero-image img { width: 100%; height: auto; }

/* Stats bar — fundo creme */
.stats-bar { position: relative; z-index: 1; background: var(--cream); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding: 56px 0; }
.stat {
  text-align: left;
  padding-left: 22px;
  border-left: 1px solid rgba(23,23,26,0.1);
}
.stat:first-child { padding-left: 0; border-left: none; }
.stat-number { font-family: var(--font-head); font-weight: 800; font-size: clamp(28px, 3.2vw, 38px); color: var(--orange-deep); display: block; }
.stat-label { font-size: 14.5px; color: var(--ink); margin-top: 6px; font-weight: 500; }

/* ============================================================
   IDENTIFICAÇÃO (dores)
   ============================================================ */
.pain { background: var(--black); padding: var(--section-pad) 0 0; position: relative; overflow: hidden; }
.pain-head { max-width: none; margin-bottom: 48px; position: relative; z-index: 1; }
.pain-head h2 { font-size: clamp(23px, 2.8vw, 30px); margin-bottom: 16px; }
.pain-head p { color: var(--text-on-dark-muted); font-size: 16px; max-width: 620px; }

.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; z-index: 1; }
.pain-card {
  background: var(--cream-2); border-radius: var(--radius); padding: 30px 28px;
  border: 1px solid rgba(23,23,26,0.05);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow-orange); }
.pain-card .quote-mark { font-family: var(--font-head); font-size: 32px; color: var(--orange); line-height: 1; display: block; margin-bottom: 12px; font-weight: 800; }
.pain-card p { font-weight: 700; font-size: 15.5px; color: var(--ink); line-height: 1.4; }

.identificacao-thoughts { margin: 44px 0 0; position: relative; z-index: 1; }
.identificacao-thoughts .lead-small {
  color: var(--text-on-dark-muted); font-size: 14.5px; margin-bottom: 16px; font-weight: 600;
}
.thought-list { display: flex; flex-direction: column; gap: 12px; }
.thought-row { display: grid; gap: 12px; }
.thought-row-3 { grid-template-columns: repeat(3, 1fr); }
.thought-row-2 { grid-template-columns: repeat(2, 1fr); }
.thought-pill {
  font-style: italic; color: var(--text-on-dark-muted); font-size: 14.5px;
  background: rgba(244,241,234,0.03); border: 1px solid rgba(244,241,234,0.1);
  padding: 14px 20px; border-radius: var(--radius); text-align: center;
}
.identificacao-close-band {
  background: linear-gradient(135deg, #1c0f07 0%, #120a05 50%, #0c0705 100%);
  border-top: 1px solid rgba(255,142,76,0.15);
  border-bottom: 1px solid rgba(255,142,76,0.15);
  padding: 56px 0;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
.identificacao-close {
  text-align: center;
  font-family: var(--font-head); font-weight: 700; font-size: clamp(22px, 2.8vw, 30px); line-height: 1.5;
}
.identificacao-close .l1 { color: var(--text-on-dark-muted); display: block; font-weight: 600; }
.identificacao-close .l2 { color: var(--text-on-dark); display: block; margin-top: 8px; }
.identificacao-close .l2 .accent { font-weight: 800; }

/* ============================================================
   PRODUTO, OFERTA E PREÇO — escada
   ============================================================ */
.produto { background: var(--black); padding: var(--section-pad-sm) 0 var(--section-pad); position: relative; overflow: hidden; }
.produto-head { max-width: none; margin-bottom: 8px; position: relative; z-index: 1; }
.produto-head h2 { font-size: clamp(23px, 2.8vw, 30px); }
.produto-head h2 .l1 { color: var(--text-on-dark); }
.produto-head h2 .l2 { color: var(--text-on-dark-muted); font-weight: 600; }
.produto-head h2 .l2 .accent { color: var(--orange); font-weight: 800; }
.produto-lead { max-width: 640px; color: var(--text-on-dark-muted); font-size: 16px; margin: 28px 0 18px; position: relative; z-index: 1; }
.produto-question {
  font-family: var(--font-head); font-weight: 700; color: var(--text-on-dark);
  font-size: clamp(19px, 2.4vw, 25px); max-width: 680px; margin: 0 0 44px;
  position: relative; z-index: 1;
  border-left: 3px solid var(--orange); padding-left: 22px;
}
.produto-intro { font-size: 14.5px; font-weight: 700; color: var(--text-on-dark-muted); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 22px; position: relative; z-index: 1; }

.escada-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 44px; position: relative; z-index: 1; }
.escada-item {
  display: flex; align-items: center; gap: 24px; padding: 26px 34px;
  background: var(--cream-2); border: 1px solid rgba(23,23,26,0.06);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.escada-item:hover { transform: translateX(6px) translateY(-2px); box-shadow: var(--shadow-soft-strong); }
.escada-num {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(155deg, var(--orange), var(--orange-deep));
  color: #ffffff; font-family: var(--font-head); font-weight: 800; font-size: 19px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px -8px rgba(255,142,76,0.55);
}
.escada-content strong { display: block; font-size: 17px; color: var(--ink); margin-bottom: 5px; font-family: var(--font-head); font-weight: 700; }
.escada-content span { font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; }
.produto-close {
  text-align: center; font-family: var(--font-head); font-weight: 700; font-size: 16.5px;
  color: var(--text-on-dark-muted); position: relative; z-index: 1;
}

/* ============================================================
   AS DUAS PORTAS — fundo off-white (antes laranja chapado)
   ============================================================ */
.solucoes { background: var(--cream); padding: var(--section-pad) 0; }
.portas-head { max-width: 980px; margin-bottom: 46px; }
.portas-head h2 { color: var(--ink); font-size: clamp(21px, 2.4vw, 28px); white-space: nowrap; }
.portas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.porta-card {
  background: var(--cream-2); border-radius: var(--radius); padding: 38px 36px;
  display: flex; flex-direction: column;
  border: 1px solid rgba(23,23,26,0.06);
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.porta-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft-strong); }
.porta-card .tag { font-size: 13.5px; font-style: italic; color: var(--ink); margin-bottom: 14px; }
.porta-card .tag-divider { width: 36px; height: 2px; background: var(--orange); margin-bottom: 18px; border-radius: 2px; }
.porta-card h3 { font-size: 21px; text-transform: uppercase; color: var(--orange-deep); margin-bottom: 16px; line-height: 1.25; letter-spacing: 0.01em; }
.porta-card p.desc { color: var(--ink); font-size: 14.5px; margin-bottom: 22px; line-height: 1.6; }
.porta-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; flex-grow: 1; align-content: flex-start; }
.porta-tags span { font-size: 13.5px; font-weight: 700; color: var(--ink); background: rgba(23,23,26,0.06); padding: 6px 14px; border-radius: var(--radius-pill); }

.porta-extra {
  background: var(--cream-2); border-radius: var(--radius); padding: 30px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
  border: 1px solid rgba(23,23,26,0.06);
  box-shadow: var(--shadow-soft);
}
.porta-extra .tag { font-size: 13.5px; font-style: italic; color: var(--ink); margin-bottom: 8px; display: block; }
.porta-extra h3 { font-size: 18.5px; color: var(--orange-deep); margin-bottom: 8px; }
.porta-extra p.desc { color: var(--ink); font-size: 14px; max-width: 460px; margin: 0; line-height: 1.55; }
.porta-extra-text { flex: 1; min-width: 260px; }

/* ============================================================
   MÉTODO (atos com hover/tap)
   ============================================================ */
.metodo { background: var(--black); padding: var(--section-pad) 0 var(--section-pad-sm); position: relative; overflow: hidden; }
.metodo-head { max-width: 900px; margin-bottom: 44px; position: relative; z-index: 1; }
.metodo-head h2 { font-size: clamp(22px, 2.6vw, 28px); line-height: 1.4; }

.atos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 40px 0; position: relative; z-index: 1; }
.ato-card {
  background: linear-gradient(155deg, #1a1a1a 0%, #101010 55%, #0a0a0a 100%);
  border-radius: var(--radius); padding: 34px 30px 30px;
  cursor: pointer; border: 1px solid rgba(255,255,255,0.09); user-select: none;
  border-top: 2px solid rgba(255,142,76,0.4);
  position: relative; overflow: hidden;
  transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.ato-card::after {
  content: ""; position: absolute; top: -30px; right: -20px; width: 130px; height: 130px;
  background: radial-gradient(circle, rgba(255,142,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.ato-card:hover, .ato-card.is-open {
  border-color: rgba(255,142,76,0.7); transform: translateY(-4px);
  box-shadow: 0 16px 34px -18px rgba(255,142,76,0.3);
}
.ato-num { font-family: var(--font-head); font-weight: 800; color: var(--orange); font-size: 13px; margin-bottom: 12px; display: block; letter-spacing: 0.05em; position: relative; z-index: 1; }
.ato-card h3 { font-size: 19px; color: var(--text-on-dark); margin-bottom: 4px; line-height: 1.3; font-weight: 700; position: relative; z-index: 1; }
.ato-hint { font-size: 13px; color: var(--text-on-dark-muted); opacity: 0.5; display: block; margin-top: 12px; position: relative; z-index: 1; }
.ato-tags { max-height: 0; overflow: hidden; opacity: 0; transition: max-height .4s var(--ease), opacity .4s var(--ease), margin-top .4s var(--ease); margin-top: 0; position: relative; z-index: 1; }
.ato-card:hover .ato-tags, .ato-card.is-open .ato-tags { max-height: 200px; opacity: 1; margin-top: 14px; }
.ato-card:hover .ato-hint, .ato-card.is-open .ato-hint { display: none; }
.ato-tags p { color: var(--text-on-dark-muted); font-size: 14px; line-height: 1.8; padding-top: 12px; border-top: 1px solid rgba(244,241,234,0.12); }

.metodo-close { text-align: center; max-width: 720px; margin: 16px auto 0; position: relative; z-index: 1; }
.metodo-close p { font-size: 19px; color: var(--text-on-dark-muted); margin-bottom: 14px; line-height: 1.6; }
.metodo-close p:first-child { font-weight: 800; color: var(--text-on-dark); font-size: clamp(22px, 2.8vw, 28px); font-family: var(--font-head); margin-bottom: 18px; }

/* ============================================================
   MAPA DE INTELIGÊNCIA DO CLIENTE (equação)
   ============================================================ */
.mapa {
  background: var(--black-soft); padding: var(--section-pad) 0 var(--section-pad-lg);
  text-align: center; position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mapa-head { max-width: 620px; margin: 0 auto 50px; position: relative; z-index: 1; }
.mapa-head h2 { font-size: clamp(24px, 2.9vw, 32px); }
.mapa-head h2 .l1 { color: var(--text-on-dark); display: block; }
.mapa-head h2 .l2 { color: var(--text-on-dark-muted); font-weight: 600; display: block; margin-top: 4px; }
.mapa-head h2 .l2 .accent { color: var(--orange); font-weight: 800; }

.mapa-equation { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 40px; position: relative; z-index: 1; }
.mapa-card {
  background: var(--cream-2); border: 1px solid rgba(23,23,26,0.06); border-radius: var(--radius);
  padding: 38px 36px; max-width: 340px; width: 100%; text-align: left;
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.mapa-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft-strong); }
.mapa-card .mc-title { font-family: var(--font-head); font-weight: 900; color: var(--orange-deep); font-size: 27px; display: block; }
.mapa-card .mc-sub2 { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.mapa-card .mc-label {
  display: inline-block; font-size: 13px; color: var(--ink); text-transform: uppercase; letter-spacing: 0.06em;
  font-weight: 700; margin: 16px 0 14px; border: 1px solid rgba(23,23,26,0.15); padding: 4px 12px; border-radius: var(--radius-pill);
}
.mapa-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }
.mapa-symbol { font-family: var(--font-head); font-size: 32px; font-weight: 800; color: var(--text-on-dark-muted); opacity: 0.7; }
.mapa-result {
  display: inline-block; background: var(--orange); color: #1a0e05; font-family: var(--font-head);
  font-weight: 800; font-size: clamp(19px, 2.4vw, 25px); padding: 24px 48px; border-radius: var(--radius);
  box-shadow: 0 14px 30px -14px rgba(255,142,76,0.45);
  margin-bottom: 36px; position: relative; z-index: 1; letter-spacing: 0.01em;
}
.mapa-foot { position: relative; z-index: 1; }
.mapa-foot p { font-size: 17px; color: var(--text-on-dark-muted); max-width: 520px; margin: 0 auto 8px; line-height: 1.55; }
.mapa-foot p strong { color: var(--text-on-dark); font-weight: 700; }

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  background: var(--cream);
  padding: 100px 0 116px; text-align: center; position: relative; overflow: hidden;
  border-top: 1px solid rgba(23,23,26,0.08);
  border-bottom: 1px solid rgba(23,23,26,0.08);
}
.manifesto .neg, .manifesto .pos { position: relative; z-index: 1; max-width: 860px; margin-left: auto; margin-right: auto; }
.manifesto .neg p, .manifesto .pos p {
  display: flex; align-items: flex-start; justify-content: center; gap: 12px; text-align: left;
}
.manifesto .neg p svg {
  width: 15px; height: 15px; flex-shrink: 0; color: var(--ink-soft); margin-top: 4px;
  background: rgba(23,23,26,0.06); border-radius: 50%; padding: 4px; box-sizing: content-box; opacity: 0.7;
}
.manifesto .neg p {
  font-family: var(--font-body); font-weight: 500; font-size: clamp(15.5px, 1.7vw, 17.5px);
  color: var(--ink-soft); margin-bottom: 13px; white-space: nowrap;
}
.manifesto-divider {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  max-width: 200px; margin: 40px auto; position: relative; z-index: 1;
}
.manifesto-divider span { flex: 1; height: 1px; background: rgba(244,119,44,0.3); }
.manifesto-divider svg { width: 20px; height: 20px; color: var(--orange-deep); flex-shrink: 0; }
.manifesto .pos { margin-top: 0; }
.manifesto .pos p svg {
  width: 22px; height: 22px; flex-shrink: 0; color: var(--orange-deep); margin-top: 2px;
  background: rgba(244,119,44,0.12); border-radius: 50%; padding: 4px;
}
.manifesto .pos p {
  font-family: var(--font-head); font-weight: 700; font-size: clamp(19px, 2.1vw, 25px);
  color: var(--ink); margin-bottom: 16px; line-height: 1.4; white-space: nowrap;
}
.manifesto .pos p .accent { color: var(--orange-deep); font-weight: 800; }

/* ============================================================
   PROVA / RESULTADOS — fundo creme
   ============================================================ */
.resultados { background: var(--cream); padding: var(--section-pad-lg) 0; color: var(--ink); }
.resultados-head { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.resultados-head h2 { color: var(--ink); font-size: clamp(23px, 2.8vw, 30px); line-height: 1.4; }
.prova-eyebrow {
  display: block; font-family: var(--font-head); font-weight: 700; font-size: 14px;
  letter-spacing: 0.08em; color: var(--orange-deep); margin-bottom: 14px; text-transform: uppercase;
}

.proof-wall { columns: 4 240px; column-gap: 20px; margin-bottom: 44px; }
.proof-card {
  break-inside: avoid; margin-bottom: 20px; background: var(--card-black);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.proof-card:hover { transform: translateY(-4px); border-color: rgba(255,142,76,0.35); box-shadow: var(--shadow-soft-strong); }
.proof-card img { width: 100%; height: auto; }
.proof-caption { padding: 15px 18px 18px; }
.proof-caption .name { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--text-on-dark); }
.proof-caption .role { font-size: 13.5px; color: var(--orange); font-weight: 600; margin-top: 2px; }

.results-divider { border: none; border-top: 1px solid rgba(23,23,26,0.1); margin: 0 0 44px; }

.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 44px; }
.video-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--black);
  aspect-ratio: 9 / 16; box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft-strong); }
.video-card video, .video-card .video-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-card .video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.1) 42%, rgba(0,0,0,0.94) 100%);
  pointer-events: none;
}
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(0,0,0,0.5); border: 1.5px solid rgba(244,241,234,0.6);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
  z-index: 2;
}
.video-play svg { width: 20px; height: 20px; color: #fff; margin-left: 3px; }
.video-card:hover .video-play { background: var(--orange); border-color: var(--orange); transform: translate(-50%, -50%) scale(1.06); }
.video-card.is-playing .video-play { opacity: 0; pointer-events: none; }
.video-card.is-playing .video-overlay { opacity: 0; }
.video-card.is-playing .video-poster { opacity: 0; }
.video-info { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 18px 18px; z-index: 2; pointer-events: none; }
.video-info .name { font-family: var(--font-head); font-weight: 700; font-size: 15.5px; color: #fff; }
.video-info .role { font-size: 13px; color: var(--orange); font-weight: 600; margin-top: 2px; }
.video-info .extra { font-size: 12.5px; color: rgba(244,241,234,0.7); margin-top: 4px; }

.results-cta { text-align: center; }

/* ============================================================
   QUEM ESTÁ POR TRÁS (Marcelo)
   ============================================================ */
.marcelo-dark { background: var(--black); padding: var(--section-pad-lg) 0 var(--section-pad); position: relative; overflow: hidden; }
.marcelo-grid { display: grid; grid-template-columns: 0.58fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.marcelo-photo { border-radius: var(--radius-lg); overflow: hidden; }
.marcelo-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; transition: transform .6s var(--ease); }
.marcelo-photo:hover img { transform: scale(1.03); }

.marcelo-quote { max-width: 560px; }
.marcelo-quote h2 { font-size: clamp(24px, 3vw, 33px); color: var(--text-on-dark); margin-bottom: 24px; }
.marcelo-quote p { color: var(--text-on-dark-muted); font-size: 16.5px; margin-bottom: 20px; line-height: 1.6; }
.marcelo-quote p strong { color: var(--text-on-dark); }
.marcelo-quote p.all-bold { color: var(--text-on-dark); font-weight: 700; }
.marcelo-quote .cite { display: block; margin-top: 22px; font-size: 14.5px; color: var(--text-on-dark-muted); }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  position: relative; background: var(--black-soft); padding: var(--section-pad-lg) 0;
  overflow: hidden; text-align: center;
  border-top: 1px solid rgba(255,142,76,0.18);
}
.cta-final::before {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,142,76,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-final h2 { font-size: clamp(30px, 4.6vw, 46px); margin-bottom: 22px; line-height: 1.25; }
.cta-final p { font-size: 17px; color: var(--text-on-dark-muted); margin-bottom: 40px; line-height: 1.6; }
.cta-final .cta-row { justify-content: center; }

/* ============================================================
   SESSÃO (próximo passo)
   ============================================================ */
.sessao { background: var(--black); padding: var(--section-pad) 0 var(--section-pad-lg); }
.sessao-card {
  max-width: 760px; margin: 0 auto; text-align: center;
  background: linear-gradient(160deg, #171310 0%, #100d0b 55%, #0a0808 100%);
  border: 1px solid rgba(255,142,76,0.14);
  border-radius: var(--radius-lg);
  padding: 60px 56px;
}
.sessao-eyebrow {
  display: block; font-family: var(--font-head); font-weight: 700; font-size: 13px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-on-dark-muted); margin-bottom: 16px;
}
.sessao-card h2 { font-size: clamp(24px, 3.2vw, 34px); margin-bottom: 18px; line-height: 1.3; }
.sessao-lead { font-size: 16.5px; color: var(--text-on-dark-muted); max-width: 520px; margin: 0 auto; line-height: 1.6; }
.sessao-divider { height: 1px; background: rgba(255,142,76,0.16); margin: 34px auto; max-width: 460px; }
.sessao-checklist { display: flex; flex-direction: column; gap: 18px; align-items: center; }
.sessao-checklist li {
  display: flex; align-items: center; gap: 12px; font-size: 16px; font-weight: 600; color: var(--text-on-dark);
}
.sessao-checklist li svg {
  width: 20px; height: 20px; flex-shrink: 0; color: var(--orange);
  background: rgba(255,142,76,0.12); border-radius: 50%; padding: 4px;
}
.sessao-buttons { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.btn-ghost-outline {
  background: transparent; color: var(--text-on-dark); border-color: rgba(244,241,234,0.25);
}
.btn-ghost-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.sessao-note { margin-top: 26px; font-size: 13.5px; color: var(--text-on-dark-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--black); border-top: 1px solid rgba(255,142,76,0.4); padding: 64px 0 28px; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 42px; width: auto; }
.footer-col p.footer-tagline { color: var(--text-on-dark-muted); font-size: 14px; max-width: 300px; line-height: 1.6; }
.footer-col h4 { font-family: var(--font-head); font-size: 13.5px; color: var(--text-on-dark); margin-bottom: 18px; letter-spacing: 0.02em; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14px; color: var(--text-on-dark-muted); transition: color .25s var(--ease); }
.footer-col ul li a:hover { color: var(--orange); }
.footer-col .whatsapp-line { display: flex; align-items: center; gap: 8px; color: var(--text-on-dark-muted); font-size: 14px; margin-top: 16px; transition: color .25s var(--ease); }
.footer-col .whatsapp-line:hover { color: var(--orange); }
.footer-col .whatsapp-line svg { width: 15px; height: 15px; color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(244,241,234,0.08); padding-top: 24px; text-align: center; font-size: 13.5px; color: var(--text-on-dark-muted); }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px -8px rgba(37, 211, 102, 0.5); z-index: 900;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 24px -8px rgba(37, 211, 102, 0.6); }
.wa-float svg { width: 28px; height: 28px; color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
  .header-actions .btn-ghost { display: none; }
}

@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .portas-head h2 { white-space: normal; }
  .manifesto .neg p, .manifesto .pos p { white-space: normal; justify-content: flex-start; text-align: left; }
  .manifesto .neg, .manifesto .pos { max-width: 480px; }
  .thought-row-3, .thought-row-2 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { max-width: 440px; margin: 40px auto 0; order: 2; }
  .marcelo-grid { grid-template-columns: 1fr; gap: 36px; }
  .marcelo-photo { max-width: 380px; margin: 0 auto; aspect-ratio: 4/5; }
  .marcelo-quote { max-width: 100%; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .portas-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .porta-extra { flex-direction: column; align-items: flex-start; text-align: left; max-width: 560px; margin: 0 auto; }
  .atos-grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; }
  .mapa-equation { flex-direction: column; }
  .mapa-card { max-width: 380px; width: 100%; }
  .videos-grid { grid-template-columns: repeat(2, 1fr); max-width: 540px; margin: 0 auto 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 22px; }
  .stat { border-left: none; padding-left: 0; border-top: 1px solid rgba(23,23,26,0.1); padding-top: 20px; }
  .stat:first-child { border-top: none; padding-top: 0; }
}

@media (max-width: 860px) {
  :root {
    --section-pad: var(--section-pad-mobile);
    --section-pad-lg: var(--section-pad-lg-mobile);
    --section-pad-sm: var(--section-pad-sm-mobile);
  }
  .nav-desktop, .header-actions .btn-ghost { display: none; }
  .hamburger { display: flex; }
  .hero { padding-top: 118px; padding-bottom: 70px; }
  .pain-grid { grid-template-columns: 1fr; }
  .thought-row-3, .thought-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .manifesto { padding: 64px 0 80px; }
  .escada-item { padding: 20px 22px; gap: 16px; }
  .escada-content strong { font-size: 15.5px; }
}

@media (max-width: 640px) {
  .videos-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto 44px; }
  .proof-wall { columns: 1 260px; }
}

@media (max-width: 520px) {
  .container { padding: 0 20px; }
  .cta-row { flex-direction: column; }
  .cta-row .btn { width: 100%; }
  .header-actions .btn-primary { padding: 9px 16px; font-size: 13px; }
  .brand .brand-text { display: none; }
  .produto-question { padding-left: 16px; }
  .sessao-card { padding: 40px 26px; }
  .sessao-buttons { flex-direction: column; }
  .sessao-buttons .btn { width: 100%; white-space: normal; line-height: 1.3; padding: 16px 22px; }
  .sessao-checklist li { font-size: 15px; text-align: left; }
}

/* ============================================================
   PÁGINA PODCASTS
   ============================================================ */
.podcasts-intro { background: var(--black); padding: 156px 0 64px; text-align: center; }
.podcasts-intro-inner { max-width: 900px; margin: 0 auto; }
.podcasts-intro h1 { font-size: clamp(30px, 4.2vw, 46px); margin: 22px 0 20px; line-height: 1.25; }
.podcasts-intro-lead { font-size: 17px; color: var(--text-on-dark-muted); line-height: 1.6; margin-bottom: 18px; }
.podcasts-meta-line { font-size: 13.5px; color: var(--text-on-dark-muted); opacity: 0.75; }

.podcasts-stats { background: var(--black); padding: 0 0 var(--section-pad); }
.podcasts-stats-card {
  max-width: 900px; margin: 0 auto; text-align: left;
  background: linear-gradient(160deg, #171310 0%, #100d0b 55%, #0a0808 100%);
  border: 1px solid rgba(255,142,76,0.14);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
}
.podcasts-stats-top { display: flex; align-items: center; gap: 14px; margin-bottom: 30px; }
.podcasts-stats-top svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; }
.podcasts-stats-top .sessao-eyebrow { margin-bottom: 4px; }
.podcasts-stats-top-text p { font-size: 14.5px; color: var(--text-on-dark-muted); }
.podcasts-stats-grid { display: grid; grid-template-columns: 1fr 1fr 1.6fr; gap: 24px; }
.podcasts-stats-grid > div { border-top: 1px solid rgba(255,142,76,0.14); padding-top: 18px; }
.podcasts-stats-grid .label {
  display: block; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-on-dark-muted); font-weight: 700; margin-bottom: 8px;
}
.podcasts-stats-grid .value { display: block; font-size: 18px; font-weight: 700; color: var(--text-on-dark); }
.podcasts-stats-grid .value.small { font-size: 14px; font-weight: 500; color: var(--text-on-dark-muted); line-height: 1.5; }

.podcasts-grid-section { background: var(--black); padding: 0 0 var(--section-pad-lg); }
.podcasts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.podcast-card {
  display: block; background: var(--card-black); border: 1px solid var(--card-black-border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.podcast-card:hover { transform: translateY(-4px); border-color: rgba(255,142,76,0.4); box-shadow: var(--shadow-soft-strong); }
.podcast-thumb { position: relative; width: 100%; aspect-ratio: 16/9; background: var(--card-black); overflow: hidden; }
.podcast-thumb img { width: 100%; height: 100%; object-fit: cover; }
.podcast-thumb-instagram {
  display: flex; align-items: center; justify-content: center; position: relative;
  background: linear-gradient(135deg, #7c3aad 0%, #c22a6d 42%, #e0342a 62%, #f7962e 100%);
}
.ig-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,0,0,0.45); color: #fff; font-size: 10.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  padding: 6px 12px 6px 8px; border-radius: var(--radius-pill);
}
.ig-badge svg { width: 13px; height: 13px; flex-shrink: 0; }
.ig-thumb-center { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.ig-icon-wrap { position: relative; display: inline-flex; margin-bottom: 16px; }
.ig-icon-big { width: 42px; height: 42px; color: #fff; }
.podcast-thumb-instagram .podcast-play {
  position: absolute; top: auto; left: auto; bottom: -10px; right: -26px; transform: none;
  width: 34px; height: 34px; background: var(--orange); border-color: var(--orange);
}
.podcast-thumb-instagram .podcast-play svg { width: 13px; height: 13px; }
.podcast-thumb-instagram:hover .podcast-play { transform: scale(1.08); }
.ig-title { font-family: var(--font-head); font-weight: 800; font-size: 19px; color: #fff; letter-spacing: 0.01em; text-transform: uppercase; }
.ig-subtitle { font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 500; margin-top: 4px; }
.podcast-thumb-instagram .podcast-format-tag { top: auto; bottom: 14px; left: 14px; background: rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.35); }
.podcast-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.1) 45%, rgba(0,0,0,0.75) 100%);
}
.podcast-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(0,0,0,0.5); border: 1.5px solid rgba(244,241,234,0.6);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.podcast-play svg { width: 18px; height: 18px; color: #fff; margin-left: 2px; }
.podcast-card:hover .podcast-play { background: var(--orange); border-color: var(--orange); transform: translate(-50%, -50%) scale(1.08); }
.podcast-format-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  background: rgba(0,0,0,0.55); color: var(--orange-2, var(--orange)); border: 1px solid rgba(255,142,76,0.4);
  padding: 5px 12px; border-radius: var(--radius-pill);
}
.podcast-guest-badge {
  display: inline-block; font-size: 11px; font-weight: 700; color: var(--text-on-dark-muted);
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px;
}
.podcast-body { padding: 22px 24px 26px; }
.podcast-source { display: block; font-size: 12.5px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.podcast-card h3 { font-size: 19px; color: var(--text-on-dark); margin-bottom: 10px; line-height: 1.35; }
.podcast-card p.podcast-desc { font-size: 14px; color: var(--text-on-dark-muted); line-height: 1.6; margin-bottom: 16px; }
.podcast-meta { display: flex; justify-content: space-between; gap: 12px; padding-top: 14px; border-top: 1px solid rgba(244,241,234,0.08); font-size: 12.5px; color: var(--text-on-dark-muted); opacity: 0.8; }

.podcasts-cta { position: relative; background: var(--black-soft); padding: var(--section-pad-lg) 0; text-align: center; border-top: 1px solid rgba(255,142,76,0.18); }
.podcasts-cta h2 { font-size: clamp(24px, 3.2vw, 32px); margin-bottom: 16px; }
.podcasts-cta p { font-size: 16px; color: var(--text-on-dark-muted); max-width: 520px; margin: 0 auto 32px; line-height: 1.6; }

@media (max-width: 1024px) {
  .podcasts-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .podcasts-stats-grid { grid-template-columns: 1fr; gap: 18px; }
  .podcasts-stats-card { padding: 32px 28px; }
}

@media (max-width: 860px) {
  .podcasts-intro { padding: 118px 0 48px; }
}

@media (max-width: 520px) {
  .podcasts-stats-top { flex-direction: column; align-items: flex-start; gap: 10px; }
}
