/* =========================================================
   SUPER VISUAIS NO POWER BI COM IA
   CSS próprio e consolidado da página de vendas
   Use apenas este arquivo na página: assets/css/super-visuais.css
========================================================= */

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("../fonts/sora-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("../fonts/sora-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text-primary);
  background: var(--color-background);
  line-height: 1.6;
}

/* ---------------------------------------------------------------------------
   Foco visivel de teclado (WCAG 2.4.7). Seletor de tipo + pseudo-classe
   (0,1,1) para vencer as regras de classe unica dos botoes sem precisar de
   !important. O outline transparente preserva o indicador no Modo de Alto
   Contraste do Windows, onde box-shadow nao e renderizado.
   --------------------------------------------------------------------------- */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid transparent;
  outline-offset: 3px;
  box-shadow: var(--shadow-focus-ring);
}

/* Link de pulo (WCAG 2.4.1, nivel A): primeiro elemento focavel da pagina,
   invisivel ate receber foco de teclado. Permite saltar o header repetido. */
.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  background: var(--color-brand-primary);
  color: #ffffff;
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 16px;
}

/* <main> recebe foco por script ao seguir o link; nao deve mostrar anel proprio. */
main:focus {
  outline: none;
}


body.menu-open { overflow: hidden; }
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------------------------------------------------------------------------
   Quebra de linha. Sem isto, titulo de 3 linhas costuma encher as duas
   primeiras e deixar uma palavra sozinha na terceira; paragrafo faz o mesmo
   na ultima linha. 'balance' distribui as linhas do titulo; 'pretty' so evita
   a orfa no fim do paragrafo, sem reequilibrar o bloco inteiro.
   Navegador que nao suporta ignora e quebra como antes - nada regride.
   Para um caso teimoso, amarrar as duas ultimas palavras com &nbsp; no HTML.
   --------------------------------------------------------------------------- */
h1, h2, h3, h4 { text-wrap: balance; }
p, li { text-wrap: pretty; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--container-width), calc(100% - var(--container-padding))); margin-inline: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.btn-cta {
  background: var(--color-cta);
  color: #ffffff;
  border: 2px solid var(--color-cta);
  box-shadow: var(--shadow-cta);
}
.btn-cta:hover {
  transform: translateY(-2px);
  background: var(--color-cta-dark);
  border-color: var(--color-cta-dark);
  box-shadow: var(--shadow-cta);
}

/* Header de vendas */
.sales-header {
  position: relative;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(2, 54, 76, 0.10);
}
.sales-header-container {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.sales-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.sales-logo picture, .sales-logo img { display: block; }
.sales-logo img { width: 210px; height: auto; }
.sales-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  background: var(--color-cta);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: var(--shadow-cta);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.sales-header-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-cta); }

