/* ============================================================
   TERMÔMETRO DE VENDAS — Landing page (TimeDigital)
   Sistema adaptado do layout clonado (conteudo-infinito):
   tokens por tema, tipografia em duas vozes, botão pílula,
   accordions nativos, extras decorativos.
   ============================================================ */

@font-face {
  /* Ubuntu vem via Google Fonts <link> no index.html */
}

:root {
  /* Brand tokens */
  --ink: #10110F;      /* Escuro */
  --sand: #D7D2CB;     /* Areia — usado como tom secundário/superfície */
  --plum: #5C013F;     /* Ameixa */
  --orange: #FF6720;   /* Laranja — destaque visual (marca-texto, ícones, seção pop) */
  --green: #CCFF31;     /* Lima — cor do botão de compra (igual à referência), texto escuro por cima */
  --green-dark: var(--ink);

  --font: "Ubuntu", "Segoe UI", system-ui, -apple-system, sans-serif;
  --pad: clamp(20px, 5vw, 72px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-expo: cubic-bezier(0.87, 0, 0.13, 1);

  --radius: 20px;
  --radius-sm: 12px;
  --container: 1180px;

  --h1: clamp(1.5rem, 1.15rem + 1.4vw, 2.2rem);
  --h2: clamp(1.65rem, 1.4rem + 1.1vw, 2.6rem);
  --h3: clamp(1.2rem, 1.08rem + 0.5vw, 1.4rem);
  --body-lg: clamp(1.05rem, 1rem + 0.2vw, 1.15rem);
  --body: 1rem;
  --small: 0.875rem;
  --eyebrow: 0.78rem;

  --stack-lg: clamp(28px, 5vw, 56px);
  --stack-md: 20px;
}

/* ---------- Tema claro (padrão de TODAS as seções) ----------
   Tom próximo ao creme quase-branco da referência, só que com um
   fiapo de Areia (não usar a Areia crua como fundo — ela vira
   superfície/card, mais escura que o fundo, como no clone). */
.theme-light,
body {
  --bg: color-mix(in srgb, var(--sand) 22%, white 78%);
  --surface: color-mix(in srgb, var(--sand) 60%, white 40%);
  --surface-2: color-mix(in srgb, var(--sand) 80%, white 20%);
  --fg: var(--ink);
  --fg-dim: rgba(16, 17, 15, 0.68);
  --fg-faint: rgba(16, 17, 15, 0.42);
  --line: rgba(16, 17, 15, 0.12);
}

/* ---------- Tema laranja — "pop" único da página (dobra 4b) ---------- */
.theme-orange {
  --bg: var(--orange);
  --surface: rgba(16, 17, 15, 0.08);
  --surface-2: rgba(16, 17, 15, 0.14);
  --fg: var(--ink);
  --fg-dim: rgba(16, 17, 15, 0.66);
  --fg-faint: rgba(16, 17, 15, 0.44);
  --line: rgba(16, 17, 15, 0.2);
}

/* ---------- Tema escuro — só em CARDS/componentes, nunca em <section> ---------- */
.theme-dark {
  --bg: var(--ink);
  --surface: color-mix(in srgb, var(--ink) 95%, white 5%);
  --surface-2: color-mix(in srgb, var(--ink) 91%, white 9%);
  --fg: var(--sand);
  --fg-dim: rgba(215, 210, 195, 0.64);
  --fg-faint: rgba(215, 210, 195, 0.36);
  --line: rgba(215, 210, 195, 0.14);
}

.theme-light,
.theme-orange,
.theme-dark {
  background: var(--bg);
  color: var(--fg);
}

/* Pontos de luz laranjas — textura sutil, sem JS, pra dar dinamismo
   às seções claras (a versão animada/interativa fica só no hero). */
.theme-light {
  background-image: radial-gradient(rgba(255, 103, 32, 0.16) 1px, transparent 1.6px);
  background-size: 26px 26px;
}

.hero.theme-light {
  background-image: none;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--orange);
  color: var(--ink);
}

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

button {
  font-family: inherit;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--ink);
  color: var(--sand);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  z-index: 1100;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 12px;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.col-read {
  max-width: 62ch;
}

/* Coluna larga pra títulos centralizados: max-width em rem (não em ch do
   próprio heading) pra não encolher quando o --h2 responsivo cresce em
   telas largas — largura do container-pai é o que realmente decide a
   quebra de linha, não o max-width do h2 em si. */
