/* ============================================================
   CURVA J LP — styles.css
   Baseado na estrutura do storylab.defineamerican.com/sessions
   Identidade visual: Brand Kit Curva J v1.1
   ============================================================

   FONTES:
   - "Bebas Neue"  → display / impacto (substitui Beausite Classic)
   - "DM Sans"     → corpo e botões
   - "DM Mono"     → labels e metadados

   PALETA CURVA J:
   --red:     #D42020  (marca mãe)
   --green:   #AADF00  (CJ Productions)
   --cyan:    #00E5E5  (CJ Clicks)
   --gold:    #C9A84C  (CJ Estratégico)
   --ink:     #0D0D0D  (texto principal)
   --off:     #FAFAF8  (fundo geral)
   ============================================================ */

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

:root {
  /* Brand Curva J */
  --red:     #D42020;
  --red-d:   #A01818;
  --green:   #AADF00;
  --green-d: #3a5000;
  --cyan:    #00E5E5;
  --cyan-d:  #005555;
  --gold:    #C9A84C;
  --gold-d:  #8a6800;
  --ink:     #0D0D0D;
  --mid:     #555555;
  --muted:   #999999;
  --border:  #E4E4E4;
  --off:     #FAFAF8;
  --white:   #FFFFFF;

  /* Fontes */
  --font-main:  "Bebas Neue", "Anton", Arial, sans-serif;
  --font-body:  "DM Sans", sans-serif;
  --font-mono:  "DM Mono", monospace;

  /* Cor de botão ativa por card — override por seção */
  --btn-bg:    var(--red);
  --btn-color: var(--white);
  --tag-bg:    var(--red);
  --title-color: var(--red);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--off);
  overflow-x: hidden;
}

img, video {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 64px);
  background: rgba(250,250,248,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.nav-brand-name {
  font-family: var(--font-main);
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 9px 18px;
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  transition: background 0.15s !important;
}

.nav-cta:hover { background: var(--red-d) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
}

.nav-drawer {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px clamp(20px, 4vw, 64px);
  z-index: 499;
  flex-direction: column;
}

.nav-drawer.open { display: flex; }

.nav-drawer a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.nav-drawer a:last-child { border-bottom: none; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.padding-global {
  padding: 0;
}

.container-large {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* Na seção de sessões, container-large não deve limitar a largura —
   cada card cobre o viewport inteiro (fundo full-width).
   O conteúdo interno é centralizado por session-hero-video-info. */
.section-sessions .container-large {
  max-width: none;
  padding: 0;
}

.padding-vertical {
  padding: 0;
}

/* ============================================================
   SEÇÃO PRINCIPAL
   ============================================================ */
.section-sessions {
  display: block;
  position: relative;
  background-color: var(--off);
}

/* ============================================================
   FUNDO DE PONTOS (dot grid) — FIXO
   ============================================================ */
.dots-back {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-image: url("dot.svg");
  background-size: 12px 12px;
  background-repeat: repeat;
  opacity: 0.6;
}

/* ============================================================
   HERO INTRO — STICKY
   ============================================================ */
.all-session-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  height: 55vh;
  padding-top: 0;
  padding-bottom: 0;
  overflow: clip;
  z-index: 1; /* CRÍTICO: deve ser menor que os cards (z-index 3+) */
}

/* ============================================================
   HERO COPY WRAP
   ============================================================ */
.hero-copy-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  z-index: 2;
  text-align: center;
}

.hero-body {
  max-width: 560px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--mid);
  text-align: center;
  margin-top: 20px;
}

.hero-cta-btn {
  margin-top: 28px;
  width: auto;
}

.hero-headline-normal {
  text-transform: none !important;
}

.sessions-movedown {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 75px;
  background-color: var(--red);
  z-index: 2;
}

.sessions-pairwrap {
  position: relative;
  width: 20px;
  height: 40px;
}

.sessions-arrowpair {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 20px;
  height: 40px;
}

.sessions-arrowpair.pair1 {
  animation: arrowBounce 1.4s ease-in-out infinite;
}
.sessions-arrowpair.pair2 {
  animation: arrowBounce 1.4s ease-in-out infinite 0.35s;
}

@keyframes arrowBounce {
  0%   { transform: translateY(-4px); opacity: 0.3; }
  50%  { transform: translateY(4px);  opacity: 1;   }
  100% { transform: translateY(-4px); opacity: 0.3; }
}

.sessions-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #ffffff;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 500;
  color: var(--mid);
  text-align: center;
  line-height: 1.4;
  margin-top: 12px;
  letter-spacing: 0.01em;
}

.hero-selection-tag {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--mid);
  text-transform: uppercase;
}

/* ============================================================
   TÍTULOS DO HERO
   ============================================================ */
