/* ==========================================================================
   VIA DNA — Landing Page
   CSS puro, organizado por seção. Sem frameworks, sem pré-processadores.
   ========================================================================== */

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  overflow-x: hidden;
  padding-top: var(--header-height);
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}

/* Evita que os links internos do menu escondam o topo da seção atrás do header fixo */
#top,
#beneficios,
#relatorio,
#preco,
#faq {
  scroll-margin-top: var(--header-height);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; }
address { font-style: normal; }

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ==========================================================================
   DESIGN TOKENS
   ========================================================================== */
:root {
  /* Cores */
  --color-background: oklch(1 0 0);
  --color-foreground: oklch(0.15 0.02 260);

  --color-card: oklch(1 0 0);
  --color-card-foreground: oklch(0.15 0.02 260);

  --color-primary: oklch(0.32 0.08 250);
  --color-primary-foreground: oklch(0.99 0.005 250);
  --color-primary-glow: oklch(0.55 0.13 250);

  --color-secondary: oklch(0.965 0.012 250);
  --color-secondary-foreground: oklch(0.2 0.04 260);

  --color-muted: oklch(0.97 0.008 250);
  --color-muted-foreground: oklch(0.48 0.02 260);

  --color-accent: oklch(0.62 0.24 27);
  --color-accent-foreground: oklch(0.99 0.005 250);

  --color-success: oklch(0.68 0.19 145);
  --color-success-foreground: oklch(0.99 0.005 250);

  --color-buy: #F59E0B;
  --color-buy-foreground: #1E293B;

  --color-warning: oklch(0.82 0.18 118);
  --color-warning-foreground: oklch(0.2 0.04 260);

  --color-destructive: oklch(0.62 0.24 27);
  --color-destructive-foreground: oklch(0.99 0.005 250);

  --color-border: oklch(0.92 0.008 250);

  /* Tipografia */
  --font-display: "Sora", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;

  /* Raios */
  --radius: 0.75rem;
  --radius-xl: calc(var(--radius) + 4px);
  --radius-2xl: calc(var(--radius) + 8px);
  --radius-3xl: calc(var(--radius) + 12px);

  /* Gradientes */
  --gradient-hero: linear-gradient(135deg, oklch(0.18 0.03 258) 0%, oklch(0.24 0.06 258) 55%, oklch(0.32 0.09 250) 100%);
  --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-primary-glow));
  --gradient-accent: linear-gradient(135deg, oklch(0.62 0.24 27), oklch(0.72 0.2 45));
  --gradient-subtle: linear-gradient(180deg, oklch(0.98 0.008 250), oklch(1 0 0));
  --gradient-radial:
    radial-gradient(circle at 15% 20%, color-mix(in oklab, oklch(0.62 0.24 27) 25%, transparent), transparent 55%),
    radial-gradient(circle at 85% 80%, color-mix(in oklab, oklch(0.82 0.18 118) 20%, transparent), transparent 55%);

  /* Sombras */
  --shadow-elegant: 0 20px 60px -20px color-mix(in oklab, var(--color-primary) 35%, transparent);
  --shadow-soft: 0 8px 30px -12px color-mix(in oklab, var(--color-primary) 20%, transparent);
  --shadow-glow: 0 0 60px color-mix(in oklab, var(--color-primary-glow) 40%, transparent);

  /* Layout */
  --container-width: 1152px;
  --container-narrow-width: 768px;

  /* Cabeçalho fixo (usado para compensar o espaço do header fixo) */
  --header-height: 3.75rem;
}

/* ==========================================================================
   LAYOUT / UTILIDADES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: 1rem;
}

.container--narrow {
  max-width: var(--container-narrow-width);
}

/* max-w-4xl (896px) — usado apenas no CTA final, que é mais largo que o FAQ */
.container--medium {
  max-width: 56rem;
}

.section {
  padding-block: 5rem;
}