/* Componentes gerais */
.super-section-heading {
  max-width: 900px;
  margin: 0 auto 54px;
  text-align: center;
}
.super-section-kicker,
.super-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: var(--color-brand-light-80);
  color: var(--color-brand-primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.super-kicker {
  border: 1px solid rgba(118, 207, 245, 0.35);
  background: rgba(118, 207, 245, 0.10);
  color: var(--color-brand-light-30);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}
.super-section-heading h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: var(--color-brand-primary);
}
.super-section-heading p {
  /* centralizado: ultima linha curta salta. balance iguala as linhas. */
  text-wrap: balance;
  max-width: min(760px, 52ch);
  margin: 24px auto 0;
  color: var(--color-text-secondary);
  font-size: 1.08rem;
  line-height: 1.75;
}
.super-section-heading-light h2 { color: #ffffff; }
.super-section-heading-light p { color: rgba(255, 255, 255, 0.76); }
.super-section-kicker-dark {
  background: rgba(118, 207, 245, 0.12);
  color: var(--color-brand-light-30);
  border: 1px solid rgba(118, 207, 245, 0.30);
}
.super-main-cta { background: var(--color-cta); border-color: var(--color-cta); }
.super-section-action { display: flex; justify-content: center; margin-top: 44px; }

/* Hero */
.super-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  padding: 52px 0;
  background:
    radial-gradient(circle at 82% 22%, rgba(118, 207, 245, 0.20) 0%, rgba(118, 207, 245, 0) 34%),
    radial-gradient(circle at 15% 80%, rgba(245, 238, 93, 0.16) 0%, rgba(245, 238, 93, 0) 30%),
    linear-gradient(135deg, var(--color-brand-primary-deep) 0%, var(--color-brand-primary) 52%, var(--color-brand-primary-dark) 100%);
}
.super-hero::before,
.super-how::before,
.super-offer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.super-hero::before { mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.12)); }
.super-hero-grid,
.super-how .container,
.super-offer .container { position: relative; z-index: 1; }
.super-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  align-items: center;
  gap: 44px;
}
.super-hero-content { max-width: 660px; }
.super-hero-content h1 {
  margin: 0;
  max-width: 650px;
  font-family: var(--font-heading);
  font-size: clamp(2.7rem, 4.4vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: #ffffff;
}
.super-hero-content h1 span { display: block; color: var(--color-accent); }
.super-hero-content p {
  max-width: min(620px, 52ch);
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.65;
}
.super-hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.super-microcopy {
  margin-top: 14px !important;
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 0.88rem !important;
  line-height: 1.4 !important;
  font-weight: 700;
}
.super-hero-visual { display: flex; align-items: center; justify-content: center; }
.super-hero-frame {
  width: 100%;
  max-width: 680px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: var(--shadow-hero);
  backdrop-filter: blur(10px);
}
.super-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-dark-sm);
}

/* Dor */
.super-pain {
  padding: 104px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(118, 207, 245, 0.15) 0%, rgba(118, 207, 245, 0) 28%),
    linear-gradient(180deg, #ffffff 0%, var(--color-background-soft) 100%);
}
.super-pain-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.super-pain-item,
.super-offer-item { display: grid; grid-template-columns: 42px 1fr; align-items: start; gap: 16px; }
.super-pain-item {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(2, 54, 76, 0.10);
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.super-pain-item:hover,
.super-included-card:hover,
.super-benefit-card:hover,
.super-fit-card:hover,
.super-faq-item:hover {
  transform: translateY(-5px);
  border-color: rgba(83, 145, 172, 0.28);
  box-shadow: var(--shadow-md);
}
.super-pain-item span,
.super-benefit-card span,
.super-fit-card span,
.super-included-card > span,
.super-offer-item span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--color-brand-primary);
  color: var(--color-accent);
  font-size: 1.1rem;
  font-weight: 900;
}
.super-pain-item p {
  margin: 0;
  color: var(--color-brand-primary-deep);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 700;
}

/* Como funciona */
.super-how {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(245, 238, 93, 0.16) 0%, rgba(245, 238, 93, 0) 30%),
    linear-gradient(135deg, var(--color-brand-primary-deep) 0%, var(--color-brand-primary) 56%, var(--color-brand-primary-dark) 100%);
}
.super-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.super-flow-card {
  position: relative;
  min-height: 300px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-dark-lg);
  backdrop-filter: blur(14px);
}
.super-flow-card::after {
  content: "→";
  position: absolute;
  top: 28px;
  right: -29px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-brand-primary-deep);
  font-weight: 900;
  z-index: 2;
}
.super-flow-card:last-child::after { display: none; }
.super-flow-card span,
.super-offer-badge,
.super-fit-side-label,
.super-offer-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 13px;
  border-radius: var(--radius-pill);
  background: var(--color-accent);
  color: var(--color-brand-primary-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.super-flow-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.18;
  letter-spacing: -0.035em;
}
.super-flow-card p { margin: 16px 0 0; color: rgba(255, 255, 255, 0.76); font-size: 0.96rem; line-height: 1.65; }

