/* =============================================================
   Aera Pro — LP de exemplo (peça demonstrativa)
   CSS mobile-first: base = ~375px, expandido via media queries.
   Breakpoints: mobile (base) · tablet 768px · desktop 1024px
   ============================================================= */

:root {
  /* Paleta: grafite/preto profundo + UM acento vibrante (âmbar) */
  --bg: #121317;
  --surface: #1c1e24;
  --surface-2: #24262d;
  --border: #33363e;

  --text: #f5f6f7;
  --text-dim: #aeb2ba;
  --text-dimmer: #82868f;

  --accent: #e8a63c;
  --accent-strong: #e0a13a;
  --accent-text-on: #17140c;

  --ok: #6fbf7c;
  --no: #c96a6a;

  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --max-width: 1180px;
  --black: #0a0b0d;

  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-number: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

}

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

html {
  scroll-behavior: smooth;
}

/*
  Fundo único e fluido do topo ao rodapé: em vez de seções com cores
  alternadas, o "ritmo" vem de manchas de luz suaves (glow) espalhadas
  ao longo de todo o documento — âmbar (marca) e branco (profundidade).
  Usar `background` (não `background-attachment: fixed`) faz as manchas
  se distribuírem pela altura total da página, não só pela viewport.
*/
body {
  margin: 0;
  background-color: var(--bg);
  background-image:
    radial-gradient(760px circle at 12% 6%, rgba(244, 185, 89, 0.12), transparent 60%),
    radial-gradient(820px circle at 92% 20%, rgba(255, 255, 255, 0.05), transparent 60%),
    radial-gradient(880px circle at 6% 46%, rgba(244, 185, 89, 0.08), transparent 60%),
    radial-gradient(760px circle at 96% 66%, rgba(255, 255, 255, 0.045), transparent 60%),
    radial-gradient(900px circle at 14% 88%, rgba(244, 185, 89, 0.1), transparent 60%),
    radial-gradient(760px circle at 90% 104%, rgba(255, 255, 255, 0.05), transparent 60%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px; /* corpo >= 16px: evita zoom automático do iOS */
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}
.img-logo{
  max-width: 150px;
  height: 100%;
  display: block;
}
.preco-topo{
  font-size: 2rem;
  color: var(--text);
  font-weight: 800;
  display: block;
}
.accent-padrao{
  color: var(--accent) !important;
}
.espaco-subtitulo{
  padding-top: 2rem;
}
.image-detalhes{
  max-width: 200px;
  max-height: 200px;
  border-radius: 28px;
  display: block;
  margin: 0 auto !important;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

a {
  color: inherit;
}

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

/* ---------- Foco visível (acessibilidade / navegação por teclado) ---------- */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   Ícones — sistema único e padronizado (estilo Feather/Lucide).
   Contorno por padrão; variante preenchida para estrelas/checks/play.
   ============================================================= */
.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -4px;
}

.icon--filled {
  fill: currentColor;
  stroke: none;
}

.icon--star {
  width: 15px;
  height: 15px;
  color: var(--accent-strong);
}

.icon--star-half {
  clip-path: inset(0 50% 0 0);
}

.icon--ok {
  color: var(--ok);
}

.icon--no {
  color: var(--no);
}

/* =============================================================
   Cards — sistema único e padronizado (usado em recursos, confiança,
   depoimentos, oferta e comparação). Fundo sólido (sem transparência
   "embaçada"), borda fina e um brilho aurora sutil no rodapé do
   cartão, sempre no acento da marca — nunca um blur difuso por cima
   do conteúdo.
   ============================================================= */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.card::after {
  content: "";
  position: absolute;
  left: -15%;
  right: -15%;
  bottom: -45%;
  height: 85%;
  background:
    radial-gradient(65% 100% at 25% 100%, rgba(0, 0, 0, 0.85), transparent 78%),
    radial-gradient(60% 95% at 85% 100%, rgba(0, 0, 0, 0.65), transparent 78%);
  filter: blur(26px);
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card--subtle::after {
  opacity: 0.25;
  filter: blur(20px);
}

.card__icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-strong), #8a5a1f);
  color: var(--accent-text-on);
  box-shadow: 0 8px 20px rgba(244, 185, 89, 0.28);
}

/* =============================================================
   Header — sem menu de navegação (regra 9: uma página, uma ação)
   ============================================================= */
