/* ---------- Fontes ---------- */
@font-face {
  font-family: "Outfit";
  src: url("/grandeabc1/fonts/Outfit-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Config Condensed";
  src: url("/grandeabc1/fonts/ConfigCondensedRegular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Config Condensed";
  src: url("/grandeabc1/fonts/ConfigCondensedMedium.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Config Condensed";
  src: url("/grandeabc1/fonts/ConfigCondensedBold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Config Condensed";
  src: url("/grandeabc1/fonts/ConfigCondensedExtraBold.otf") format("opentype");
  font-weight: 800;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --navy:        #003575;
  --navy-deep:   #002756;
  --cream:       #FFF8D6;
  --blue-soft:   #BFE3F2;
  --green-cta:   #A6D77A;
  --green-cta-deep: #7DB94C;
  --ink:         #0B2545;
  --ink-soft:    rgba(255,255,255,.86);
  --line:        rgba(255,255,255,.16);
  --wa-green:    #25D366;

  --font-display: "Config Condensed", "Arial Narrow", sans-serif;
  --font-text:    "Outfit", system-ui, sans-serif;

  --container: 1180px;
  --radius:    16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-text);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; border: 0; background: none; color: inherit; cursor: pointer; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: lowercase;
  margin: 0;
  line-height: 1.05;
}

/* ---------- Utilities ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1024px) {
  .container { padding: 0 48px; }
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  text-transform: lowercase;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--blue-soft); outline-offset: 3px; }

.btn--primary {
  background: var(--green-cta);
  color: var(--ink);
  box-shadow: 0 6px 0 var(--green-cta-deep), 0 12px 28px rgba(166,215,122,.35);
}
.btn--primary:hover { background: #B5E08F; }

.btn--secondary {
  background: var(--blue-soft);
  color: var(--navy);
  box-shadow: 0 6px 0 #8FC8DD, 0 12px 28px rgba(191,227,242,.35);
}

.btn__icon { width: 22px; height: 22px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: var(--cream);
  padding: 32px 0 64px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .hero__inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 56px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.hero__logo {
  width: clamp(240px, 28vw, 340px);
  height: auto;
  margin-bottom: 28px;
}

.hero__title {
  color: var(--navy);
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 24px;
}
.hero__title .line { display: block; }
.hero__title .line__mark {
  position: relative;
  display: inline-block;
  isolation: isolate;
  color: var(--navy);
}
.hero__title .line__mark::after {
  content: "";
  position: absolute;
  left: -6px; right: -6px;
  bottom: 4px;
  height: 12px;
  background: var(--green-cta);
  z-index: -1;
  border-radius: 4px;
}

.hero__bullets {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--navy);
  line-height: 1.7;
}
.hero__bullets strong { font-weight: 800; }

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--navy);
  opacity: .85;
  animation: bounceCue 1.8s var(--ease) infinite;
  text-transform: lowercase;
  letter-spacing: -0.005em;
}
.scroll-cue svg { width: 28px; height: 28px; }
@keyframes bounceCue {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue { animation: none; }
}

.hero__photo {
  width: 100%;
  max-width: 580px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  justify-self: center;
  box-shadow: 0 16px 40px rgba(0,53,117,.18);
}

.hero__copy .btn--primary {
  min-width: 320px;
  justify-content: center;
  padding-left: 36px;
  padding-right: 36px;
}
@media (max-width: 767px) {
  .hero__copy .btn--primary {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .hero__copy { display: contents; }
  .hero__logo    { order: 1; align-self: center; text-align: center; }
  .hero__title   { order: 2; text-align: center; }
  .hero__bullets { order: 3; text-align: center; }
  .hero__photo   { order: 4; margin: 8px auto 28px; }
  .hero__copy .btn--primary { order: 5; }
  .hero__cue     { margin-top: 16px; }
  .hero { padding-bottom: 8px; }
  .explain { padding-top: 12px; }
  .quiz { padding-bottom: 12px; }
  .cats { padding-top: 12px; }
  .price { padding-bottom: 4px; }
  .movement { padding-top: 4px; padding-bottom: 24px; }
}
@media (max-width: 767px) {
  .wave svg { height: 18px; }
}

.hero__cue {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* ---------- Placeholder util ---------- */
.placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: rgba(255,255,255,.85);
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-lg);
  min-height: 280px;
}
.placeholder--square {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 580px;
  justify-self: center;
}

/* =========================================================
   WAVE DIVIDER
   ========================================================= */
.wave { line-height: 0; }
.wave svg { width: 100%; height: 72px; display: block; }
.wave--up { background: var(--navy); }
.wave--down + section,
.wave--down + footer { margin-top: -1px; }
.wave--up + section { margin-top: -1px; }

/* =========================================================
   EXPLAIN — o que é o Tour
   ========================================================= */
.explain {
  background: var(--navy);
  color: var(--ink-soft);
  padding: 64px 0 48px;
}
.explain .section-title {
  text-align: center;
  margin: 0 auto 40px;
  max-width: 720px;
}
.explain .section-title em {
  font-style: normal;
  text-transform: none;
  color: var(--cream);
  letter-spacing: -0.005em;
  display: inline-block;
  padding: 2px 4px 0;
  border-bottom: 6px solid var(--green-cta);
}
.explain .eyebrow {
  text-align: center;
}

.explain__pitch {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 72px 32px 40px;
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,.32);
}
.explain__stamp {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 28px);
  text-transform: lowercase;
  letter-spacing: 0.01em;
  color: var(--ink);
  padding: 2px 16px 6px;
  background: linear-gradient(180deg, transparent 22%, #FFE066 22%, #FFE066 82%, transparent 82%);
  white-space: nowrap;
}
.explain__pitch-lead {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.15;
  color: var(--navy);
  text-transform: lowercase;
  letter-spacing: -0.005em;
}
.explain__pitch-lead strong {
  color: var(--navy);
  background: linear-gradient(180deg, transparent 65%, var(--blue-soft) 65%);
  padding: 0 4px;
}
.explain__pitch-tag {
  margin: 0;
  font-family: var(--font-text);
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--navy);
  opacity: .82;
}
.explain__tag-strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2vw, 24px);
  color: var(--navy);
  opacity: 1;
  text-transform: lowercase;
  margin-left: 4px;
}