.col-wide {
  max-width: 46rem;
}

.section {
  padding-block: clamp(44px, 7vw, 84px);
  position: relative;
}

@media (max-width: 480px) {
  .section {
    padding-block: clamp(36px, 9vh, 60px);
  }
}

/* ---------- Faixa rotativa (marquee) ---------- */
.marquee {
  overflow: hidden;
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
  width: max-content;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

.marquee-track span {
  font-size: clamp(0.78rem, 0.7rem + 0.4vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-right: 12px;
  color: var(--fg);
}

.marquee-track i {
  font-style: italic;
  color: var(--fg-dim);
  padding: 0 14px;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Mockup com tilt 3D no scroll (dobra 6) ---------- */
.scroll-tilt-track {
  position: relative;
  height: calc(100vh + (var(--frames, 7) * 45vh));
}

.scroll-tilt {
  position: sticky;
  top: 0;
  height: 100vh;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  perspective: 1400px;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-tilt-track {
    height: auto;
  }

  .scroll-tilt {
    position: static;
    height: auto;
    padding-block: clamp(32px, 6vw, 56px);
  }
}

.scroll-tilt__card {
  width: min(760px, 90vw);
  aspect-ratio: 16 / 10;
  border: 12px solid var(--ink);
  border-radius: 30px;
  background: var(--ink);
  box-shadow: 0 40px 70px -30px rgba(16, 17, 15, 0.45);
  padding: 14px;
  transform: rotateX(var(--tilt-rot, 20deg)) scale(var(--tilt-scale, 0.92));
  transform-origin: center bottom;
  will-change: transform;
}

@media (max-width: 640px) {
  .scroll-tilt__card {
    width: 92vw;
    aspect-ratio: 4 / 5;
  }
}

.scroll-tilt__frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: color-mix(in srgb, var(--sand) 30%, white 70%);
}

.scroll-tilt__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.scroll-tilt__frame img.is-active {
  opacity: 1;
}

.scroll-tilt__tag {
  font-size: 0.85rem;
  color: var(--fg-dim);
  text-align: center;
  max-width: 34ch;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-tilt__card {
    transform: none;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--eyebrow);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--plum);
}

.theme-orange .eyebrow,
.theme-dark .eyebrow {
  color: var(--ink);
}

.theme-dark .eyebrow {
  color: var(--orange);
}

/* ---------- Tipografia em duas vozes ---------- */
h1,
.h1,
h2,
.h2,
.section-title {
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.28;
  letter-spacing: -0.015em;
  max-width: 22ch;
  text-wrap: balance;
}

h1,
.h1 {
  font-size: var(--h1);
  max-width: 100%;
}

h2,
.h2 {
  font-size: var(--h2);
}

h3,
.h3 {
  font-size: var(--h3);
  font-weight: 700;
  line-height: 1.24;
  text-transform: none;
}

.lede {
  font-size: var(--body-lg);
  line-height: 1.6;
  color: var(--fg);
  opacity: 0.86;
}

em.accent {
  display: inline;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.2;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.theme-light em.accent,
.theme-orange em.accent {
  color: var(--fg);
  background-image: linear-gradient(transparent calc(100% - 0.41em), var(--orange) calc(100% - 0.41em));
  padding: 0 0.06em;
}

.theme-dark em.accent {
  color: var(--orange);
}

h1 em.accent {
  --mark-size: 1em;
}

.h2--wide {
  max-width: 100%;
}

/* Título pareado com imagem numa coluna estreita (dobra 7): reduz o
   tamanho pra encurtar a quebra de linha sem depender da largura do pai. */
.h2--tight {
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.9rem);
}

.muted {
  color: var(--fg-dim);
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

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

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  white-space: normal;
  text-align: center;
  padding: 18px 28px;
  min-height: 60px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.25;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

@media (min-width: 560px) {
  .btn {
    width: auto;
  }
}

.btn-text {
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.btn--cta {
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 10px 24px -12px rgba(204, 255, 49, 0.55);
}

.btn--cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green-dark);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease-expo);
  border-radius: inherit;
}

.btn--cta:hover::before,
.btn--cta:focus-visible::before {
  transform: translateY(0);
}

.btn--cta:hover .btn-text,
.btn--cta:focus-visible .btn-text {
  color: var(--green);
}