/* Exemplos / carrossel */
.super-examples,
.super-included,
.super-benefits,
.super-fit,
.super-faq {
  padding: 104px 0 48px;
  background:
    radial-gradient(circle at 12% 18%, rgba(118, 207, 245, 0.14) 0%, rgba(118, 207, 245, 0) 28%),
    linear-gradient(180deg, #ffffff 0%, var(--color-background-soft) 100%);
}
.super-examples-carousel { max-width: 1040px; margin-inline: auto; }
.super-examples-stage {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(2, 54, 76, 0.10);
  box-shadow: var(--shadow-md);
}
.super-example-slide { display: none; }
.super-example-slide.is-active { display: block; }
.super-example-slide img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; }
.super-examples-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 24px; }
.super-example-button {
  min-height: 44px;
  padding: 10px 18px;
  /* 3,36:1 — WCAG 1.4.11. A 0.16 dava 1,35:1. Nao clarear. */
  border: 1px solid rgba(2, 54, 76, 0.55);
  border-radius: var(--radius-pill);
  background: #ffffff;
  color: var(--color-brand-primary);
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
/* O hover ESCURECE a borda: o azul-claro anterior (1,45:1) ficava mais
   fraco que o repouso. */
.super-example-button:hover { transform: translateY(-2px); background: var(--color-brand-light-80); border-color: var(--color-brand-primary); }
.super-example-button:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }
.super-example-status { display: inline-flex; align-items: baseline; justify-content: center; min-width: 88px; color: var(--color-brand-primary); font-family: var(--font-heading); font-weight: 900; }
.super-example-status span { font-size: 1.25rem; }
.super-example-status small { margin-left: 6px; color: var(--color-text-secondary); font-family: var(--font-body); font-size: 0.82rem; font-weight: 800; }
.super-examples-action { display: flex; justify-content: center; margin-top: 38px; }

/* O que recebe / benefícios */
.super-examples { background: radial-gradient(circle at 88% 16%, rgba(118, 207, 245, 0.14) 0%, rgba(118, 207, 245, 0) 30%), linear-gradient(180deg, var(--color-background-soft) 0%, #ffffff 100%); }
.super-included-grid,
.super-benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.super-included-card,
.super-benefit-card,
.super-fit-card {
  min-height: 245px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(2, 54, 76, 0.10);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.super-included-card > span,
.super-benefit-card span,
.super-fit-card span { margin-bottom: 18px; }
.super-included-card h3,
.super-benefit-card h3,
.super-fit-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--color-brand-primary-deep);
  font-size: 1.25rem;
  line-height: 1.22;
  letter-spacing: -0.03em;
}
.super-included-card p,
.super-benefit-card p,
.super-fit-card p { margin: 16px 0 0; color: var(--color-text-secondary); font-size: 0.96rem; line-height: 1.65; }
.super-included-featured {
  background: radial-gradient(circle at 90% 18%, rgba(245, 238, 93, 0.18) 0%, rgba(245, 238, 93, 0) 32%), linear-gradient(135deg, var(--color-brand-primary-deep) 0%, var(--color-brand-primary) 70%, var(--color-brand-primary-dark) 100%);
  border-color: rgba(118, 207, 245, 0.22);
}
.super-included-featured > span { background: var(--color-accent); color: var(--color-brand-primary-deep); }
.super-included-featured h3 { color: #ffffff; }
.super-included-featured p { color: rgba(255, 255, 255, 0.76); }
.super-included-action { display: flex; justify-content: center; margin-top: 44px; }
.super-benefit-card { min-height: 270px; }

/* Autor */
.super-author {
  padding: 104px 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(118, 207, 245, 0.16) 0%, rgba(118, 207, 245, 0) 30%),
    linear-gradient(180deg, var(--color-background-soft) 0%, #ffffff 100%);
}
.super-author-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 56px;
  overflow: hidden;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 82% 18%, rgba(245, 238, 93, 0.14) 0%, rgba(245, 238, 93, 0) 34%), linear-gradient(135deg, var(--color-brand-primary-deep) 0%, var(--color-brand-primary) 62%, var(--color-brand-primary-dark) 100%);
  border: 1px solid rgba(118, 207, 245, 0.16);
  box-shadow: var(--shadow-lg);
}
.super-author-photo { overflow: hidden; border-radius: var(--radius-lg); background: var(--color-brand-primary-deep); border: 1px solid rgba(255, 255, 255, 0.12); box-shadow: var(--shadow-dark-lg); }
.super-author-photo picture, .super-author-photo img { display: block; width: 100%; }
.super-author-photo img { aspect-ratio: 3 / 4; height: auto; object-fit: cover; object-position: center top; filter: brightness(1.04) saturate(0.96) contrast(1.03); }
.super-author-content h2,
.super-guarantee-content h2 { margin: 0; font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.08; letter-spacing: -0.045em; color: #ffffff; }
.super-author-content p,
.super-guarantee-content p { max-width: min(680px, 52ch); margin: 22px 0 0; color: rgba(255, 255, 255, 0.76); font-size: 1rem; line-height: 1.72; }
.super-author-metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 34px; }
.super-author-metric { padding: 18px; border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.12); }
.super-author-metric strong { display: block; font-family: var(--font-heading); color: var(--color-accent); font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1; letter-spacing: -0.04em; }
.super-author-metric span { display: block; margin-top: 8px; color: rgba(255, 255, 255, 0.66); font-size: 0.78rem; line-height: 1.35; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }

/* Para quem é */
.super-fit { background: radial-gradient(circle at 88% 16%, rgba(118, 207, 245, 0.14) 0%, rgba(118, 207, 245, 0) 30%), linear-gradient(180deg, var(--color-background-soft) 0%, #ffffff 100%); }
.super-fit-layout { display: grid; grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr); gap: 24px; align-items: stretch; }
.super-fit-main { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.super-fit-card { min-height: 245px; }
.super-fit-side {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 88% 14%, rgba(245, 238, 93, 0.18) 0%, rgba(245, 238, 93, 0) 32%), linear-gradient(135deg, var(--color-brand-primary-deep) 0%, var(--color-brand-primary) 68%, var(--color-brand-primary-dark) 100%);
  border: 1px solid rgba(118, 207, 245, 0.18);
  box-shadow: var(--shadow-lg);
}
.super-fit-side h3 { margin: 0; font-family: var(--font-heading); color: #ffffff; font-size: clamp(1.45rem, 2.6vw, 2rem); line-height: 1.12; letter-spacing: -0.04em; }
.super-fit-side p { margin: 18px 0 0; color: rgba(255, 255, 255, 0.74); font-size: 0.96rem; line-height: 1.68; }
.super-fit-side ul { margin: 24px 0 0; padding: 0; list-style: none; }
.super-fit-side li { position: relative; padding-left: 24px; color: rgba(255, 255, 255, 0.78); font-size: 0.94rem; line-height: 1.55; font-weight: 700; }
.super-fit-side li + li { margin-top: 12px; }
.super-fit-side li::before { content: "×"; position: absolute; left: 0; top: 0; color: var(--color-accent); font-weight: 900; }
.super-fit-side-note { margin-top: 26px !important; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.14); color: rgba(255, 255, 255, 0.88) !important; font-weight: 700; }

/* Garantia */
.super-guarantee {
  padding: 104px 0;
  background: radial-gradient(circle at 14% 18%, rgba(118, 207, 245, 0.14) 0%, rgba(118, 207, 245, 0) 30%), linear-gradient(180deg, #ffffff 0%, var(--color-background-soft) 100%);
}
.super-guarantee-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 54px;
  padding: 46px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 14% 18%, rgba(245, 238, 93, 0.16) 0%, rgba(245, 238, 93, 0) 32%), linear-gradient(135deg, var(--color-brand-primary-deep) 0%, var(--color-brand-primary) 62%, var(--color-brand-primary-dark) 100%);
  border: 1px solid rgba(118, 207, 245, 0.16);
  box-shadow: var(--shadow-lg);
}
.super-guarantee-visual { display: flex; align-items: center; justify-content: center; }
.super-guarantee-visual img { width: min(100%, 260px); height: auto; filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.22)); }
.super-guarantee-note { margin-top: 28px; padding: 22px 24px; border-radius: var(--radius-md); background: rgba(245, 238, 93, 0.12); border: 1px solid rgba(245, 238, 93, 0.24); color: rgba(255, 255, 255, 0.84); font-size: 0.98rem; line-height: 1.6; font-weight: 650; }
.super-guarantee-note strong { color: var(--color-accent); font-weight: 900; }