.session-hero-header {
  display: block;
  position: relative;
  z-index: 2;
  font-family: var(--font-main);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400; /* Bebas Neue só tem uma weight */
  color: var(--ink);
  text-align: center;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Texto decorativo vermelho atrás dos títulos */
.session-hero-header-hand {
  position: absolute;
  top: -28px;
  left: -48px;
  z-index: 0;
  font-family: var(--font-main);
  font-size: clamp(160px, 36vw, 400px);
  font-weight: 400;
  color: var(--red);
  line-height: 1;
  text-align: center;
  letter-spacing: -4px;
  transform: matrix(1, -0.06, 0, 1, 0, 0);
  white-space: nowrap;
  overflow: visible;
  pointer-events: none;
  user-select: none;
  opacity: 0.07;
}

/* ============================================================
   SUBTÍTULO CENTRAL
   ============================================================ */
.subheader-center {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 36px;
  z-index: 2;
}

.subheader.balanced50 {
  max-width: 480px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--mid);
  font-family: var(--font-body);
}

/* ============================================================
   BOTÃO SCROLL DOWN
   ============================================================ */
.sessions-movedown {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 68px;
  margin-top: 40px;
  background-color: var(--red);
  z-index: 2;
  cursor: pointer;
}

.sessions-pairwrap {
  position: relative;
  width: 20px;
  height: 40px;
}

.sessions-arrowpair {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 20px;
  height: 40px;
}

.sessions-arrowpair.pair1 {
  animation: arrowBounce 1.4s ease-in-out infinite;
}
.sessions-arrowpair.pari2 {
  animation: arrowBounce 1.4s ease-in-out infinite 0.35s;
}

@keyframes arrowBounce {
  0%   { transform: translateY(-4px); opacity: 0.4; }
  50%  { transform: translateY(4px);  opacity: 1;   }
  100% { transform: translateY(-4px); opacity: 0.4; }
}

.sessions-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--white);
}

.sessions-arrow svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ============================================================
   WRAPPER DE TODOS OS CARDS
   ============================================================ */
.session-all-wrap {
  display: block;
  position: relative;
  z-index: 2;
}

/* ============================================================
   CARDS INDIVIDUAIS
   ============================================================ */
.cards,
.cards-last {
  position: relative;
  width: 100%;
  background-color: var(--white);
  transform-origin: top center;
  border-radius: 36px;
  overflow: clip; /* clip não quebra sticky (diferente de overflow: hidden) */
}

/* Z-index crescente: cada card cobre o anterior e cobre o hero (z:1) */
.cards.c1   { z-index: 3; background-color: #0e1113; }
.cards.c2   { z-index: 4; background-color: #0e1113; }
.cards.c3   { z-index: 5; background-color: #0e1113; }
.cards-last { z-index: 6; background-color: #0e1113; }

/* ============================================================
   ACENTO DE COR POR CARD
   ============================================================ */
/* Card 1 — Programa → vermelho (padrão, sem override) */

/* Card 2 — Productions → verde lima */
.cards.c2 {
  --btn-bg:     #3a5000;
  --btn-color:  var(--white);
  --tag-bg:     var(--green);
  --tag-color:  #2a3a00;
  --title-color: #3a5000;
}

/* Card 3 — Clicks → ciano */
.cards.c3 {
  --btn-bg:     var(--cyan-d);
  --btn-color:  var(--white);
  --tag-bg:     var(--cyan);
  --tag-color:  #003a3a;
  --title-color: var(--cyan-d);
}

/* Card 4 — Estratégico → ouro */
.cards-last {
  --btn-bg:     var(--gold);
  --btn-color:  var(--white);
  --tag-bg:     var(--gold);
  --tag-color:  #5a4000;
  --title-color: var(--gold-d);
}

/* ============================================================
   WRAPPER INTERNO DO CARD
   ============================================================ */
.allsessions-wrapper {
  display: flex;
  flex-direction: row;
  position: relative;
  align-items: center;
  justify-content: center;
  overflow: clip;
  width: 100%;
}

/* ============================================================
   CONTEÚDO DO CARD — layout compacto
   ============================================================ */
.card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 480px;
  padding: 52px clamp(24px, 5vw, 64px);
}

/* Logo inline no card */
.card-logo-inline {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 4px;
}

.card-logo-white {
  filter: brightness(0) invert(1);
}

/* ============================================================
   COLUNA DE COPY: tag, título, descrição, botão
   ============================================================ */
.session-overview-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

/* Tag de categoria */
.sessions-theme-label {
  display: inline-block;
  background-color: var(--tag-bg, var(--red));
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.3;
  padding: 4px 10px;
  margin-bottom: 4px;
  width: fit-content;
}

/* Título */
.session-header {
  font-family: var(--font-main);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1;
  color: var(--title-color, var(--red));
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

/* Descrição */
.subheader-small {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--mid);
  position: relative;
  z-index: 20;
}

/* Features list */
.prod-features-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 2px;
}

.prod-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink);
  line-height: 1.4;
}