.explain__bridge {
  text-align: center;
  font-family: var(--font-text);
  font-size: clamp(17px, 1.5vw, 20px);
  margin: 0 0 40px;
  color: var(--ink-soft);
}
.explain__bridge strong {
  color: #fff;
  font-weight: 700;
}

.explain__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0 auto 48px;
  max-width: 980px;
}
@media (min-width: 768px) {
  .explain__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.explain__stat {
  background: #FFEAA0;
  border: 1px solid rgba(11, 37, 69, 0.18);
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.explain__stat:hover {
  background: #FFE285;
  border-color: rgba(11, 37, 69, 0.35);
  transform: translateY(-2px);
}

.explain__stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(42px, 5.2vw, 58px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.explain__stat-tagline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.explain__stat-label {
  font-family: var(--font-text);
  font-size: clamp(15px, 1.4vw, 16px);
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.75;
}
.explain__stat-label strong { color: var(--ink); font-weight: 700; opacity: 1; }

.explain__close {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--font-text);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
}
.explain__close strong { color: #fff; font-weight: 700; }

/* =========================================================
   QUIZ — sticker notes (densidade reduzida)
   ========================================================= */
.quiz {
  background: var(--navy);
  padding: 32px 0 80px;
}

.quiz__head {
  text-align: center;
  margin: 0 auto 40px;
  max-width: 640px;
}
.quiz__kicker {
  display: inline-block;
  font-family: var(--font-text);
  font-weight: 800;
  font-size: clamp(15px, 1.5vw, 17px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--cream);
  margin: 0 0 22px;
  padding: 9px 18px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-1.5deg);
}
.quiz__title {
  font-size: clamp(34px, 4vw, 50px);
  color: #fff;
  margin: 0 0 12px;
}
.quiz__title em {
  font-style: normal;
  text-transform: none;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.quiz__sub {
  font-family: var(--font-text);
  font-weight: 600;
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--ink-soft);
  margin: 0;
}

.quiz__panels {
  list-style: none;
  margin: 0 auto 48px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 980px;
}
@media (min-width: 768px) {
  .quiz__panels {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 56px;
  }
}

.qpanel {
  position: relative;
  /* reserva espaço pra sombra evitar layout shift no press */
  padding: 0 5px 5px 0;
}
.qpanel:nth-child(1) { --tilt: -0.8deg; --tilt-checked: 0deg; }
.qpanel:nth-child(2) { --tilt: 0.6deg;  --tilt-checked: 0deg; }
.qpanel:nth-child(3) { --tilt: -0.4deg; --tilt-checked: 0deg; }

.qpanel__check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.qpanel__face {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 140px;
  padding: 18px 18px 20px;
  background: #FFE066;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 10px;
  box-shadow: 5px 5px 0 var(--navy-deep);
  transform: rotate(var(--tilt));
  cursor: pointer;
  transition: transform .16s var(--ease), box-shadow .16s var(--ease), background .2s var(--ease);
}
@media (min-width: 768px) {
  .qpanel__face { min-height: 160px; }
}
.qpanel__face:hover {
  transform: rotate(var(--tilt)) translate(-1px, -1px);
  box-shadow: 6px 6px 0 var(--navy-deep);
}
.qpanel__check:focus-visible + .qpanel__face {
  outline: 3px solid var(--blue-soft);
  outline-offset: 4px;
}

.qpanel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.qpanel__index {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: 0.04em;
  opacity: 0.55;
}
.qpanel__check-visual {
  width: 28px;
  height: 28px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.04);
  display: grid;
  place-items: center;
  color: transparent;
  transition: background .16s var(--ease), color .16s var(--ease), transform .16s var(--ease);
  flex-shrink: 0;
}
.qpanel__check-visual svg {
  width: 18px;
  height: 18px;
  transform: scale(0.6);
  transition: transform .18s var(--ease);
}

.qpanel__statement {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.2;
  color: var(--ink);
  text-transform: lowercase;
  letter-spacing: -0.005em;
}

/* ---------- CHECKED — sticker pressionado ---------- */
.qpanel:has(.qpanel__check:checked) .qpanel__face {
  background: var(--green-cta);
  transform: rotate(var(--tilt-checked)) translate(5px, 5px);
  box-shadow: 0 0 0 var(--navy-deep);
}
.qpanel:has(.qpanel__check:checked) .qpanel__index {
  opacity: 0.4;
}
.qpanel:has(.qpanel__check:checked) .qpanel__check-visual {
  background: var(--ink);
  color: var(--green-cta);
}
.qpanel:has(.qpanel__check:checked) .qpanel__check-visual svg {
  transform: scale(1);
}

/* ---------- VERDICT — sticker grande no fim ---------- */
.quiz__verdict {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding: 20px 28px;
  font-family: var(--font-text);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 10px;
  box-shadow: 4px 4px 0 var(--navy-deep);
  text-align: center;
  transform: rotate(-0.4deg);
  transition: transform .25s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.quiz__verdict strong {
  color: var(--ink);
  font-weight: 800;
}
.quiz__verdict em {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  text-transform: lowercase;
  background: var(--green-cta);
  padding: 0 6px;
  border-radius: 4px;
}

.quiz__verdict[data-state="some"] {
  background: #FFE066;
  transform: rotate(0.3deg);
}
.quiz__verdict[data-state="all"] {
  background: var(--green-cta);
  transform: rotate(0.5deg);
  font-size: clamp(19px, 1.9vw, 23px);
  padding: 26px 32px;
  line-height: 1.45;
}
.quiz__verdict[data-state="all"] em {
  background: var(--ink);
  color: var(--green-cta);
}

.quiz__cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

@media (prefers-reduced-motion: reduce) {
  .qpanel__face,
  .qpanel__check-visual,
  .qpanel__check-visual svg,
  .quiz__verdict { transition: none; }
}

/* =========================================================
   CATEGORIAS
   ========================================================= */
.cats {
  background: var(--cream);
  padding: 64px 0 88px;
  color: var(--ink);
}
.eyebrow {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-soft);
  margin: 0 0 12px;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  color: #fff;
  margin-bottom: 32px;
  max-width: 720px;
}

/* Overrides quando a seção .cats está em cream */
.cats .eyebrow {
  color: var(--navy-deep);
  opacity: 0.75;
}
.cats .section-title {
  color: var(--navy);
}
.cats .section-title em {
  font-style: normal;
  text-transform: none;
}
.section-title__more {
  display: block;
  margin-top: 8px;
  font-size: 0.55em;
  font-weight: 600;
  opacity: 0.75;
  font-family: var(--font-text);
  letter-spacing: 0.01em;
}

.cats__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.cats__tab {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1px solid rgba(0, 53, 117, 0.22);
  color: var(--navy);
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 14px;
  text-transform: lowercase;
  cursor: pointer;
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.cats__tab:hover {
  border-color: var(--navy);
  background: rgba(0, 53, 117, 0.04);
}
.cats__tab.is-active {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

.cats__viewport {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
}
.cats__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 78%;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.cats__rail::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
  .cats__rail { grid-auto-columns: 42%; }
}
@media (min-width: 1024px) {
  .cats__rail { grid-auto-columns: calc((100% - 48px) / 4); gap: 16px; }
}

.cat-card {
  background: #fff;
  color: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 53, 117, 0.08);
  box-shadow: 0 8px 24px rgba(0, 39, 86, 0.08);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.cat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 39, 86, 0.14);
}
.cat-card__photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.cat-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  margin: 16px 16px 6px;
  color: var(--navy);
}
.cat-card p {
  margin: 0 16px 18px;
  font-size: 14px;
  color: var(--navy);
  opacity: .75;
}