/* Oferta */
.super-offer {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(118, 207, 245, 0.18) 0%, rgba(118, 207, 245, 0) 30%),
    radial-gradient(circle at 88% 82%, rgba(245, 238, 93, 0.16) 0%, rgba(245, 238, 93, 0) 32%),
    linear-gradient(135deg, var(--color-brand-primary-deep) 0%, var(--color-brand-primary) 54%, var(--color-brand-primary-dark) 100%);
}
.super-offer-panel { display: grid; grid-template-columns: minmax(0, 1.14fr) minmax(340px, 0.86fr); gap: 28px; align-items: stretch; }
.super-offer-content { padding: 38px; border-radius: var(--radius-xl); background: linear-gradient(180deg, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.06) 100%); border: 1px solid rgba(255, 255, 255, 0.14); box-shadow: var(--shadow-dark-lg); backdrop-filter: blur(14px); }
.super-offer-badge { background: rgba(245, 238, 93, 0.14); color: var(--color-accent); border: 1px solid rgba(245, 238, 93, 0.28); }
.super-offer-content h3 { margin: 0; font-family: var(--font-heading); color: #ffffff; font-size: clamp(1.65rem, 3vw, 2.35rem); line-height: 1.1; letter-spacing: -0.04em; }
.super-offer-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
.super-offer-item { padding: 16px; border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.075); border: 1px solid rgba(255, 255, 255, 0.10); }
.super-offer-item span { width: 34px; height: 34px; border-radius: var(--radius-sm); background: var(--color-accent); color: var(--color-brand-primary-deep); font-size: 0.9rem; }
.super-offer-item p { margin: 0; color: rgba(255, 255, 255, 0.76); font-size: 0.94rem; line-height: 1.5; }
.super-offer-item strong { color: #ffffff; font-weight: 900; }
.super-offer-box { position: relative; padding: 10px; border-radius: var(--radius-xl); background: linear-gradient(135deg, rgba(245, 238, 93, 0.78) 0%, rgba(118, 207, 245, 0.62) 48%, rgba(245, 238, 93, 0.35) 100%); box-shadow: var(--shadow-hero); }
.super-offer-box-inner { height: 100%; padding: 34px; border-radius: var(--radius-lg); background: #ffffff; border: 1px solid rgba(2, 54, 76, 0.10); }
.super-offer-label { background: var(--color-brand-light-80); color: var(--color-brand-primary); }
.super-offer-box h3 { margin: 0; font-family: var(--font-heading); color: var(--color-brand-primary-deep); font-size: clamp(1.55rem, 2.8vw, 2.15rem); line-height: 1.1; letter-spacing: -0.04em; }
.super-offer-description { margin: 16px 0 0; color: var(--color-text-secondary); font-size: 0.96rem; line-height: 1.65; }
.super-offer-price { margin-top: 28px; padding: 26px 0 24px; border-top: 1px solid rgba(2, 54, 76, 0.10); border-bottom: 1px solid rgba(2, 54, 76, 0.10); }
.super-offer-price-label { display: block; margin-bottom: 8px; color: var(--color-text-secondary); font-size: 0.88rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }
.super-offer-price strong { display: block; font-family: var(--font-heading); color: var(--color-brand-primary); font-size: clamp(3rem, 6vw, 4.4rem); line-height: 0.95; letter-spacing: -0.07em; }
.super-offer-price small { display: block; margin-top: 10px; color: var(--color-text-secondary); font-size: 1.04rem; line-height: 1.4; font-weight: 800; }
.super-offer-guarantee { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: center; margin-top: 24px; padding: 18px; border-radius: var(--radius-md); background: var(--color-accent-bg); border: 1px solid rgba(172, 167, 65, 0.22); }
.super-offer-guarantee span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: var(--radius-sm); background: var(--color-accent); color: var(--color-brand-primary-deep); font-size: 1.1rem; font-weight: 900; }
.super-offer-guarantee p { margin: 0; color: var(--color-brand-primary-deep); font-size: 0.92rem; line-height: 1.45; font-weight: 750; }
.super-offer-cta { width: 100%; margin-top: 34px; min-height: 60px; font-size: 1rem; background: var(--color-cta); color: #ffffff; border: 2px solid var(--color-cta); box-shadow: var(--shadow-cta); }
.super-offer-cta:hover { background: var(--color-cta-dark); border-color: var(--color-cta-dark); color: #ffffff; transform: translateY(-2px); box-shadow: var(--shadow-cta); }
.super-offer-secure { margin: 14px 0 0; color: var(--color-text-secondary); font-size: 0.84rem; line-height: 1.45; font-weight: 800; text-align: center; }

/* FAQ */
.super-faq-list { max-width: 900px; margin: 0 auto; display: grid; gap: 14px; }
.super-faq-item { border-radius: var(--radius-md); background: #ffffff; border: 1px solid rgba(2, 54, 76, 0.10); box-shadow: var(--shadow-xs); overflow: hidden; transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease; }
.super-faq-item[open] { border-color: rgba(83, 145, 172, 0.32); box-shadow: var(--shadow-md); }
.super-faq-item summary { position: relative; display: flex; align-items: center; min-height: 72px; padding: 22px 70px 22px 26px; cursor: pointer; list-style: none; }
.super-faq-item summary::-webkit-details-marker { display: none; }
.super-faq-item summary span { font-family: var(--font-heading); color: var(--color-brand-primary-deep); font-size: 1.05rem; line-height: 1.35; font-weight: 800; letter-spacing: -0.02em; }
.super-faq-item summary::after { content: "+"; position: absolute; right: 24px; top: 50%; width: 34px; height: 34px; display: grid; place-items: center; border-radius: var(--radius-sm); background: var(--color-brand-light-80); color: var(--color-brand-primary); font-family: var(--font-heading); font-size: 1.35rem; line-height: 1; font-weight: 900; transform: translateY(-50%); }
.super-faq-item[open] summary::after { content: "–"; background: var(--color-brand-primary); color: var(--color-accent); }
.super-faq-item p { margin: 0; padding: 0 26px 26px; max-width: min(780px, 52ch); color: var(--color-text-secondary); font-size: 0.98rem; line-height: 1.7; }

/* WhatsApp */
/* padding-top proprio (antes 0: o respiro vinha da secao vizinha) e gradiente
   que CONTINUA descendo de tom em vez de repetir o fim do gradiente anterior.
   Ver secao 5 do design system. */
.super-whatsapp { padding: 56px 0 104px; background: linear-gradient(180deg, var(--color-background-soft) 0%, var(--color-brand-light-80) 100%); }
.super-whatsapp-panel { display: grid; grid-template-columns: 86px minmax(0, 1fr) auto; align-items: center; gap: 28px; padding: 34px; border-radius: var(--radius-lg); background: #ffffff; border: 1px solid rgba(2, 54, 76, 0.10); box-shadow: var(--shadow-md); }
.super-whatsapp-icon { width: 86px; height: 86px; display: grid; place-items: center; border-radius: var(--radius-lg); background: radial-gradient(circle at 30% 20%, rgba(245, 238, 93, 0.24) 0%, rgba(245, 238, 93, 0) 42%), var(--color-brand-primary); color: var(--color-accent); box-shadow: var(--shadow-brand); }
.super-whatsapp-icon svg { width: 48px; height: 48px; fill: currentColor; }
.super-whatsapp-content .super-section-kicker { margin-bottom: 14px; }
.super-whatsapp-content h2 { margin: 0; font-family: var(--font-heading); color: var(--color-brand-primary); font-size: clamp(1.65rem, 3vw, 2.45rem); line-height: 1.08; letter-spacing: -0.045em; }
.super-whatsapp-content p { max-width: min(640px, 52ch); margin: 14px 0 0; color: var(--color-text-secondary); font-size: 0.98rem; line-height: 1.65; }
.super-whatsapp-action { display: flex; justify-content: flex-end; }
.super-whatsapp-button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; padding: 14px 22px; border-radius: var(--radius-pill); background: var(--color-brand-primary); color: #ffffff; border: 2px solid var(--color-accent); font-size: 0.95rem; line-height: 1.2; font-weight: 900; white-space: nowrap; box-shadow: var(--shadow-brand); transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.super-whatsapp-button svg { width: 22px; height: 22px; fill: currentColor; flex-shrink: 0; }
.super-whatsapp-button:hover { transform: translateY(-2px); background: var(--color-brand-primary-dark); border-color: var(--color-accent-light); box-shadow: var(--shadow-brand); }

/* Footer */
.site-footer { padding: 72px 0 28px; background: var(--color-brand-primary-deep); color: #ffffff; }
.footer-main { display: grid; grid-template-columns: minmax(0, 1.4fr) 0.7fr 0.7fr; gap: 56px; padding-bottom: 42px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.footer-logo { display: inline-flex; align-items: center; margin-bottom: 22px; }
.footer-logo picture, .footer-logo img { display: block; }
.footer-logo img { width: 220px; height: auto; }
.footer-brand p { max-width: min(440px, 52ch); margin: 0; color: rgba(255, 255, 255, 0.68); font-size: 0.98rem; line-height: 1.65; }
.footer-nav, .footer-social { display: flex; flex-direction: column; align-items: flex-start; }
.footer-nav strong, .footer-social strong { margin-bottom: 16px; color: var(--color-accent); font-family: var(--font-heading); font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase; }
.footer-nav a, .footer-social a { margin-bottom: 10px; color: rgba(255, 255, 255, 0.72); font-size: 0.94rem; font-weight: 700; transition: color 0.2s ease; }
.footer-nav a:hover, .footer-social a:hover, .footer-legal-links a:hover { color: var(--color-accent); }
.footer-legal { display: flex; justify-content: space-between; gap: 32px; padding: 26px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.10); }
.footer-legal p { margin: 0; color: rgba(255, 255, 255, 0.58); font-size: 0.86rem; line-height: 1.6; }
.footer-legal-links { display: flex; align-items: flex-start; gap: 18px; flex-shrink: 0; }
.footer-legal-links a { color: rgba(255, 255, 255, 0.68); font-size: 0.86rem; font-weight: 700; transition: color 0.2s ease; }
.footer-bottom { padding-top: 24px; }
.footer-bottom p { margin: 0; color: rgba(255, 255, 255, 0.50); font-size: 0.84rem; }
.back-to-top { position: fixed; right: 24px; bottom: 24px; width: 48px; height: 48px; border: none; border-radius: var(--radius-pill); background: var(--color-brand-primary); color: #ffffff; font-size: 1.5rem; font-weight: 800; cursor: pointer; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(12px); transition: all 0.25s ease; z-index: 1000; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--color-brand-primary-dark); }

/* Responsivo */
@media (max-width: 1100px) {
  .super-included-grid,
  .super-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .super-hero-grid,
  .super-author-panel,
  .super-guarantee-panel,
  .super-offer-panel,
  .super-fit-layout { grid-template-columns: 1fr; }
  .super-hero-content { max-width: 760px; }
  .super-hero-frame { max-width: 760px; }
  .super-pain-list,
  .super-flow,
  .super-fit-main,
  .super-offer-list { grid-template-columns: 1fr; }
  .super-flow-card::after { content: "↓"; top: auto; right: 50%; bottom: -20px; transform: translateX(50%); }
  .super-author-photo { max-width: 420px; margin-inline: auto; }
  .super-author-metrics { grid-template-columns: repeat(2, 1fr); }
  .super-guarantee-panel { gap: 34px; text-align: center; }
  .super-guarantee-content p { margin-left: auto; margin-right: auto; }
  .super-guarantee-note { text-align: left; }
  .super-whatsapp-panel { grid-template-columns: 72px 1fr; }
  .super-whatsapp-icon { width: 72px; height: 72px; border-radius: var(--radius-md); }
  .super-whatsapp-icon svg { width: 40px; height: 40px; }
  .super-whatsapp-action { grid-column: 1 / -1; justify-content: stretch; }
  .super-whatsapp-button { width: 100%; }
}
@media (max-width: 768px) {
  .sales-header-container { min-height: 72px; }
  .sales-logo img { width: 165px; }
  .sales-header-cta { max-width: 180px; min-height: 40px; padding: 10px 14px; white-space: normal; text-align: center; line-height: 1.15; font-size: 0.78rem; }
  .btn { width: 100%; }
  .super-hero { min-height: calc(100vh - 72px); padding: 42px 0 58px; }
  .super-kicker { margin-bottom: 16px; font-size: var(--font-size-xs); }
  .super-hero-content h1 { font-size: clamp(2.1rem, 9.4vw, 2.7rem); line-height: 1.06; }
  .super-hero-content p { margin-top: 18px; font-size: 0.98rem; }
  .super-hero-actions { align-items: stretch; margin-top: 22px; }
  .super-microcopy { font-size: 0.82rem !important; }
  .super-hero-frame { padding: 14px; border-radius: var(--radius-md); }
  .super-hero-img { border-radius: var(--radius-sm); }
  .super-pain,
  .super-how,
  .super-examples,
  .super-included,
  .super-author,
  .super-benefits,
  .super-fit,
  .super-guarantee,
  .super-faq,
  .super-offer { padding: 80px 0; }
  .super-section-heading { text-align: left; margin-bottom: 40px; }
  .super-section-heading p { font-size: 1rem; }
  .super-pain-item,
  .super-flow-card,
  .super-included-card,
  .super-benefit-card,
  .super-fit-card { min-height: auto; padding: 24px; border-radius: var(--radius-lg); }
  .super-examples-stage { border-radius: var(--radius-md); }
  .super-examples-controls { gap: 10px; }
  .super-example-button { padding: 10px 14px; font-size: 0.82rem; }
  .super-example-status { min-width: 72px; }
  .super-included-grid,
  .super-benefits-grid { grid-template-columns: 1fr; }
  .super-author-panel,
  .super-guarantee-panel { padding: 24px; border-radius: var(--radius-lg); }
  .super-author-metrics { grid-template-columns: 1fr; }
  .super-guarantee-visual img { width: min(100%, 190px); }
  .super-guarantee-content { text-align: left; }
  .super-guarantee-content p { font-size: 0.96rem; }
  .super-offer-content { padding: 26px; border-radius: var(--radius-lg); }
  .super-offer-box { padding: 8px; border-radius: var(--radius-lg); }
  .super-offer-box-inner { padding: 26px; border-radius: var(--radius-lg); }
  .super-offer-price strong { font-size: clamp(3rem, 16vw, 4rem); }
  .super-offer-secure { font-size: 0.78rem; }
  .super-faq-list { gap: 12px; }
  .super-faq-item { border-radius: var(--radius-md); }
  .super-faq-item summary { min-height: 68px; padding: 20px 62px 20px 22px; }
  .super-faq-item summary span { font-size: 0.98rem; }
  .super-faq-item summary::after { right: 20px; width: 32px; height: 32px; border-radius: var(--radius-sm); font-size: 1.25rem; }
  .super-faq-item p { padding: 0 22px 24px; font-size: 0.95rem; }
  .super-whatsapp { padding: 40px 0 80px; }
  .super-whatsapp-panel { grid-template-columns: 1fr; gap: 22px; padding: 28px; border-radius: var(--radius-lg); }
  .super-whatsapp-icon { width: 68px; height: 68px; }
  .super-whatsapp-icon svg { width: 38px; height: 38px; }
  .super-whatsapp-content h2 { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  .super-whatsapp-content p { font-size: 0.96rem; }
  .super-whatsapp-button { min-height: 52px; white-space: normal; text-align: center; }
  .back-to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; }
  .site-footer { padding: 72px 0 28px; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-logo img { width: 190px; }
  .footer-legal { flex-direction: column; gap: 18px; }
  .footer-legal-links { flex-direction: column; gap: 10px; }
}
@media (max-width: 980px) and (min-width: 769px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Respeita quem pediu menos animacao no sistema operacional (WCAG 2.3.3). */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Alvos de toque do rodape no mobile: 19px de altura eram pequenos demais para
   o polegar (recomendacao: 44px). No desktop o ritmo original e preservado. */
@media (max-width: 768px) {
  .footer-nav a,
  .footer-social a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-bottom: 0;
  }
}