.prod-feature-item::before {
  content: '–';
  color: var(--muted);
  flex-shrink: 0;
  margin-top: 0px;
}

/* Preço */
.prod-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 4px;
}

.prod-price-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.prod-price-value {
  font-family: var(--font-main);
  font-size: 28px;
  color: var(--ink);
  line-height: 1;
}

.prod-price-period {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ============================================================
   BOTÃO
   ============================================================ */
.button-outer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  height: 56px;
  padding: 0 20px;
  overflow: clip;
  cursor: pointer;
  margin-top: 4px;
}

.button-texts {
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--btn-color, var(--white));
  padding: 7px 10px 7px 0;
  overflow: hidden;
  position: relative;
  z-index: 100;
}

.button-icon-wrap {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
  color: var(--btn-color, var(--white));
}

/* Fundo do botão */
.button-bg-color {
  position: absolute;
  inset: 0;
  background-color: var(--btn-bg, var(--red));
  z-index: 0;
}

.button-bg-hover {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.button-outer:hover .button-bg-hover {
  opacity: 1;
}

.button-link {
  position: absolute;
  inset: 0;
  z-index: 200;
}

/* ============================================================
   PAINEL VISUAL DIREITO
   ============================================================ */
.visual-panel {
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 16px 0;
  overflow: hidden;
  background-color: var(--off);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Conteúdo do painel visual */
.visual-panel-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px 32px;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.visual-accent-bar {
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
}

.visual-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.visual-product-name {
  font-family: var(--font-main);
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1;
  text-transform: uppercase;
}

.visual-tag {
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid;
  width: fit-content;
}

/* Modules grid */
.visual-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  flex: 1;
}

.visual-module {
  background: var(--off);
  padding: 10px 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.visual-module-n {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--muted);
  flex-shrink: 0;
  padding-top: 2px;
  width: 22px;
}

.visual-module-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.35;
}

/* Stats row */
.visual-stats {
  display: flex;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.visual-stat {
  flex: 1;
}

.visual-stat-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.visual-stat-value {
  font-family: var(--font-main);
  font-size: 18px;
  color: var(--ink);
  line-height: 1;
}

/* Simple features inside visual panel */
.visual-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.visual-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--off);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink);
}

.visual-feature-n {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--muted);
  letter-spacing: 0.1em;
  width: 20px;
  flex-shrink: 0;
}

/* Dark variant for Estratégico */
.visual-panel.dark {
  background-color: var(--ink);
  border-color: transparent;
}

.visual-panel.dark .visual-product-name { color: var(--white); }
.visual-panel.dark .visual-module { background: rgba(255,255,255,0.05); }
.visual-panel.dark .visual-module-label { color: rgba(255,255,255,0.8); }
.visual-panel.dark .visual-module-n { color: rgba(255,255,255,0.25); }
.visual-panel.dark .visual-stats { border-top-color: rgba(255,255,255,0.08); }
.visual-panel.dark .visual-stat-value { color: var(--white); }
.visual-panel.dark .visual-stat-label { color: rgba(255,255,255,0.3); }
.visual-panel.dark .visual-feature { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.8); }
.visual-panel.dark .visual-feature-n { color: rgba(255,255,255,0.25); }

/* Big number watermark inside visual */
.visual-watermark {
  position: absolute;
  bottom: -12px;
  right: 8px;
  font-family: var(--font-main);
  font-size: 120px;
  line-height: 1;
  color: rgba(0,0,0,0.04);
  pointer-events: none;
  user-select: none;
}

.visual-panel.dark .visual-watermark { color: rgba(255,255,255,0.04); }

/* ============================================================
   ESPAÇADOR FINAL
   ============================================================ */
.s-large {
  display: block;
  padding-top: 48px;
}

/* ============================================================
   SEÇÕES EXTRAS: PROOF, FAQ, CTA FINAL, FOOTER
   ============================================================ */

/* Prova social */
.proof-sec {
  background: var(--ink);
  color: var(--white);
  padding: 100px clamp(20px, 4vw, 64px);
}

.proof-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.proof-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.proof-title {
  font-family: var(--font-main);
  font-size: clamp(40px, 4vw, 64px);
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 56px;
  max-width: 560px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.proof-card {
  background: rgba(255,255,255,0.05);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.proof-quote {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  flex: 1;
}

.proof-author-name {
  font-family: var(--font-main);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--white);
}

.proof-author-role {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 3px;
}

/* FAQ */
.faq-sec {
  background: var(--white);
  padding: 100px clamp(20px, 4vw, 64px);
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.faq-title {
  font-family: var(--font-main);
  font-size: clamp(36px, 3.5vw, 56px);
  line-height: 0.92;
  color: var(--ink);
  margin-bottom: 52px;
}

.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--ink);
  border-radius: 1px;
}