.site-header {
  position: relative;
  z-index: 1;
  padding: 24px 48px;
  display: flex;
  justify-content: center;
  max-width: var(--max-width);
  margin: 0 auto !important;
}

.logo {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--text);
}

/* =============================================================
   Utilitários de layout
   ============================================================= */
.section-head {
  max-width: 720px;
  margin: 0 auto 28px;
  text-align: center;
  padding: 0 20px;
}

.section-head h2,
.final-cta h2 {
  font-size: clamp(38px, 11vw, 60px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-wrap: pretty;
  background: linear-gradient(180deg, #ffffff, #c3c6cc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-intro {
  margin-top: 10px;
  color: var(--text-dim);
  font-size: 1.5rem;
}

main > section {
  position: relative;
  z-index: 1;
  padding: 56px 20px;
}

/* =============================================================
   Botões
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px; /* alvo de toque mínimo */
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.btn--primary {
  background: var(--accent);
  color: var(--accent-text-on);
}

.btn--primary:hover {
  background: var(--accent-strong);
}

.btn--primary:active {
  transform: scale(0.98);
}

.btn--full {
  width: 100%;
}

.btn--large {
  font-size: 17px;
  padding: 16px 28px;
}

/* Botão com texto + ícone circular — mesma lida de toque, mais presença */
.btn--arrow {
  justify-content: space-between;
  gap: 14px;
  padding-left: 22px;
  padding-right: 6px;
}

.btn__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-text-on);
  color: var(--accent-strong);
  font-size: 16px;
}

.btn--large .btn__arrow {
  width: 40px;
  height: 40px;
}

/* =============================================================
   HERO — data-block="1"
   Mobile: texto primeiro, cabe inteiro na dobra (~375x667).
   O produto vem logo depois do CTA, como apoio visual, nunca
   empurrando título/prova/CTA pra fora da primeira tela.
   ============================================================= */
.hero {
  padding: 18px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(165deg, var(--surface), rgba(28, 30, 36, 0.4) 60%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 22px 18px;
  backdrop-filter: blur(2px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-strong);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.02em;
}

.eyebrow .icon {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: 34px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-wrap: pretty;
  background: linear-gradient(180deg, #ffffff, #cfd2d8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title__accent {
  background: none;
  -webkit-text-fill-color: var(--accent-strong);
  color: var(--accent-strong);
}

.hero-subtitle {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.45;
  text-wrap: pretty;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 4px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
  position: relative;
}

.stat + .stat::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: var(--border);
}

.stat__number {
  font-family: var(--font-number);
  font-weight: 800;
  font-size: 22px;
  color: var(--accent-strong);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 24px rgba(244, 185, 89, 0.35);
}

.stat__unit {
  font-size: 13px;
  font-weight: 700;
}

.stat__label {
  font-size: 10.5px;
  color: var(--text-dim);
  line-height: 1.25;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 600;
}

.microcopy {
  font-size: 12.5px;
  color: var(--text-dimmer);
  text-align: center;
}

/* Produto — vem depois do CTA no mobile (apoio visual, não protagonista
   da dobra); no desktop volta a dividir a tela com o texto.
   Importante: o CONTAINER fica com overflow visível — só o frame
   interno (imagem) recorta. Os call-outs/badge ficam por cima, sem
   nunca serem cortados pelo border-radius da foto. */
.hero-media {
  position: relative;
  aspect-ratio: 9 / 10;
  margin: 0 20px;
}

.hero-media__frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
}

.hero-media__badge {
  position: absolute;
  z-index: 3;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  background: rgba(18, 19, 23, 0.88);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.hero-media__glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 185, 89, 0.22), transparent 70%);
  filter: blur(6px);
  z-index: 0;
}

.hero-media__img,
.hero-media__video {
  position: relative;
  z-index: 1;
  max-width: 285px;
  height: auto;
  margin: 0 auto !important;
}

.hero-callout {
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    z-index: 2;
  }

  .hero-callout__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-strong);
    box-shadow: 0 0 0 4px rgba(244, 185, 89, 0.18);
    flex-shrink: 0;
  }

  .hero-callout__line {
    width: 30px;
    height: 1px;
    background: var(--border);
    flex-shrink: 0;
  }

  .hero-callout__label {
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    background: rgba(18, 19, 23, 0.88);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 5px 12px;
    backdrop-filter: blur(6px);
  }

  /* Três call-outs escalonados na borda direita — nunca perto do
     badge de avaliação (que fica isolado no canto superior esquerdo). */
  .hero-callout--1 { top: 14%; right: -2%; }
  .hero-callout--2 { top: 40%; right: -4%; }
  .hero-callout--3 { bottom: 37%; }