.text-accent { color: var(--color-accent); }
.text-primary { color: var(--color-primary); }
.text-headache { color: #f52027; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 100;
  background: var(--color-primary);
  color: var(--color-primary-foreground);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ==========================================================================
   ÍCONES
   ========================================================================== */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.icon--sm { width: 1rem; height: 1rem; }
.icon--xs { width: 0.75rem; height: 0.75rem; }
.icon--md { width: 1.5rem; height: 1.5rem; }
.icon--lg { width: 1.75rem; height: 1.75rem; }

.icon--fill { fill: currentColor; }
.icon--success { color: var(--color-success); }
.icon--warning { color: var(--color-warning); }
.icon--accent { color: var(--color-accent); }

.icon--arrow {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}

/* ==========================================================================
   BOTÕES (WhatsApp)
   ========================================================================== */
/* Tamanho "md" (padrão): px-4 py-2.5 sm:px-6 sm:py-3 text-sm sm:text-base */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 999px;
  background-color: var(--color-success);
  color: var(--color-success-foreground);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25;
  box-shadow: var(--shadow-elegant);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  transform: scale(1.02);
  box-shadow: var(--shadow-glow);
}

.btn-whatsapp:hover .icon--arrow {
  transform: translateX(3px);
}

/* Tamanho "lg": px-4 py-3 sm:px-6 sm:py-4 text-sm sm:text-base md:text-lg */
.btn-whatsapp--lg {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}

.btn-whatsapp--block {
  width: 100%;
}

.btn-whatsapp-compact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background-color: var(--color-success);
  color: var(--color-success-foreground);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
  box-shadow: var(--shadow-soft);
  transition: opacity 0.2s ease;
}

.btn-whatsapp-compact:hover { opacity: 0.9; }

.btn-whatsapp-compact__short { display: inline; }
.btn-whatsapp-compact__full { display: none; }

/* Botão de compra direta (checkout) */
.btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 999px;
  background-color: var(--color-buy);
  color: var(--color-buy-foreground);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25;
  box-shadow: var(--shadow-elegant);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-buy:hover,
.btn-buy:focus-visible {
  transform: scale(1.02);
  box-shadow: var(--shadow-glow);
}

.btn-buy:hover .icon--arrow {
  transform: translateX(3px);
}

.btn-buy--lg {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}

.btn-buy--block {
  width: 100%;
}

/* ==========================================================================
   CABEÇALHO / NAVEGAÇÃO
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  border-bottom: 1px solid color-mix(in oklab, var(--color-border) 60%, transparent);
  background-color: color-mix(in oklab, var(--color-background) 85%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
}

.logo-link { display: flex; align-items: center; gap: 0.5rem; }
.logo { height: 2rem; width: auto; }

.nav {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: var(--color-muted-foreground);
}

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

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero__radial {
  position: absolute;
  inset: 0;
  background: var(--gradient-radial);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  gap: 3rem;
  padding-block: 4rem;
}

.hero__content { color: var(--color-primary-foreground); }

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, white 20%, transparent);
  background-color: color-mix(in oklab, white 10%, transparent);
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
}

.badge-pill--success {
  margin-bottom: 0.75rem;
  border: none;
  background-color: color-mix(in oklab, var(--color-success) 10%, transparent);
  color: var(--color-success);
}

.badge-pill--outline {
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.05;
}

.hero__desc {
  max-width: 36rem;
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: color-mix(in oklab, white 85%, transparent);
}

.hero__cta-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero__price-note {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: color-mix(in oklab, white 80%, transparent);
}

.hero__price-note-value {
  font-weight: 600;
  color: white;
}

.hero__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: color-mix(in oklab, white 85%, transparent);
}

.hero__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__image-wrap { position: relative; }

.hero__image-glow {
  position: absolute;
  inset: -1.5rem;
  border-radius: var(--radius-3xl);
  background-color: color-mix(in oklab, white 10%, transparent);
  filter: blur(40px);
}

.hero__image {
  position: relative;
  width: 100%;
  border-radius: var(--radius-3xl);
  border: 1px solid color-mix(in oklab, white 20%, transparent);
  object-fit: cover;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.hero__badge-card {
  display: none;
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  max-width: 16rem;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-border);
  background-color: var(--color-card);
  color: var(--color-card-foreground);
  box-shadow: var(--shadow-elegant);
}

.hero__badge-card-icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-xl);
  background-color: color-mix(in oklab, var(--color-success) 15%, transparent);
  color: var(--color-success);
}

.hero__badge-card-label {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted-foreground);
}

.hero__badge-card-value { font-size: 0.875rem; line-height: 1.25rem; font-weight: 700; }

/* ==========================================================================
   BARRA DE CONFIANÇA (carrossel automático / marquee)
   ========================================================================== */
