﻿/* ============================================================
   Landing Mapas Mentais â€” tokens, base, componentes e seÃ§Ãµes
   ============================================================ */

:root {
  /* Fundos escuros */
  --bg-dark: #1A1417;
  --bg-dark-2: #261C21;
  --bg-footer: #120D10;

  /* Fundos claros */
  --bg-light-a: #FFF6F3;
  --bg-light-b: #FFF0E8;
  --surface: #FFFFFF;
  --surface-soft: #F7EFEC;

  /* Texto */
  --ink: #1F1418;
  --ink-muted: #6B5560;
  --on-dark: #FFFFFF;
  --on-dark-muted: #C8B7BE;
  --on-primary: #FFFFFF;   /* texto sobre o botÃ£o framboesa */
  --on-accent: #2A1A00;    /* texto sobre o dourado */

  /* Marca: framboesa e ouro */
  --primary: #D6246E;
  --primary-2: #B81B5E;    /* framboesa mais escuro (fim do degradÃª do botÃ£o) */
  --primary-ink: #B5175F;  /* texto framboesa sobre fundo claro (AA) */
  --accent: #FFC857;       /* ouro */
  --accent-ink: #8A5A00;   /* ouro escuro: texto sobre fundo claro (AA) */
  --accent-2: #FF6B6B;     /* coral */
  --gold-soft: #FFD98A;
  --pink-soft: #FF8FB1;

  /* Valores RGB para usar em rgba(var(--x-rgb), alfa) */
  --ink-rgb: 31, 20, 24;
  --primary-rgb: 214, 36, 110;
  --accent-rgb: 255, 200, 87;
  --dark-rgb: 18, 13, 16;

  /* Estado (o verde continua sÃ³ para garantia e checks) */
  --success: #16A34A;
  --success-ink: #15803D;
  --danger: #EF4444;

  /* Gradientes */
  --grad-cta: linear-gradient(90deg, var(--primary-2), var(--primary));
  --grad-title: linear-gradient(90deg, var(--gold-soft), var(--pink-soft));
  --grad-pill: linear-gradient(90deg, var(--accent), var(--primary));
  --grad-topbar: linear-gradient(90deg, var(--bg-dark-2), var(--bg-dark) 50%, var(--bg-dark-2));
  --grad-offer-bar: linear-gradient(90deg, var(--primary-2), var(--primary), var(--accent-2), var(--accent));

  /* 8 cards de conteÃºdo (famÃ­lia rosa, coral e ouro; sem arco-Ã­ris) */
  --c1: #D6246E; --c2: #F5A524; --c3: #FF6B6B; --c4: #8E3B6B;
  --c5: #A61E4D; --c6: #F08D5B; --c7: #C77DA6; --c8: #D98E04;

  /* Sombras */
  --shadow-card: 0 10px 30px rgba(var(--ink-rgb), 0.10);
  --shadow-cta: 0 10px 30px rgba(var(--primary-rgb), 0.35);
  --glow-video: 0 0 60px rgba(var(--primary-rgb), 0.35);

  /* Forma */
  --r-pill: 999px;
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;

  /* EspaÃ§amento */
  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 32px;
  --s5: 48px;
  --s6: 72px;
  --s7: 96px;

  /* Layout */
  --container: 1180px;
  --topbar-h: 56px;
  --scroll-pad: calc(var(--topbar-h) + 12px);
  --carousel-gap: 16px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: Nunito, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

@media (min-width: 1024px) {
  body {
    font-size: 17px;
  }
}

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

a {
  color: inherit;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

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

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

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

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.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;
}

.section {
  padding-block: clamp(56px, 9vw, 96px);
  scroll-margin-top: var(--scroll-pad);
}

/* Topbar pode quebrar em 2 linhas no mobile: sobe o padding de Ã¢ncora */
@media (max-width: 599px) {
  :root {
    --scroll-pad: 104px;
  }
}

.text-grad {
  background: var(--grad-title);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-accent {
  color: var(--primary-ink);
}

.hl {
  background: linear-gradient(transparent 62%, rgba(var(--accent-rgb), 0.45) 0);
  color: inherit;
}

.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ---------- Fundos ---------- */
.bg-dark-grid {
  background:
    radial-gradient(600px 400px at 12% 30%, rgba(var(--primary-rgb), 0.20), transparent 60%),
    radial-gradient(700px 500px at 88% 60%, rgba(var(--accent-rgb), 0.12), transparent 60%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 40px 40px,
    var(--bg-dark);
  color: var(--on-dark);
}

.bg-light-grid {
  background:
    linear-gradient(rgba(var(--ink-rgb), 0.04) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(90deg, rgba(var(--ink-rgb), 0.04) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(160deg, var(--bg-light-a), var(--bg-light-b));
  color: var(--ink);
}

/* ---------- Componentes ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  min-height: 56px;
  max-width: 100%;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--grad-cta);
  color: var(--on-primary);
  font: 800 clamp(15px, 2.4vw, 18px) / 1.25 Outfit, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--shadow-cta);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  white-space: normal;
  overflow-wrap: anywhere;
  box-sizing: border-box;
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(0.94);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  min-height: 56px;
  max-width: 100%;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--on-dark);
  font: 800 clamp(15px, 2.4vw, 18px) / 1.25 Outfit, system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  white-space: normal;
  overflow-wrap: anywhere;
  box-sizing: border-box;
}

.btn-dark:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.btn-block {
  width: 100%;
}

@media (max-width: 599px) {
  .btn-primary,
  .btn-dark {
    width: 100%;
    padding-inline: 20px;
  }
}

@media (max-width: 360px) {
  .btn-primary,
  .btn-dark {
    padding-inline: 16px;
    font-size: 14px;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pill--light {
  border-color: rgba(var(--ink-rgb), 0.12);
  background: var(--surface);
  color: var(--ink);
}

.step-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 700;
  font-size: 14px;
  color: var(--on-dark);
}

.step-chip .step-num {
  color: var(--accent);
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--card-color, var(--success));
  color: var(--on-dark);
  flex-shrink: 0;
}

.check svg {
  width: 14px;
  height: 14px;
}

.section-title {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.15;
  text-align: center;
}

.section-title::before {
  content: "//";
  font-family: "JetBrains Mono", ui-monospace, monospace;
  color: var(--accent-ink);
  margin-right: 0.4em;
}

.section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.section-title--plain::before,
.section-title--plain::after {
  display: none;
  content: none;
}

.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  margin-top: var(--s5);
  text-align: center;
}

.microcopy {
  font-size: 14px;
  color: var(--ink-muted);
}

.bg-dark-grid .microcopy {
  color: var(--on-dark-muted);
}

.offer-card--full .microcopy {
  margin-top: 12px;
  color: var(--ink-muted);
}

.offer-card--basic .btn-dark {
  margin-top: 20px;
}

/* ---------- Barra de progresso ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 60;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

/* ---------- Topbar ---------- */
#topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-topbar);
  border-bottom: 1px solid var(--accent);
  color: var(--on-dark);
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  padding: 10px 16px;
  text-align: center;
}

.topbar-label {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
}

.timer-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--accent);
  background: rgba(var(--accent-rgb), 0.12);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 700;
  font-size: 14px;
  color: var(--on-dark);
}

/* ---------- Hero ---------- */
#hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(40px, 8vw, 80px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
}

.hero-deco {
  position: absolute;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 700;
  font-size: clamp(120px, 22vw, 220px);
  line-height: 1;
  color: var(--on-dark);
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-deco--left {
  left: -40px;
  top: 18%;
}

.hero-deco--right {
  right: -30px;
  bottom: 12%;
}

/* DecoraÃ§Ãµes ficam cortadas pelo #hero (overflow: hidden); nÃ£o geram scroll da pÃ¡gina */
@media (min-width: 600px) {
  .hero-deco {
    max-width: 40vw;
  }
}

@media (max-width: 599px) {
  .hero-deco {
    display: none;
  }
}

.hero-title {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--on-dark);
  max-width: 28ch;
  text-wrap: pretty;
}

.hero-title .text-grad {
  display: inline;
}

.hero-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
}