/* =============================================================
   MARQUEE — faixa de ritmo decorativa entre seções
   (sem bloco de cor sólida: só linhas finas, fundo permanece fluido)
   ============================================================= */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
}

.marquee__item {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text);
  white-space: nowrap;
}

.marquee__dot {
  color: var(--accent-strong);
  font-size: 12px;
}

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

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

/* =============================================================
   RECURSOS-CHAVE — data-block="7"
   ============================================================= */
.feature-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
}

.feature-card {
  padding: 24px;
  text-align: center;
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-strong), #8a5a1f);
  color: var(--accent-text-on);
  box-shadow: 0 8px 20px rgba(244, 185, 89, 0.28);
  margin-bottom: 16px;
}

.feature-card__number {
  display: block;
  font-weight: 800;
  font-size: 30px;
  color: var(--accent-strong);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.feature-card__label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dimmer);
  margin-top: 4px;
}

.feature-card__benefit {
  margin-top: 10px;
  color: var(--text-dim);
  font-size: 15.5px;
  text-wrap: pretty;
}

/* =============================================================
   GALERIA DE USO — data-block="4"
   Duas colunas sempre (mobile e desktop), fotos altas, legenda
   com "vidro fosco" (blur) colada ao rodapé de cada foto.
   ============================================================= */
.gallery-grid {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4.6;
  object-fit: cover;
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  background: linear-gradient(180deg, transparent, rgba(10, 11, 13, 0.55) 45%, rgba(10, 11, 13, 0.75));
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* =============================================================
   VÍDEO DEMONSTRATIVO — data-block="4"
   ============================================================= */
.video-demo__frame {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  max-width: var(--max-width);
  margin: 0 auto;
  border: none;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
}
.video-youtube-container{
  position: relative;
    width: 100%;
    padding-top: 56.25%; /* Proporção de tela 16:9 (9 dividido por 16) */
    height: 0;
  border-radius: 28px;
  margin: 0 auto !important;
 
}
.video-youtube {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     border-radius: 28px;
}
.video-demo__frame img {
  width: 100%;
  height: auto;
}

.video-demo__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-demo__play .icon {
  position: relative;
  width: 26px;
  height: 26px;
  color: var(--accent-text-on);
  margin-left: 3px;
}

.video-demo__play::before {
  content: "";
  position: absolute;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--accent);
}

.video-demo__caption {
  max-width: var(--max-width);
  margin: 18px auto 0;
  text-align: center;
  color: var(--text-dimmer);
  font-size: 14px;
}

.video-demo.is-playing .video-demo__play {
  display: none;
}

/* =============================================================
   COMPARAÇÃO DE VALOR — data-block="2"
   Mobile: cards empilhados. Coluna Aera Pro sempre com destaque
   forte em #f4b959 (borda + leve preenchimento + selo).
   ============================================================= */
.comparison-table-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.comparison-table thead {
  /* escondido no mobile: cada linha vira um card com labels via data-label */
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.comparison-table tbody tr {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 12px;
}

.comparison-table th[scope="row"],
.comparison-table td {
  position: relative;
}

.comparison-table th[scope="row"] {
  grid-column: 1 / -1;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dimmer);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: left;
}

.comparison-table td {
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.comparison-table td::before {
  content: attr(data-label);
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dimmer);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-right: 4px;
}

.comparison-table td.is-highlight {
  color: var(--accent-strong);
}

.comparison-price {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dimmer);
}

.comparison-closing {
  max-width: 560px;
  margin: 22px auto 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 16px;
  text-wrap: pretty;
}

/* =============================================================
   PROVA SOCIAL — data-block="2"
   ============================================================= */
.rating-summary {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 700;
  color: var(--accent-strong);
}

.testimonial-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.testimonial-card {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-strong), #8a5a1f);
  color: var(--accent-text-on);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.testimonial-card__author {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--text);
}

.testimonial-card__role {
  margin-top: 1px;
  font-size: 12.5px;
  color: var(--text-dimmer);
}

.testimonial-card__stars {
  margin-top: 2px;
  display: flex;
  gap: 2px;
}