.btn--outline {
  background: var(--green);
  border: 1px solid var(--green);
  color: var(--ink);
  min-height: 44px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 700;
}

.btn--outline:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--green);
}

.btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
}

.btn-note {
  font-size: var(--small);
  color: var(--fg-dim);
}

/* ---------- Grain ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 900;
  pointer-events: none;
  opacity: 0.28;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* ---------- Cursor customizado ---------- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  pointer-events: none;
  border-radius: 50%;
  display: none;
}

@media (pointer: fine) {
  .cursor-dot {
    display: block;
  }

  .cursor-ring {
    display: flex;
  }
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 103, 32, 0.7);
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), background 0.35s;
}

.cursor-ring.hovering {
  width: 58px;
  height: 58px;
  background: rgba(255, 103, 32, 0.16);
}

@media (prefers-reduced-motion: reduce) {
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  padding-block: 16px;
  color: var(--ink);
  transition: transform 0.5s var(--ease-out), background 0.4s, color 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(16, 17, 15, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(215, 210, 195, 0.12);
  color: var(--sand);
  padding-block: 12px;
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo span {
  color: var(--orange);
}

/* espaço reservado no topo pro header fixo não cobrir o hero */
.hero {
  padding-top: clamp(84px, 10vw, 116px);
  padding-bottom: clamp(32px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}

/* Canvas de grid com distorção — mesmo efeito da referência, recolorido */
.hero-grid-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* ---------- Hero ---------- */
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(28px, 5vw, 48px);
  align-items: center;
}

@media (min-width: 960px) {
  .hero .container {
    max-width: 1340px;
  }

  .hero__grid {
    grid-template-columns: 1fr 1.12fr;
  }
}

.hero__copy > * + * {
  margin-top: 14px;
}

.hero__bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: var(--body-lg);
}

.check {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--plum);
}

.hero__visual {
  position: relative;
}

.hero__visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -12%;
  left: -8%;
  width: 70%;
  height: 55%;
  background: radial-gradient(circle, rgba(255, 103, 32, 0.3), transparent 70%);
  filter: blur(48px);
  pointer-events: none;
}

/* ---------- Mockup: dashboard (card escuro dentro de seção clara) ---------- */
.mock-browser {
  background: var(--ink);
  color: var(--sand);
  border-radius: var(--radius);
  border: 1px solid rgba(215, 210, 195, 0.14);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(16, 17, 15, 0.5);
}

.mock-browser__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  min-width: 0;
}

.mock-browser__bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(215, 210, 195, 0.28);
  flex: none;
}

.mock-browser__url {
  margin-left: 10px;
  font-size: 0.72rem;
  color: rgba(215, 210, 195, 0.66);
  background: rgba(0, 0, 0, 0.28);
  padding: 4px 10px;
  border-radius: 999px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mock-dash {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.mock-dash__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mock-brandbadge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: rgba(215, 210, 195, 0.66);
}

.mock-brandbadge__dot {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--orange), var(--plum));
  flex: none;
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mock-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.mock-card__label {
  font-size: 0.66rem;
  color: rgba(215, 210, 195, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mock-card__value {
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 4px;
  color: var(--sand);
}

.mock-card__value.orange {
  color: var(--orange);
}

.mock-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.mock-panel__title {
  font-size: 0.76rem;
  color: rgba(215, 210, 195, 0.6);
  margin-bottom: 10px;
}

/* Termômetro (gauge) — só tons de marca, sem azul */
.thermo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.thermo__track {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ink) 0%, var(--sand) 48%, var(--orange) 100%);
  position: relative;
}

.thermo__needle {
  position: absolute;
  top: -5px;
  width: 3px;
  height: 20px;
  background: var(--sand);
  border-radius: 2px;
  left: var(--pos, 70%);
}

.thermo__labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.66rem;
  color: rgba(215, 210, 195, 0.6);
  margin-top: 6px;
}

.mock-rows {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.mock-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(215, 210, 195, 0.7);
}

.mock-pill {
  font-size: 0.66rem;
  padding: 3px 9px;
  border-radius: 999px;
  font-weight: 500;
}

.mock-pill--hot {
  background: rgba(255, 103, 32, 0.2);
  color: var(--orange);
}

.mock-pill--warm {
  background: rgba(215, 210, 195, 0.18);
  color: var(--sand);
}

.mock-pill--cold {
  background: rgba(215, 210, 195, 0.07);
  color: rgba(215, 210, 195, 0.5);
}