.hero-steps-arrow {
  color: var(--on-dark-muted);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 700;
}

.video-card {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 9 / 16;
  border: 4px solid var(--on-dark);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--glow-video);
  background: var(--bg-dark-2);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--grad-cta);
  color: var(--on-primary);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-cta);
  z-index: 2;
}

.video-play svg {
  width: 28px;
  height: 28px;
  margin-left: 3px;
}

.hero-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  color: var(--on-dark-muted);
  font-size: 14px;
  font-weight: 600;
}

.hero-channels span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Vitrine / carrossel ---------- */
#vitrine .section-title {
  margin-bottom: var(--s5);
}

.carousel {
  position: relative;
}

.carousel-track {
  display: flex;
  gap: var(--carousel-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-block: 8px 40px;
  margin-block: -8px -36px;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

@media (min-width: 1024px) {
  .carousel-slide {
    flex: 0 0 calc((100% - var(--carousel-gap)) / 2);
  }
}

.carousel-card {
  background: var(--surface);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  padding: 12px;
}

.carousel-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--r-sm);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--s3);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--r-pill);
  background: transparent;
  padding: 0;
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
}

.carousel-dot[hidden] {
  display: none;
}

.carousel-dot::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: var(--r-pill);
  background: rgba(var(--ink-rgb), 0.25);
  transition: width 0.2s ease, background 0.2s ease;
}