.testimonial-card__quote p {
  position: relative;
  color: var(--text-dim);
  font-size: 15.5px;
  text-wrap: pretty;
}

/* =============================================================
   CONFIANÇA — data-block="6" / checkout data-block="8"
   ============================================================= */
.trust-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.trust-card {
  padding: 32px 18px;
  text-align: center;
}

.trust-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-strong), #8a5a1f);
  color: var(--accent-text-on);
  box-shadow: 0 8px 20px rgba(244, 185, 89, 0.28);
}

.trust-card__label {
  margin-top: 8px;
  font-weight: 700;
  font-size: 14.5px;
}

.trust-card__desc {
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-dim);
}

/* =============================================================
   OFERTA + AÇÃO — data-block="3"
   Bloco preto de alto contraste, com brilho âmbar suave — não é
   uma "seção" com cor própria, é um cartão sobre o fundo fluido.
   ============================================================= */
.offer {
  text-align: center;
}

.offer-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--black);
  padding: 40px 24px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offer-card::after {
  opacity: 0.85;
}

.price-block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.price-block__anchor {
  color: var(--text-dimmer);
  font-size: 16px;
}

.price-block__badge {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(244, 185, 89, 0.12);
  border: 1.5px solid var(--accent-strong);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}

.price-block__badge strong {
  font-size: 30px;
  font-weight: 800;
  color: var(--accent-strong);
  font-variant-numeric: tabular-nums;
}

.price-block__installment {
  color: var(--text-dim);
  font-size: 15px;
}

.scarcity {
  position: relative;
  margin: 18px auto 0;
  max-width: 480px;
  font-size: 14.5px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.scarcity .icon {
  color: var(--accent-strong);
}

.perks {
  position: relative;
  margin: 18px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  font-size: 14px;
  color: var(--text-dim);
  max-width: 480px;
}

.perks li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.offer .btn {
  position: relative;
  margin-top: 24px;
}

/* =============================================================
   FAQ — data-block="7"
   ============================================================= */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 18px;
}

.faq-item summary {
  padding: 16px 0;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--accent-strong);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding-bottom: 18px;
  color: var(--text-dim);
  font-size: 15px;
  text-wrap: pretty;
}

/* =============================================================
   CTA FINAL
   ============================================================= */
.final-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.final-cta h2 {
  max-width: 520px;
}

/* =============================================================
   RODAPÉ
   ============================================================= */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 32px 20px 100px; /* espaço extra no mobile p/ sticky CTA */
  text-align: center;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 12px;
}

.footer-disclaimer {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-dimmer);
  font-size: 13px;
  line-height: 1.6;
}

/* =============================================================
   STICKY CTA — apenas mobile, some no desktop
   ============================================================= */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 21px 16px;
  background: var(--black);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  transition: transform 0.25s ease;
}

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

.sticky-cta__price {
  font-size: 14px;
  color: var(--text-dim);
  white-space: nowrap;
}

.sticky-cta__price strong {
  color: var(--accent-strong);
  font-size: 16px;
}

.sticky-cta .btn {
  padding: 10px 18px;
  font-size: 14px;
}

/* =============================================================
   FLOATING DECOR — imagens decorativas do produto, flutuando atrás
   do conteúdo. A camada `.floating-decor-layer` é `position: fixed`
   e do tamanho exato da viewport com `overflow: hidden`: ela recorta
   visualmente a parte da imagem que "sai" da tela SEM tocar em
   overflow-x/y do html/body — isso é intencional, porque mudar o
   overflow do html/body quebra o scroll da página em alguns
   navegadores (Safari/Chrome recalculam o eixo travado como "auto").
   A posição de cada imagem dentro da camada é 100% controlada por
   `transform` no script.js (nunca `top`), então isso nunca gera
   reflow nem custo de scroll.

   AJUSTES RÁPIDOS (o que você provavelmente vai querer mexer):
   - Tamanho: `width` abaixo (clamp = mínimo, preferido em vw, máximo).
   - Transparência: `opacity` abaixo (0 a 1).
   - Quanto "sai" da tela: `left`/`right` abaixo (mais negativo = mais para fora).
   - Intensidade do movimento/giro: constantes no topo da função
     `initFloatingDecor` em script.js (FLOAT_PARALLAX e FLOAT_ROTATION_DEG).
   ============================================================= */