.trustbar {
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
  background-color: color-mix(in oklab, var(--color-secondary) 40%, transparent);
  /* Esmaece as bordas esquerda/direita para o efeito de carrossel infinito */
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.trustbar__track {
  display: flex;
  width: max-content;
  padding-block: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  animation: trustbar-scroll 32s linear infinite;
}

/* Pausa a rolagem ao passar o mouse, para permitir a leitura */
.trustbar:hover .trustbar__track,
.trustbar:focus-within .trustbar__track {
  animation-play-state: paused;
}

.trustbar__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 3rem;
  padding-inline: 1.5rem;
}

.trustbar__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  color: var(--color-muted-foreground);
}

/* Rolagem contínua: cada grupo é 1/6 da faixa, então -16.6667% = a largura de um grupo */
@keyframes trustbar-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-16.6667%); }
}

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

/* ==========================================================================
   BENEFÍCIOS
   ========================================================================== */
.section-header {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background-color: color-mix(in oklab, var(--color-accent) 10%, transparent);
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
}

.section-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  text-align: center;
}

.section-title--left { text-align: left; }

.section-desc {
  margin-top: 1rem;
  color: var(--color-muted-foreground);
  text-align: center;
}

.section-desc--left { text-align: left; }

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.section-cta--left { justify-content: flex-start; }

/* mt-8 (relatório e CTA final) */
.section-cta--tight { margin-top: 2rem; }

/* mt-10 (FAQ) */
.section-cta--sm { margin-top: 2.5rem; }

.benefits__grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.benefit-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  background-color: var(--color-card);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in oklab, var(--color-accent) 40%, transparent);
  box-shadow: var(--shadow-soft);
}

.benefit-card__icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-xl);
  background: var(--gradient-accent);
  color: var(--color-primary-foreground);
  box-shadow: var(--shadow-soft);
}

.benefit-card__title {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
}

.benefit-card__desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--color-muted-foreground);
}

/* ==========================================================================
   RELATÓRIO (PREVIEW)
   ========================================================================== */
.report--muted {
  background-color: color-mix(in oklab, var(--color-secondary) 40%, transparent);
}

.report__grid {
  display: grid;
  gap: 3rem;
}

.report__preview { position: relative; order: 2; }
.report__content { order: 1; }

.report__glow {
  position: absolute;
  inset: -1.5rem;
  z-index: -1;
  border-radius: var(--radius-3xl);
  opacity: 0.3;
  filter: blur(60px);
  background: var(--gradient-accent);
}

.report__window {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  background-color: var(--color-card);
  box-shadow: var(--shadow-elegant);
}

.report__window-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-bottom: 1px solid var(--color-border);
  background-color: color-mix(in oklab, var(--color-secondary) 60%, transparent);
}

.report__window-dots { display: flex; gap: 0.375rem; }

.dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
}

.dot--red { background-color: color-mix(in oklab, var(--color-destructive) 70%, transparent); }
.dot--accent { background-color: color-mix(in oklab, var(--color-accent) 70%, transparent); }
.dot--success { background-color: color-mix(in oklab, var(--color-success) 70%, transparent); }

.report__window-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-inline: auto;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  background-color: color-mix(in oklab, var(--color-background) 80%, transparent);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--color-muted-foreground);
}

.report__img { width: 100%; }

.report__tag {
  display: none;
  position: absolute;
  bottom: -1.25rem;
  right: -1rem;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  background-color: var(--color-card);
  box-shadow: var(--shadow-elegant);
  transform: rotate(1deg);
}

.report__tag-icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius);
  background-color: color-mix(in oklab, var(--color-accent) 15%, transparent);
  color: var(--color-accent);
}

.report__tag-label {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-muted-foreground);
}

.report__tag-value { font-size: 0.75rem; line-height: 1rem; font-weight: 700; color: var(--color-accent); }

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: color-mix(in oklab, var(--color-foreground) 90%, transparent);
}

.check-list .icon { margin-top: 0.125rem; }

.check-list--left { text-align: left; }

/* ==========================================================================
   CREDENCIAMENTO
   ========================================================================== */
.credential {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-3xl);
  background-color: var(--color-card);
}

.credential__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.6;
  background: var(--gradient-subtle);
}

.credential__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.credential__title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
}

.credential__desc {
  max-width: 36rem;
  margin-top: 1rem;
  color: var(--color-muted-foreground);
}