.carousel-dot.is-active::before,
.carousel-dot[aria-current="true"]::before {
  width: 28px;
  background: var(--primary);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: var(--s2);
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  display: grid;
  place-items: center;
  color: var(--ink);
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ---------- ConteÃºdo ---------- */
.topics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s2);
  margin-top: var(--s5);
}

@media (min-width: 600px) {
  .topics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .topics-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.topic-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--r-sm);
  border-left: 4px solid var(--card-color);
  box-shadow: var(--shadow-card);
  padding: 20px 20px 24px;
  overflow: hidden;
}

.topic-card .check {
  margin-bottom: 12px;
}

.topic-card p {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink);
}

.topic-card::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 28px;
  height: 2px;
  background: var(--card-color);
  opacity: 0.5;
  border-radius: 2px;
}

/* ---------- BÃ´nus ---------- */
#bonus .section-lead {
  text-align: center;
  color: var(--ink-muted);
  max-width: 640px;
  margin: var(--s2) auto 0;
  font-size: 15px;
  text-wrap: balance;
}

.bonus-grid {
  display: flex;
  gap: var(--s2);
  margin-top: var(--s5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.bonus-card {
  flex: 0 0 min(78%, 260px);
  scroll-snap-align: start;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid rgba(var(--ink-rgb), 0.08);
  box-shadow: var(--shadow-card);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 600px) and (max-width: 1023px) {
  .bonus-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    overflow: visible;
    scroll-snap-type: none;
  }

  .bonus-card {
    flex: none;
    width: auto;
    grid-column: span 2;
  }

  /* Segunda linha (3 + 2): centraliza os 2 Ãºltimos cards */
  .bonus-card:nth-child(4) {
    grid-column: 2 / 4;
  }

  .bonus-card:nth-child(5) {
    grid-column: 4 / 6;
  }
}

@media (min-width: 1024px) {
  .bonus-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: visible;
    scroll-snap-type: none;
  }

  .bonus-card {
    flex: none;
    width: auto;
    grid-column: auto;
  }
}

.bonus-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--r-sm);
}

.bonus-card h3 {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.3;
}

.bonus-card .bonus-meta {
  font-size: 13px;
  color: var(--ink-muted);
}

.bonus-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: var(--on-accent);
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}

/* ---------- Oferta ---------- */
#oferta .offer-stack {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  max-width: 620px;
  margin-inline: auto;
}

.offer-card {
  border-radius: var(--r-lg);
  padding: var(--s4) var(--s3);
  text-align: center;
}

.offer-card--full {
  position: relative;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid rgba(var(--accent-rgb), 0.55);
  overflow: hidden;
}

.offer-card--full::before {
  content: "";
  display: block;
  height: 6px;
  margin: calc(-1 * var(--s4)) calc(-1 * var(--s3)) var(--s3);
  background: var(--grad-offer-bar);
}

.offer-card--basic {
  background: var(--surface-soft);
  color: var(--ink);
}

.offer-card h3 {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.2;
  text-transform: uppercase;
  margin: var(--s2) 0;
}

.offer-mockup {
  margin: var(--s3) auto;
  max-width: 420px;
  border-radius: var(--r-md);
}

.offer-kicker {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-ink);
  margin-bottom: var(--s3);
}

.offer-list {
  text-align: left;
  margin: 0 0 var(--s4);
}

.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(var(--ink-rgb), 0.15);
  font-size: 15px;
  font-weight: 600;
}

.offer-list li:last-child {
  border-bottom: 0;
}

.gift-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.15);
  color: var(--primary-ink);
  flex-shrink: 0;
  font-size: 14px;
}

.price-box {
  background: linear-gradient(160deg, rgba(var(--primary-rgb), 0.08), rgba(var(--accent-rgb), 0.18));
  border-radius: var(--r-md);
  padding: var(--s3);
  margin-bottom: var(--s3);
}

.price-box .price-label {
  font-size: 14px;
  color: var(--ink-muted);
}