.cats__nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 39, 86, 0.18);
  z-index: 2;
  transition: background .18s var(--ease), transform .18s var(--ease);
}
.cats__nav:hover {
  background: var(--navy-deep);
  transform: translateY(-50%) scale(1.06);
}
.cats__nav svg { width: 20px; height: 20px; margin: 0 auto; }
.cats__nav--prev { left: -10px; }
.cats__nav--next { right: -10px; }
@media (min-width: 1024px) {
  .cats__nav { display: grid; place-items: center; }
}

/* =========================================================
   PRICE CARD
   ========================================================= */
.price {
  background: var(--cream);
  padding: 32px 0 64px;
}
@media (max-width: 640px) {
  .cats { padding-bottom: 28px; }
  .price { padding-top: 12px; }
  .price__title { margin-bottom: 20px; }
}
.price__title {
  color: var(--navy);
  text-align: center;
  margin: 0 auto 32px;
  max-width: 820px;
}
.price__title-mark {
  position: relative;
  display: inline-block;
  color: var(--navy);
  isolation: isolate;
}
.price__title-mark::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  bottom: 2px;
  height: 14px;
  background: var(--green-cta);
  z-index: -1;
  border-radius: 4px;
}
.price__svg-wrap {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  line-height: 0;
}
.price__svg {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}
.price__svg--mobile { display: none; }
.price__cta-mobile { display: none; }
@media (max-width: 640px) {
  .price__svg--desktop { display: none; }
  .price__svg--mobile  { display: block; }
  .price__cta-mobile {
    display: inline-flex;
    margin: 24px auto 0;
  }
  .price .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
/* Overlay clicável posicionado sobre o botão verde do SVG.
   Coordenadas baseadas no viewBox 1314×815 do SVG. */
.price__hotspot {
  position: absolute;
  left: 6.38%;
  top: 80.12%;
  width: 54.11%;
  height: 9.08%;
  border-radius: 9999px;
  background: transparent;
  cursor: pointer;
  z-index: 2;
  transition: background .18s var(--ease);
}
.price__hotspot:hover {
  background: rgba(0, 0, 0, 0.08);
}
.price__hotspot:active {
  background: rgba(0, 0, 0, 0.14);
}
.price__hotspot:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
}