/* Mockup: celular */
.mock-phone {
  position: absolute;
  right: -8px;
  bottom: -28px;
  width: 190px;
  background: var(--ink);
  border-radius: 26px;
  border: 6px solid #05060a;
  box-shadow: 0 24px 48px -20px rgba(16, 17, 15, 0.5);
}

.mock-phone__screen {
  background: linear-gradient(180deg, #17161c, var(--ink));
  border-radius: 18px;
  padding: 16px 12px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.mock-phone__q {
  font-size: 0.72rem;
  color: rgba(215, 210, 195, 0.6);
}

.mock-phone__question {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--sand);
  line-height: 1.35;
}

.mock-phone__opts {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}

.mock-phone__opts span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  color: rgba(215, 210, 195, 0.6);
}

.mock-phone__opts span.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--ink);
  font-weight: 700;
}

.mock-phone__done {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--orange);
}

.mock-phone__sub {
  font-size: 0.7rem;
  color: rgba(215, 210, 195, 0.6);
}

@media (max-width: 480px) {
  .mock-phone {
    width: 128px;
    right: 4px;
    bottom: -20px;
  }

  .mock-phone__screen {
    min-height: 176px;
    padding: 12px 10px;
  }
}

.mock-phone--lg {
  width: 340px;
}

.mock-phone--lg .mock-phone__screen {
  min-height: 420px;
  padding: 26px 20px;
}

.mock-phone--lg .mock-phone__question {
  font-size: 1.05rem;
}

.mock-phone--lg .mock-phone__opts span {
  width: 30px;
  height: 30px;
  font-size: 0.78rem;
}

@media (max-width: 420px) {
  .mock-phone--lg {
    width: 260px;
  }

  .mock-phone--lg .mock-phone__screen {
    min-height: 320px;
  }
}

.hero__visual-inner {
  position: relative;
  z-index: 1;
  padding-bottom: 48px;
}

@media (min-width: 620px) {
  .hero__visual-inner {
    padding-bottom: 72px;
    padding-right: 60px;
  }
}


.turn-mock .mock-phone__screen {
  min-height: 176px;
  padding: 12px 10px;
}

/* ---------- Grids genéricos ---------- */
.grid-2 {
  display: grid;
  gap: 16px;
}

@media (min-width: 720px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(32px, 5vw, 64px);
  }
}

@media (min-width: 720px) and (max-width: 959px) {
  .grid-2--agency {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 960px) {
  .grid-2--agency {
    align-items: stretch;
  }
}

/* Dobra 7: a imagem (celular) é mais estreita que uma coluna 1fr —
   dar mais espaço ao texto e menos à coluna da imagem evita o vão
   vazio entre as duas colunas em telas largas. */
@media (min-width: 720px) {
  .grid-2--tool {
    grid-template-columns: 1.35fr 0.65fr;
  }
}

.grid-2--tool .hero__visual-inner {
  justify-content: flex-start !important;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: var(--stack-md);
}

.stack-lg > * + * {
  margin-top: var(--stack-lg);
}

.mx-auto {
  margin-inline: auto;
}

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

/* h1/h2 têm max-width próprio (em ch) pra controlar quebra de linha;
   sem isso, em contexto centralizado o bloco encolhe mas fica preso
   à esquerda do container, com o texto "centralizado" só dentro
   dessa caixa estreita e deslocada — por isso a margem automática. */
.text-center h1,
.text-center h2,
.text-center .h2--wide {
  margin-inline: auto;
}

/* ---------- Bento grid (dobra 2) ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

@media (max-width: 900px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bento-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 2.6vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: color-mix(in srgb, var(--sand) 40%, white 60%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
}

.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(440px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 103, 32, 0.14), transparent 62%);
  opacity: 0;
  transition: opacity 0.4s;
}

.bento-card:hover {
  border-color: rgba(255, 103, 32, 0.4);
  transform: translateY(-3px);
}

.bento-card:hover::after {
  opacity: 1;
}

.size-xl {
  grid-column: span 3;
  grid-row: span 2;
}

.size-half {
  grid-column: span 3;
}

.size-wide {
  grid-column: span 6;
}

@media (max-width: 900px) {
  .size-xl,
  .size-half,
  .size-wide {
    grid-column: span 2;
    grid-row: auto;
  }
}

.bc-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--fg-dim);
  font-weight: 500;
}

.bento-card h3 {
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem);
}

.bento-card p {
  color: var(--fg-dim);
  font-size: 0.92rem;
  max-width: 46ch;
}

.bc-visual {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bc-dots {
  display: flex;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
}

.bc-dots i {
  flex: 1;
  height: 26px;
  max-width: 24px;
  border-radius: 5px;
  background: var(--orange);
  opacity: 0.9;
}

.bc-url {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: color-mix(in srgb, var(--sand) 20%, white 80%);
  flex-wrap: wrap;
}

.bc-url span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}

.bc-url b {
  font-size: 0.85rem;
  color: var(--fg-dim);
  font-weight: 500;
}

.nps-score {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.nps-score strong {
  font-size: 2.4rem;
  color: var(--plum);
  font-weight: 700;
}

.nps-score span {
  font-size: var(--small);
  color: var(--fg-dim);
}

.segment-bars {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.segment-bar {
  display: grid;
  grid-template-columns: 70px 1fr 44px;
  align-items: center;
  gap: 10px;
  font-size: var(--small);
}

.segment-bar__track {
  height: 10px;
  border-radius: 999px;
  background: rgba(16, 17, 15, 0.08);
  overflow: hidden;
}

.segment-bar__fill {
  height: 100%;
  border-radius: 999px;
}

.segment-bar__fill.hot {
  background: var(--orange);
  width: 52%;
}

.segment-bar__fill.warm {
  background: var(--plum);
  width: 31%;
}

.segment-bar__fill.cold {
  background: color-mix(in srgb, var(--ink) 30%, white 70%);
  width: 17%;
}

/* ---------- Mecanismo (NPS / Lead score) — cards escuros em seção clara ---------- */
.mech-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 760px) {
  .mech-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

.mech-card {
  background: var(--ink);
  color: var(--sand);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 30px);
}