.price-box .price-value {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 8vw, 64px);
  line-height: 1.1;
  color: var(--ink);
  margin: 4px 0;
}

.price-box .price-note {
  font-size: 14px;
  color: var(--ink-muted);
}

.price-box .price-per {
  margin-top: 10px;
  font-weight: 800;
  color: var(--accent-ink);
  font-size: 15px;
}

.offer-card--basic .price-value {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 7vw, 52px);
}

.offer-card--basic .offer-text {
  color: var(--ink-muted);
  margin: 0 0 var(--s3);
  font-size: 15px;
}

.offer-card--basic .price-label {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 4px;
}

/* ---------- Garantia ---------- */
.guarantee-wrap {
  position: relative;
  max-width: 620px;
  margin-inline: auto;
}

.guarantee-wrap::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, rgba(22, 163, 74, 0.18), transparent 65%);
  z-index: 0;
  pointer-events: none;
}

.guarantee-card {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 2px solid var(--success);
  border-radius: var(--r-lg);
  padding: var(--s4) var(--s3);
  text-align: center;
}

.guarantee-card .shield {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--s2);
  color: var(--success);
}

.guarantee-card h2 {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: var(--s2);
}

.guarantee-card p {
  color: var(--ink-muted);
  font-size: 15px;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: var(--s5) auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid rgba(var(--ink-rgb), 0.1);
  border-radius: var(--r-sm);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  text-align: left;
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  min-height: 56px;
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-trigger[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-trigger[aria-expanded="true"] + .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel-inner {
  overflow: hidden;
}

.faq-panel-inner p {
  padding: 0 18px 16px;
  color: var(--ink-muted);
  font-size: 15px;
}

.faq-panel[hidden] {
  display: none;
}

/* ---------- CTA final + rodapÃ© ---------- */
#cta-final-section {
  text-align: center;
}

.cta-final-title {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.2;
  max-width: 16ch;
  margin: 0 auto var(--s4);
  text-wrap: balance;
}

.site-footer {
  background: var(--bg-footer);
  color: var(--on-dark-muted);
  text-align: center;
  padding: var(--s4) 16px var(--s5);
  font-size: 13px;
}

.site-footer p {
  max-width: 560px;
  margin: 0 auto 10px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-top: 12px;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 8px;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal[hidden] {
  display: none;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--dark-rgb), 0.78);
  backdrop-filter: blur(4px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: 90vh;
  max-height: 90dvh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--surface);
  color: var(--ink);
  border-radius: 24px;
  padding: var(--s4) var(--s3);
  box-shadow: var(--shadow-card);
  text-align: center;
  margin-block: auto;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
}

.modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad-pill);
  font-size: 28px;
}

.modal-label {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.modal-dialog h2 {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 28px);
  margin: 10px 0 12px;
  line-height: 1.25;
}

.modal-dialog > p {
  color: var(--ink-muted);
  font-size: 15px;
  margin-bottom: var(--s3);
}

.modal-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  text-align: left;
  margin-bottom: var(--s3);
}

@media (min-width: 480px) {
  .modal-benefits {
    grid-template-columns: 1fr 1fr;
  }
}

.modal-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.modal-decline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 10px;
  margin-top: var(--s2);
  font-size: 14px;
  color: var(--ink-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: Nunito, system-ui, sans-serif;
}

/* ---------- PÃ¡ginas legais ---------- */
.legal-page {
  min-height: 100vh;
  padding: var(--s5) 0;
}

.legal-content {
  max-width: 720px;
  background: var(--surface);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  padding: var(--s4);
}

.legal-notice {
  display: inline-block;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(var(--primary-rgb), 0.15);
  color: var(--primary-ink);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: var(--s3);
}

.legal-content h1 {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: var(--s2);
}

.legal-content h2 {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin: var(--s4) 0 var(--s1);
}

.legal-content p {
  color: var(--ink-muted);
  margin-bottom: var(--s2);
}

.legal-content a {
  color: var(--primary-ink);
  font-weight: 700;
}

/* ---------- Reveal on scroll (sÃ³ esconde com JS ativo) ---------- */
.reveal {
  opacity: 1;
  transform: none;
}

html.js-ready .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

html.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.video-soon {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  margin: 0;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: rgba(var(--dark-rgb), 0.88);
  color: var(--on-dark);
  font-size: 13px;
  font-weight: 700;
  z-index: 3;
  pointer-events: none;
}

.video-soon[hidden] {
  display: none;
}

.video-play[hidden] {
  display: none;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