.faq-icon::before { width: 14px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1.5px; height: 14px; top: 50%; left: 50%; transform: translate(-50%,-50%); transition: transform 0.2s, opacity 0.2s; }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }

.faq-a {
  display: none;
  padding-bottom: 22px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
}

.faq-item.open .faq-a { display: block; }

/* CTA Final */
.cta-final {
  background: var(--red);
  color: var(--white);
  padding: 100px clamp(20px, 4vw, 64px);
  text-align: center;
}

.cta-final-inner { max-width: 600px; margin: 0 auto; }

.cta-final-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.cta-final-title {
  font-family: var(--font-main);
  font-size: clamp(52px, 7vw, 108px);
  line-height: 0.88;
  color: var(--white);
  margin-bottom: 24px;
}

.cta-final-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  line-height: 1.6;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--red);
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.15s;
}

.btn-white:hover { background: var(--off); }

/* Footer */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 52px clamp(20px, 4vw, 64px) 36px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-brand-name {
  font-family: var(--font-main);
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--white);
}

.footer-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.15s;
}

.footer-links a:hover { color: rgba(255,255,255,0.75); }

.footer-copy {
  max-width: 1120px;
  margin: 28px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.18);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   CARDS ESCUROS (c2 Productions, c3 Clicks) — fundo #0e1113
   Texto branco/claro para garantir legibilidade no bg dark.
   Usa !important para sobrescrever inline styles do HTML.
   ============================================================ */

/* Nome grande do produto */
.card-dark .sessions-overview-name-fat {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Label de produto */
.card-dark .insession-label {
  color: rgba(255, 255, 255, 0.3) !important;
}

/* Descrição */
.card-dark .subheader-small {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Features list */
.card-dark .prod-feature-item {
  color: rgba(255, 255, 255, 0.75) !important;
}

.card-dark .prod-feature-item::before {
  color: rgba(255, 255, 255, 0.25) !important;
}

/* Preço */
.card-dark .prod-price-value {
  color: rgba(255, 255, 255, 0.9) !important;
}

.card-dark .prod-price-period,
.card-dark .prod-price-label {
  color: rgba(255, 255, 255, 0.35) !important;
}

/* Headline por card (accent color sobre bg escuro) */
.cards.c2 .session-header { color: var(--green) !important; }
.cards.c3 .session-header { color: var(--cyan) !important; }

/* Stat values por card */
.cards.c2 .visual-stat-value {
  color: var(--green) !important;
}
.cards.c3 .visual-stat-value {
  color: var(--cyan) !important;
}

/* Visual panel features */
.card-dark .visual-feature {
  background: rgba(255, 255, 255, 0.04) !important;
  color: rgba(255, 255, 255, 0.75) !important;
}

.card-dark .visual-feature-n {
  color: rgba(255, 255, 255, 0.25) !important;
}

/* Visual panel stat labels */
.card-dark .visual-stat-label {
  color: rgba(255, 255, 255, 0.3) !important;
}

/* Visual panel stats border */
.card-dark .visual-stats {
  border-top-color: rgba(255, 255, 255, 0.08) !important;
}

/* Visual panel background */
.card-dark .visual-panel {
  background-color: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.07) !important;
}

/* Visual panel product name */
.card-dark .visual-product-name {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Visual panel tag */
.cards.c2 .visual-tag {
  color: var(--green) !important;
  border-color: var(--green) !important;
  background: rgba(170, 223, 0, 0.08) !important;
}
.cards.c3 .visual-tag {
  color: var(--cyan) !important;
  border-color: var(--cyan) !important;
  background: rgba(0, 229, 229, 0.07) !important;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .session-overview-feat {
    grid-template-columns: 1fr;
    padding-left: clamp(16px, 4vw, 32px);
    padding-right: clamp(16px, 4vw, 32px);
  }

  .sessions-overview-name-fat {
    font-size: clamp(52px, 14vw, 100px);
    text-align: center;
  }

  .session-hero-header {
    font-size: clamp(28px, 8vw, 44px);
  }

  .session-hero-header-hand {
    font-size: clamp(120px, 30vw, 260px);
    top: -16px;
    left: -24px;
  }

  .visual-panel {
    aspect-ratio: 4 / 3;
  }

  .visual-modules {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .sessions-overview-name-fat {
    font-size: clamp(44px, 14vw, 80px);
  }
  .visual-panel {
    aspect-ratio: 1;
  }
  .footer-inner { flex-direction: column; }
  .footer-links { gap: 16px; }
}