.mech-card .muted {
  color: rgba(215, 210, 195, 0.64);
}

.mech-card h3 {
  color: var(--sand);
}

.mech-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.mech-card__title .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  flex: none;
}

.mech-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.mech-card ul li {
  display: flex;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(215, 210, 195, 0.7);
}

.mech-card ul li .check {
  color: var(--orange);
}

.mech-card__callout {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 103, 32, 0.1);
  font-size: 0.92rem;
  color: var(--sand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ---------- Agência ---------- */
.agency-mark {
  display: inline-flex;
  gap: 3px;
  margin-bottom: 18px;
}

.agency-mark span {
  width: 34px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
}

.agency-mark span:nth-child(2) {
  background: var(--plum);
}

.agency-mark span:nth-child(3) {
  background: var(--fg-faint);
}

.agency-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
  container-type: inline-size;
  container-name: agency-photo;
}

.agency-photo img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: bottom;
}

.agency-quote {
  position: absolute;
  top: clamp(10px, 4cqw, 24px);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(220px, 62cqw, 440px);
  background: var(--ink);
  color: var(--sand);
  border-radius: var(--radius-sm);
  padding: clamp(10px, 4.5cqw, 24px);
  box-shadow: 0 20px 40px -18px rgba(16, 17, 15, 0.55);
}

.agency-quote__mark {
  width: clamp(16px, 6cqw, 28px);
  height: clamp(13px, 5cqw, 22px);
  color: var(--orange);
}

.agency-quote__text {
  margin-top: clamp(6px, 3cqw, 13px);
  font-family: var(--font);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.78rem, 4.6cqw, 1.25rem);
  line-height: 1.3;
  color: var(--sand);
}

.agency-quote__foot {
  margin-top: clamp(6px, 3cqw, 15px);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.6rem, 2.4cqw, 0.8rem);
  color: rgba(215, 210, 195, 0.64);
}

.agency-quote__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex: none;
}

@media (max-width: 959px) {
  .agency-photo {
    display: flex;
    flex-direction: column;
  }

  .agency-photo img {
    aspect-ratio: 4 / 3;
  }

  .agency-quote {
    position: static;
    left: auto;
    transform: none;
    width: auto;
    border-radius: 0;
    box-shadow: none;
  }
}

/* Números da agência — dobra 4b, tema laranja (o "pop" único) */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: clamp(24px, 4vw, 36px) 16px;
  text-align: center;
  border-left: 1px solid var(--line);
}

.stat:first-child {
  border-left: none;
}