.floating-decor-layer {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.floating-decor {
  position: absolute;
  top: 0;
  width: clamp(520px, 50vw, 920px);
  opacity: 0.3;
  will-change: transform;
}

.floating-decor--left {
  left: -9%;
}

.floating-decor--right {
  right: -9%;
}

.floating-decor__img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

@media (max-width: 767px) {
  /* Em telas pequenas, "sai" um pouco menos da borda pra não ficar
     grande demais em relação ao conteúdo. */
  .floating-decor {
    width: clamp(400px, 104vw, 600px);
  }

  .floating-decor--left {
    left: -16%;
  }

  .floating-decor--right {
    right: -16%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-decor {
    transform: none !important;
  }
}

/* =============================================================
   TABLET — 768px+
   ============================================================= */
@media (min-width: 768px) {
  main > section {
    padding: 72px 32px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-title {
    font-size: 42px;
  }

  .hero {
    padding: 24px 32px 40px;
  }

  .gallery-grid {
    max-width: 500px;
  }

  .hero-media {
    margin: 0;
    flex: 1 1 46%;
    max-height: 430px;
  }
  
}

/* =============================================================
   DESKTOP — 1024px+
   ============================================================= */
@media (min-width: 1024px) {
  .sticky-cta {
    display: none; /* CTA repetido nas seções já basta no desktop */
  }

  .site-footer {
    padding-bottom: 48px;
  }

  .site-header {
    justify-content: flex-start;
    padding: 24px 48px;
  }

  main > section {
    padding: 96px 48px;
  }

  /* Dobra desktop: texto à esquerda / produto à direita.
     DOM já vem texto-primeiro (pro mobile); aqui basta uma row normal. */
  .hero {
    flex-direction: row;
    align-items: flex-start;
    max-width: var(--max-width);
    margin: 0 auto;
    gap: 64px;
    padding: 20px 48px 0 48px;
  }

  .hero-content {
    background: none;
    border: none;
    padding: 0;
    backdrop-filter: none;
  }

  .hero-media {
    margin: 0;
    flex: 1 1 46%;
    aspect-ratio: 4 / 5;
    max-height: 640px;
  }


  .hero-content {
    flex: 1 1 54%;
    align-items: flex-start;
    text-align: left;
    padding-top: 1rem;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-subtitle {
    font-size: 18px;
    max-width: 480px;
  }

  .stat-row {
    grid-template-columns: repeat(3, auto);
    justify-content: flex-start;
    width: auto;
    gap: 0;
  }

  .stat__number {
    font-size: 26px;
  }

  .stat {
    align-items: flex-start;
    text-align: left;
    padding: 0 22px;
  }

  .stat:first-child {
    padding-left: 0;
  }

  .stat + .stat::before {
    left: 0;
    top: 2px;
    bottom: 2px;
  }

  .btn--full {
    width: auto;
  }

  .microcopy {
    text-align: left;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    max-width: 880px;
    gap: 5rem;
    grid-template-columns: repeat(2, 1fr);
  }

  /* Comparação: volta a ser tabela de verdade no desktop */
  .comparison-table-wrap {
    max-width: 880px;
  }

  .comparison-table thead {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
  }

  .comparison-table thead th {
    text-align: left;
    padding: 14px 18px;
    font-size: 13px;
    color: var(--text-dimmer);
    font-weight: 700;
  }

  .comparison-table thead th.is-highlight {
    color: var(--accent-strong);
    border-top: 2px solid var(--accent-strong);
    border-left: 2px solid var(--accent-strong);
    border-right: 2px solid var(--accent-strong);
    border-radius: 12px 12px 0 0;
    background: rgba(244, 185, 89, 0.08);
  }

  .comparison-table tbody tr {
    display: table-row;
    background: none;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 0;
    margin-bottom: 0;
  }

  .comparison-table th[scope="row"],
  .comparison-table td {
    display: table-cell;
    padding: 14px 18px;
    text-align: left;
  }

  .comparison-table td::before {
    content: none;
  }

  .comparison-table td.is-highlight {
    background: rgba(244, 185, 89, 0.08);
    border-left: 2px solid var(--accent-strong);
    border-right: 2px solid var(--accent-strong);
  }

  .comparison-table tbody tr:last-child td.is-highlight {
    border-bottom: 2px solid var(--accent-strong);
    border-radius: 0 0 12px 12px;
  }

  .offer-card {
    max-width: 640px;
    padding: 48px 56px;
  }
}