/* =========================================================
   FAQ
   ========================================================= */
/* =========================================================
   MOVIMENTO (autoridade pós-preço — padrão hero 2-col)
   ========================================================= */
.movement {
  background: var(--navy);
  color: var(--ink-soft);
  padding: 64px 0;
}
.movement__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (min-width: 768px) {
  .movement__inner {
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
  }
}
.movement__photo {
  width: 100%;
  max-width: 580px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  justify-self: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
  display: block;
  height: 100%;
}
.movement__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}
.movement__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.5vw, 52px);
  color: #fff;
  margin: 0 0 24px;
  line-height: 1.1;
  text-transform: lowercase;
  letter-spacing: -0.005em;
}
.movement__title em {
  font-style: normal;
  text-transform: none;
  color: var(--cream);
  display: inline-block;
  padding: 2px 4px 0;
  border-bottom: 6px solid var(--green-cta);
}
.movement__copy p {
  font-family: var(--font-text);
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.65;
  margin: 0 0 16px;
}
.movement__copy strong {
  color: #fff;
  font-weight: 700;
}
.movement .eyebrow {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  .movement__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .movement__copy { display: contents; }
  .movement .eyebrow { order: 1; margin-bottom: 0; text-align: center; }
  .movement__photo { order: 2; }
  .movement__copy > p,
  .movement__cta { order: 3; }
}
.movement__punch {
  font-family: var(--font-display) !important;
  font-size: clamp(17px, 1.5vw, 20px) !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  color: var(--cream);
  margin: 16px 0 !important;
}
.movement__punch em {
  font-style: normal;
  display: inline-block;
  padding: 1px 3px 0;
  border-bottom: 3px solid var(--green-cta);
  color: var(--cream);
}
.movement__cta {
  align-self: flex-start;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .movement__cta { align-self: stretch; justify-content: center; }
}