.stat-num {
  display: block;
  font-size: clamp(2rem, 1.5rem + 2vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 8px;
  font-size: var(--small);
  color: var(--fg-dim);
}

/* ---------- Dobra 5 — diagnóstico interativo ---------- */
.dx-head {
  text-align: center;
  max-width: 46rem;
  margin-inline: auto;
}

.dx-hint {
  margin-top: 10px;
  font-size: var(--small);
  color: var(--fg-dim);
}

.dx-layout {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
  align-items: start;
  margin-top: var(--stack-lg);
}

@media (min-width: 860px) {
  .dx-layout {
    grid-template-columns: 1fr minmax(260px, 320px);
  }
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  height: 100%;
  text-align: left;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--sand) 40%, white 60%);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-out);
}

.pain-item:hover {
  border-color: rgba(255, 103, 32, 0.5);
  transform: translateY(-2px);
}

.pain-item[aria-pressed="true"] {
  border-color: var(--ink);
  background: rgba(255, 103, 32, 0.12);
}

.pain-box {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border: 1.5px solid var(--line);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}

.pain-box svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 26;
  stroke-dashoffset: 26;
  transition: stroke-dashoffset 0.35s var(--ease-out) 0.05s;
}

.pain-item[aria-pressed="true"] .pain-box {
  background: var(--orange);
  border-color: var(--orange);
}

.pain-item[aria-pressed="true"] .pain-box svg {
  stroke-dashoffset: 0;
  stroke: var(--ink);
}

.pain-txt {
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--fg-dim);
  transition: color 0.3s;
}

.pain-item:hover .pain-txt,
.pain-item[aria-pressed="true"] .pain-txt {
  color: var(--fg);
}

.dx-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--sand) 60%, white 40%);
  padding: clamp(22px, 2.6vw, 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  transition: border-color 0.4s, background 0.4s;
}

.dx-panel[data-state="hit"] {
  border-color: var(--orange);
  background: rgba(255, 103, 32, 0.1);
}

.dx-ring {
  position: relative;
  width: 120px;
  height: 120px;
}

.dx-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.dxr-bg,
.dxr-fg {
  fill: none;
  stroke-width: 8;
}

.dxr-bg {
  stroke: var(--line);
}

.dxr-fg {
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-dasharray: 326.7;
  stroke-dashoffset: 326.7;
  transition: stroke-dashoffset 0.5s var(--ease-out);
}

.dx-count {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.dx-count b {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.dx-count i {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--fg-dim);
}

.dx-verdict {
  font-size: 1rem;
  line-height: 1.45;
  color: var(--fg-dim);
  min-height: 2.9em;
}

.dx-panel[data-state="hit"] .dx-verdict {
  color: var(--fg);
}

.dx-verdict em {
  font-style: italic;
  color: var(--orange);
}

.dx-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--plum);
}

.dx-cta span {
  transition: transform 0.25s var(--ease-out);
}

.dx-cta:hover span {
  transform: translateX(4px);
}

/* ---------- Passos da ferramenta ---------- */
.steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 16px;
  padding-block: 16px;
  border-top: 1px solid var(--line);
}

.step:first-child {
  border-top: none;
}

.step__num {
  counter-increment: step;
  font-weight: 700;
  color: var(--plum);
  font-size: 2.4rem;
  line-height: 1;
}

.step__num::before {
  content: counter(step, decimal-leading-zero);
}

.step p {
  font-size: 0.98rem;
}

.tool-callout {
  margin-top: var(--stack-md);
  font-size: var(--body-lg);
  font-weight: 500;
}

/* ---------- Como usar — cards numerados com setas ---------- */
.numbered-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: var(--stack-lg);
}

@media (min-width: 860px) {
  .numbered-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
  }
}

.num-card {
  background: color-mix(in srgb, var(--sand) 40%, white 60%);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.4s, transform 0.4s var(--ease-out);
}

.num-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 103, 32, 0.14), transparent 62%);
  opacity: 0;
  transition: opacity 0.4s;
}

.num-card:hover {
  border-color: rgba(255, 103, 32, 0.4);
  transform: translateY(-3px);
}

.num-card:hover::after {
  opacity: 1;
}

.num-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.num-card__num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -0.02em;
}

.num-card__badge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 103, 32, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.num-card__badge svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
}

.num-arrow {
  display: none;
  color: var(--fg-faint);
  font-size: 1.3rem;
  text-align: center;
}