.credential__badges {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.credential__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background-color: var(--color-background);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}

.credential__seal {
  display: grid;
  place-items: center;
  width: 10rem;
  height: 10rem;
  margin-inline: auto;
  border: 4px solid color-mix(in oklab, var(--color-accent) 20%, transparent);
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--color-primary-foreground);
  box-shadow: var(--shadow-elegant);
}

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

.credential__seal-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-inline: auto;
}

.credential__seal-label {
  margin-top: 0.5rem;
  font-size: 0.625rem;
  line-height: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.credential__seal-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
}

/* ==========================================================================
   PREÇO
   ========================================================================== */
.pricing {
  position: relative;
  overflow: hidden;
  padding-block: 5rem;
  background: var(--gradient-hero);
}

.pricing__inner {
  position: relative;
  max-width: var(--container-narrow-width);
  text-align: center;
  color: var(--color-primary-foreground);
}

.pricing__title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
}

.pricing__desc {
  max-width: 36rem;
  margin: 1rem auto 0;
  color: color-mix(in oklab, white 80%, transparent);
}

.pricing__card {
  max-width: 28rem;
  margin: 2.5rem auto 0;
  padding: 2rem;
  border: 1px solid color-mix(in oklab, white 20%, transparent);
  border-radius: var(--radius-3xl);
  background-color: color-mix(in oklab, white 10%, transparent);
  backdrop-filter: blur(8px);
}

/* A seção de preço tem fundo escuro — o texto da lista precisa ficar branco */
.pricing__card .check-list li {
  color: var(--color-primary-foreground);
}

.pricing__card-label {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: color-mix(in oklab, white 80%, transparent);
}

.pricing__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.pricing__price-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.pricing__price-installment-label {
  font-size: 1.125rem;
  font-weight: 500;
  color: color-mix(in oklab, white 80%, transparent);
  line-height: 1;
}
.pricing__price-currency {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.pricing__price-value {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #fff;
  display: inline-flex;
  align-items: flex-start;
}
.pricing__price-cents {
  font-size: 0.4em;
  font-weight: 800;
  margin-top: 0.15em;
  line-height: 1;
}

.pricing__price-note-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 0.85rem;
}
.pricing__price-note-line {
  display: block;
  height: 1px;
  width: 3.5rem;
  background: color-mix(in oklab, var(--color-success) 55%, transparent);
}
.pricing__price-note {
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 600;
  color: var(--color-success);
  letter-spacing: 0.01em;
}
.pricing__price-installment {
  margin-top: 0.85rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid color-mix(in oklab, white 10%, transparent);
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 400;
  text-align: center;
  color: color-mix(in oklab, white 70%, transparent);
}
.pricing__price-pix {
  color: var(--color-success);
  font-weight: 700;
}

.pricing__cta { margin-top: 2rem; }

.pricing__pay-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: color-mix(in oklab, white 70%, transparent);
}

.pricing__mini-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid color-mix(in oklab, white 10%, transparent);
  font-size: 0.6875rem;
  color: color-mix(in oklab, white 85%, transparent);
}

.pricing__mini-badges div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

/* ==========================================================================
   DEPOIMENTOS
   ========================================================================== */
.testimonials__grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  margin: 0;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  background-color: var(--color-card);
  box-shadow: var(--shadow-soft);
}

.testimonial-card__stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 0.75rem;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: color-mix(in oklab, var(--color-foreground) 90%, transparent);
}

.testimonial-card figcaption { margin-top: 1rem; font-size: 0.875rem; line-height: 1.25rem; }
.testimonial-card__name { font-weight: 600; }
.testimonial-card__city { color: var(--color-muted-foreground); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  background-color: color-mix(in oklab, var(--color-secondary) 40%, transparent);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  background-color: var(--color-card);
  padding: 1.25rem;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
  transition: box-shadow 0.2s ease;
}

.faq-item[open] { box-shadow: var(--shadow-soft); }

.faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq-item__summary::-webkit-details-marker { display: none; }

.faq-item__icon {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: color-mix(in oklab, var(--color-accent) 10%, transparent);
  color: var(--color-accent);
  font-size: 1.125rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--color-muted-foreground);
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.final-cta { text-align: center; }

.final-cta__title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
}