.faq {
  background: var(--navy);
  padding: 56px 0 72px;
  color: var(--ink-soft);
}
.faq__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.faq__badge {
  display: inline-block;
  background: var(--cream);
  color: var(--navy);
  padding: 8px 18px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.faq__title {
  font-size: clamp(28px, 3.5vw, 40px);
  color: #fff;
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 16px;
  padding-left: 18px;
  position: relative;
  transition: color .18s var(--ease);
}
.faq-item summary:hover { color: var(--cream); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--cream);
  font-size: 22px;
  line-height: 1;
}
.faq-item summary::after {
  content: "";
  width: 12px; height: 12px;
  border-right: 2px solid var(--cream);
  border-bottom: 2px solid var(--cream);
  transform: rotate(45deg);
  transition: transform .2s var(--ease);
  flex: 0 0 auto;
  margin-right: 4px;
}
.faq-item[open] summary::after {
  transform: rotate(-135deg);
}
.faq-item__a {
  margin-top: 10px;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}
.faq-item__a a { color: var(--cream); text-decoration: underline; }

.faq__cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--navy-deep);
  color: var(--ink-soft);
  padding: 40px 0 32px;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer__logo { width: 220px; height: auto; opacity: .95; }
.footer__contact {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
}
.footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
}
.footer__contact a:hover { color: #fff; }
.footer__legal {
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-soft);
  opacity: .7;
  letter-spacing: .02em;
}
.footer__legal p { margin: 0; }
.footer__legal a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__legal a:hover { color: #fff; }

/* =========================================================
   FAB WhatsApp
   ========================================================= */
.wa-fab-wrap {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wa-fab__tip {
  background: #fff;
  color: var(--navy);
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  pointer-events: none;
  white-space: nowrap;
}
.wa-fab__tip.is-visible { opacity: 1; transform: translateX(0); pointer-events: auto; }
.wa-fab {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37,211,102,.45);
  transition: transform .18s var(--ease);
}
.wa-fab:hover { transform: scale(1.06); }
.wa-fab__icon { width: 28px; height: 28px; }
@media (max-width: 480px) {
  .wa-fab__tip { display: none; }
}

/* =========================================================
   CHECKOUT MODAL
   ========================================================= */
.modal[hidden] { display: none !important; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 39, 86, 0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  cursor: pointer;
  animation: modal-fade 200ms var(--ease) both;
}
.modal__panel {
  position: relative;
  background: var(--cream);
  color: var(--navy);
  border-radius: var(--radius-lg);
  max-width: 440px;
  width: 100%;
  padding: 36px 28px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  animation: modal-in 220ms var(--ease) both;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes modal-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}
.modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  transition: background 0.18s var(--ease);
}
.modal__close:hover { background: rgba(0, 53, 117, 0.1); }
.modal__close:focus-visible { outline: 3px solid var(--blue-soft); outline-offset: 2px; }
.modal__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
  margin: 0 0 6px;
  line-height: 1.15;
  text-transform: lowercase;
  color: var(--navy);
}
.modal__subtitle {
  margin: 0 0 24px;
  color: var(--navy);
  opacity: 0.78;
  font-size: 15px;
  line-height: 1.45;
}
.modal__field {
  display: block;
  margin-bottom: 14px;
}
.modal__field span {
  display: block;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--navy);
}
.modal__field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid rgba(0, 53, 117, 0.18);
  font-family: var(--font-text);
  font-size: 16px;
  background: #fff;
  color: var(--navy);
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.modal__field input::placeholder { color: rgba(0, 53, 117, 0.4); }
.modal__field input:focus {
  outline: none;
  border-color: var(--green-cta-deep);
  box-shadow: 0 0 0 3px rgba(166, 215, 122, 0.3);
}
.modal__hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  overflow: hidden !important;
}
.modal__error {
  margin: 0 0 14px;
  padding: 10px 12px;
  background: rgba(220, 38, 38, 0.08);
  border-left: 3px solid #DC2626;
  color: #B91C1C;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
}
.modal__submit {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
}
.modal__submit[disabled] { opacity: 0.55; cursor: not-allowed; }
.modal__legal {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--navy);
  opacity: 0.6;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .modal__panel { padding: 32px 22px 20px; }
  .modal__title { font-size: 22px; }
}