@media (min-width: 860px) {
  .num-arrow {
    display: block;
  }
}

/* ---------- É pra você / não é ---------- */
.fit-grid {
  display: grid;
  gap: 16px;
  margin-top: var(--stack-lg);
}

@media (min-width: 760px) {
  .fit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.fit-card {
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
}

.fit-card--yes {
  background: rgba(255, 103, 32, 0.12);
  border: 1px solid rgba(255, 103, 32, 0.4);
}

.fit-card--no {
  background: var(--ink);
  color: var(--sand);
  border: none;
}

.fit-card--no .muted {
  color: rgba(215, 210, 195, 0.64);
}

.fit-card--no .fit-mark {
  color: rgba(215, 210, 195, 0.64);
}

.fit-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.fit-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fit-card li {
  display: flex;
  gap: 10px;
  font-size: 0.95rem;
}

.fit-mark {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 1px;
}

/* ---------- Objeções — cards clicáveis com número + citação ---------- */
.obj-grid {
  display: grid;
  gap: 16px;
  margin-top: var(--stack-lg);
}

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

.obj-hint {
  margin-top: 10px;
  font-size: var(--small);
  color: var(--fg-dim);
}

.obj-card {
  background: color-mix(in srgb, var(--sand) 40%, white 60%);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  transition: border-color 0.4s;
}

.obj-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(440px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 103, 32, 0.14), transparent 62%);
  opacity: 0;
  transition: opacity 0.4s;
}

.obj-card:hover {
  border-color: rgba(255, 103, 32, 0.4);
}

.obj-card:hover::after {
  opacity: 1;
}

.obj-head {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  padding: 22px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: inherit;
}

.obj-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.obj-num {
  font-style: italic;
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--plum);
}

.obj-tag {
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
}

.obj-quote {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.obj-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--small);
  font-weight: 500;
  color: var(--plum);
}

.obj-plus {
  position: relative;
  width: 16px;
  height: 16px;
  flex: none;
}

.obj-plus::before,
.obj-plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.3s var(--ease-out);
}

.obj-plus::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
}

.obj-plus::after {
  left: 50%;
  top: 0;
  height: 100%;
  width: 2px;
  margin-left: -1px;
}

.obj-head[aria-expanded="true"] .obj-plus::after {
  transform: rotate(90deg);
}

.obj-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease-out);
}

.obj-body[data-open="true"] {
  grid-template-rows: 1fr;
}

.obj-body-in {
  overflow: hidden;
  min-height: 0;
}

.obj-body-in p {
  padding: 0 22px 22px;
  font-size: 0.98rem;
  color: var(--fg-dim);
}

.obj-body-in p + p {
  margin-top: 10px;
}

/* ---------- Ancoragem de valor — fluxo de duas caixas conectadas ---------- */
.mc-flow {
  display: block;
  max-width: 860px;
  margin-inline: auto;
  text-align: left;
}

.mc-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 30px);
  background: color-mix(in srgb, var(--sand) 40%, white 60%);
  text-align: left;
}

.mc-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}

@media (min-width: 640px) {
  .mc-items {
    grid-template-columns: 1fr 1fr;
  }
}

.mc-item {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--sand) 40%, white 60%);
  border: 1px solid var(--line);
}

.mc-item__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mc-item__check {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mc-item__check svg {
  width: 13px;
  height: 13px;
}

.mc-item__head h4 {
  flex: 1;
  min-width: 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
}

.mc-item__price {
  flex: none;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--fg-faint);
  white-space: nowrap;
}

.mc-item > p {
  margin-top: 8px;
  margin-left: 34px;
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--fg-dim);
}

@media (max-width: 480px) {
  .mc-item__head {
    flex-wrap: wrap;
  }

  .mc-item__price {
    margin-left: 34px;
  }
}

.mc-step.credit {
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  text-align: center;
  border: 1px solid rgba(255, 103, 32, 0.35);
  background: radial-gradient(ellipse 70% 90% at 50% 0%, rgba(255, 103, 32, 0.28), transparent 70%), var(--ink);
  box-shadow: 0 30px 60px -30px rgba(16, 17, 15, 0.55);
}

.mcs-label {
  display: block;
  font-size: var(--small);
  color: var(--fg-dim);
  margin-bottom: 14px;
}

.mc-step.credit .mcs-label {
  color: rgba(215, 210, 195, 0.7);
}