.final-cta__desc {
  max-width: 36rem;
  margin: 1rem auto 0;
  color: var(--color-muted-foreground);
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
.footer {
  border-top: 1px solid var(--color-border);
  background-color: var(--color-primary);
  color: var(--color-primary-foreground);
}

.footer__grid {
  display: grid;
  gap: 2rem;
  padding-block: 3rem;
}

.footer__about {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: color-mix(in oklab, var(--color-primary-foreground) 70%, transparent);
}

.footer__heading {
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in oklab, var(--color-primary-foreground) 60%, transparent);
}

.footer__partner-logo { height: 2rem; width: auto; margin-bottom: 0.75rem; }

.footer__text { font-size: 0.875rem; line-height: 1.25rem; color: color-mix(in oklab, var(--color-primary-foreground) 80%, transparent); }
.footer__text--muted { color: color-mix(in oklab, var(--color-primary-foreground) 70%, transparent); }

.footer__accredited {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: color-mix(in oklab, var(--color-primary-foreground) 80%, transparent);
}

.footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: color-mix(in oklab, var(--color-primary-foreground) 90%, transparent);
  transition: color 0.2s ease;
}

.footer__contact-link:hover { color: white; }

.footer__small {
  margin-top: 1rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: color-mix(in oklab, var(--color-primary-foreground) 60%, transparent);
}

.footer__address {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: color-mix(in oklab, var(--color-primary-foreground) 60%, transparent);
}

.footer__bottom {
  border-top: 1px solid color-mix(in oklab, white 10%, transparent);
}

.footer__bottom .container {
  padding-block: 1rem;
  font-size: 0.75rem;
  line-height: 1rem;
  text-align: center;
  color: color-mix(in oklab, var(--color-primary-foreground) 60%, transparent);
}

/* ==========================================================================
   BOTÃO FLUTUANTE WHATSAPP
   ========================================================================== */
.float-whatsapp {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--color-success);
  color: var(--color-success-foreground);
  box-shadow: var(--shadow-elegant);
  transition: transform 0.2s ease;
}

.float-whatsapp:hover,
.float-whatsapp:focus-visible {
  transform: scale(1.1);
}

.float-whatsapp__badge {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  display: grid;
  place-items: center;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

/* Tablet (>= 640px) */
@media (min-width: 640px) {
  .hero__title { font-size: 3rem; line-height: 1.05; }
  .hero__cta-row { flex-direction: row; align-items: center; }
  .hero__badge-card { display: flex; }
  .report__tag { display: flex; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .btn-whatsapp-compact__short { display: none; }
  .btn-whatsapp-compact__full { display: inline; }

  .btn-whatsapp {
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  .btn-whatsapp--lg {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .credential__title { font-size: 2.25rem; line-height: 2.5rem; }
  .credential__badges { grid-template-columns: repeat(3, 1fr); }

  .section-title { font-size: 2.25rem; line-height: 2.5rem; }
  .pricing__title { font-size: 2.25rem; line-height: 2.5rem; }
  .final-cta__title { font-size: 2.25rem; line-height: 2.5rem; }
}

/* Notebook / Desktop pequeno (>= 768px) */
@media (min-width: 768px) {
  :root { --header-height: 4rem; }
  .section { padding-block: 7rem; }
  .pricing { padding-block: 7rem; }
  .nav { display: flex; }
  .logo { height: 2.25rem; }

  .hero__title { font-size: 3.75rem; line-height: 1.05; }

  .hero__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-block: 6rem;
  }

  .report__grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .report__preview { order: 1; }
  .report__content { order: 2; }

  .credential__grid { grid-template-columns: 1fr auto; }
  .credential { padding: 3.5rem; }
  .credential__seal { width: 14rem; height: 14rem; }
  .credential__seal-icon { width: 3.5rem; height: 3.5rem; }
  .credential__seal-label { font-size: 0.75rem; line-height: 1rem; }
  .credential__seal-value { font-size: 1.5rem; line-height: 2rem; }

  /* lg:grid-cols-3 nos benefícios (o breakpoint original é 1024px, não 768px) */
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: repeat(3, 1fr); }

  .btn-whatsapp--lg { font-size: 1.125rem; }

  .pricing__title,
  .final-cta__title,
  .section-title--xl { font-size: 3rem; line-height: 1; }
}

/* Desktop grande (>= 1024px) */
@media (min-width: 1024px) {
  .benefits__grid { grid-template-columns: repeat(3, 1fr); }
}