.mcs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mcs-list li {
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
  color: var(--fg-faint);
}

.mcs-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mcs-list li s {
  text-decoration-color: rgba(16, 17, 15, 0.4);
}

.mcs-value {
  display: block;
  font-size: clamp(2.6rem, 2rem + 2.2vw, 3.4rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  text-shadow: 0 0 40px rgba(255, 103, 32, 0.35);
}

.mcs-sub {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: rgba(215, 210, 195, 0.7);
}


/* ---------- Oferta — checklist + card de preço ---------- */
.offer-layout {
  display: grid;
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}

@media (min-width: 860px) {
  .offer-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.offer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--sand) 40%, white 60%);
}

.oi-check {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 103, 32, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.oi-check svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.oi-text h3 {
  font-size: 1rem;
}

.oi-text p {
  margin-top: 2px;
  font-size: 0.88rem;
  color: var(--fg-dim);
}

.offer-aside {
  position: sticky;
  top: 96px;
}

.price-block {
  border-radius: 22px;
  background: color-mix(in srgb, var(--sand) 30%, white 70%);
  color: var(--fg);
  border: 1px solid rgba(255, 103, 32, 0.4);
  padding: clamp(28px, 4vw, 40px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.price-block::before {
  content: "";
  position: absolute;
  top: -60%;
  left: 50%;
  width: 130%;
  height: 130%;
  transform: translateX(-50%);
  z-index: -1;
  background: radial-gradient(circle at 50% 30%, rgba(255, 103, 32, 0.16), transparent 58%);
  pointer-events: none;
}

.pa-label,
.pf-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.pf-label {
  margin-top: 14px;
}

.pa-value {
  font-size: 1.15rem;
  color: var(--fg-dim);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 103, 32, 0.6);
}

.pf-value {
  font-size: clamp(3rem, 2.4rem + 2.4vw, 4rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.pf-cash {
  font-size: 0.85rem;
  color: var(--fg-dim);
  margin-top: 2px;
}

.price-block .btn-wrap {
  margin-top: 16px;
}

.price-block .btn-note {
  color: var(--fg-dim);
}

.pb-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  width: 100%;
}

.pb-badge {
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--fg-dim);
}

/* ---------- FAQ nativo (details/summary) ---------- */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: var(--stack-lg);
}

.acc-item {
  background: color-mix(in srgb, var(--sand) 40%, white 60%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.acc-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}

.acc-item summary::-webkit-details-marker {
  display: none;
}

.acc-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: none;
}

.acc-icon::before,
.acc-icon::after {
  content: "";
  position: absolute;
  background: var(--plum);
  transition: transform 0.3s var(--ease-out);
}

.acc-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
}

.acc-icon::after {
  left: 50%;
  top: 0;
  height: 100%;
  width: 2px;
  margin-left: -1px;
}

.acc-item[open] .acc-icon::after {
  transform: rotate(90deg);
}

.acc-body p {
  padding: 0 22px 20px;
  font-size: 0.98rem;
  color: var(--fg-dim);
}

/* ---------- CTA final ---------- */
.final-grid {
  display: grid;
  gap: clamp(28px, 6vw, 48px);
  align-items: center;
}

@media (min-width: 860px) {
  .final-grid {
    grid-template-columns: 1fr minmax(340px, 0.9fr);
  }
}

.final-mock {
  max-width: 420px;
  width: 100%;
}

@media (min-width: 860px) {
  .final-mock {
    margin-left: auto;
  }
}

/* ---------- Rodapé ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(215, 210, 195, 0.7);
  padding-block: 32px;
  font-size: var(--small);
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.site-footer a {
  color: rgba(215, 210, 195, 0.7);
  text-decoration: underline;
}

.site-footer__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  justify-content: center;
}

.site-footer__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}

.site-footer__contacts a:hover {
  text-decoration: underline;
}

.site-footer__contacts svg {
  flex: none;
  width: 15px;
  height: 15px;
  color: var(--orange);
}

/* ---------- CTA fixo mobile ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 500;
  background: rgba(16, 17, 15, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(215, 210, 195, 0.16);
  padding: 12px var(--pad) calc(12px + env(safe-area-inset-bottom));
  transform: translateY(120%);
  transition: transform 0.25s ease;
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta .btn {
  width: 100%;
}

@media (min-width: 860px) {
  .sticky-cta {
    display: none;
  }
}
