/* ============================================================
   ROOTZ · Landing page styles
   ============================================================ */
@import url('tokens.css');

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0; font-family: var(--font-sans); color: var(--ink-2);
  background: var(--bg); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: clip;
}
h1,h2,h3,h4 { font-family: var(--font-display); color: var(--ink); margin: 0; line-height: 1.1; letter-spacing: -.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--violet-200); color: var(--violet-950); }
:focus-visible { outline: 3px solid hsl(278 70% 55% / .5); outline-offset: 2px; border-radius: 6px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 9vw, 112px); }
.section--tight { padding-block: clamp(44px, 6vw, 80px); }

.eyebrow {
  display: inline-flex; align-items: center;
  font-family: var(--font-sans); font-weight: 800; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--brand);
}
.eyebrow--light { color: var(--lime-400); }
.eyebrow--center { display: flex; justify-content: center; }

.h-sec { font-weight: 800; font-size: clamp(28px, 4vw, 46px); }
.h-sec em { font-style: normal; color: var(--brand); }
.lede { font-size: clamp(16px, 1.6vw, 19px); color: var(--ink-3); max-width: 60ch; }
.sec-head { display: flex; flex-direction: column; gap: 16px; max-width: 720px; }
.sec-head--center { margin-inline: auto; align-items: center; text-align: center; }
#precos .sec-head { max-width: 860px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-sans); font-weight: 700; font-size: 15px; line-height: 1;
  height: 50px; padding: 0 24px; border-radius: var(--r-pill); border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap; overflow: visible;
  perspective: 1000px;
  transition: transform var(--dur) var(--ease),
    background var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform .32s var(--ease); }
.btn__text {
  position: relative;
  display: inline-block;
  transition: transform .32s var(--ease);
  transform-origin: 50% 0;
  transform-style: preserve-3d;
}
.btn__text::before {
  content: attr(data-text);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotateX(-90deg);
  transform-origin: 50% 0;
  text-align: center;
  color: inherit;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover .btn__text { transform: rotateX(90deg) translateY(-12px); }
  .btn:hover svg { transform: translate(3px, -3px); }
}
.btn:active { transform: scale(.97); }
@media (prefers-reduced-motion: reduce) {
  .btn__text { transition: none; transform: none !important; }
  .btn__text::before { content: none; }
  .btn:hover svg { transform: none; }
}
.btn--primary { background: var(--brand); color: #fff; box-shadow: var(--sh-sm); }
.btn--primary:hover { background: var(--brand-hover); box-shadow: var(--sh-brand); }
.btn--accent { background: var(--accent); color: var(--accent-ink); box-shadow: var(--sh-sm); }
.btn--accent:hover { background: var(--lime-300); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--neutral-100); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--outline:hover { border-color: var(--brand); color: var(--brand); }
.btn--white { background: #fff; color: var(--brand); }
.btn--white:hover { background: var(--violet-50); }
.btn--lg { height: 58px; padding: 0 30px; font-size: 16px; }
.btn--block { width: 100%; }
.btn-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--brand); }
.btn-link svg { width: 18px; height: 18px; transition: transform var(--dur) var(--ease); }
.btn-link:hover svg { transform: translateX(4px); }
.btn-link--light { color: #fff; }

.cta-note { font-size: 13.5px; color: var(--ink-3); font-weight: 500; }
.cta-note--light { color: rgba(255,255,255,.72); }

/* ---------- Image / video placeholders ("marcações") ---------- */
.ph {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; text-align: center; color: #fff; overflow: hidden;
  background: linear-gradient(135deg, var(--violet-500), var(--violet-700));
  border-radius: var(--r-xl); min-height: 220px; isolation: isolate;
}
.ph::before { /* pitch lines motif */
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .16;
  background-image:
    linear-gradient(#fff 2px, transparent 2px),
    linear-gradient(90deg, #fff 2px, transparent 2px);
  background-size: 44px 44px; background-position: center;
}
.ph__tag {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px;
  background: rgba(0,0,0,.32); border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--r-pill); font-size: 12.5px; font-weight: 700; letter-spacing: .02em;
  backdrop-filter: blur(4px);
}
.ph__tag svg { width: 15px; height: 15px; }
.ph__hint { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.6); letter-spacing: .04em; }
.ph--video { aspect-ratio: 16/9; min-height: 0; box-shadow: var(--sh-md); }
.ph__play {
  width: 70px; height: 70px; border-radius: var(--r-pill); background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0,0,0,.3);
  transition: transform var(--dur) var(--ease);
}
.ph__play svg { width: 26px; height: 26px; margin-left: 3px; }
.ph--video:hover .ph__play { transform: scale(1.08); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent; backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease),
    border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.nav--scrolled {
  background: hsl(0 0% 100% / .82); backdrop-filter: blur(14px);
  border-color: var(--line); box-shadow: var(--sh-sm);
}
.nav__in { display: flex; align-items: center; gap: 28px; width: 100%; }
.nav__logo { display: flex; align-items: center; }
.nav__logo-img { height: 26px; width: auto; }
.nav__logo-img--dark { display: none; }
.nav--scrolled .nav__logo-img--light { display: none; }
.nav--scrolled .nav__logo-img--dark { display: block; }
.nav__links { display: none; gap: 30px; margin-inline: auto; }
.nav__links a {
  font-weight: 600; font-size: 15px; color: #fff;
  transition: color var(--dur) var(--ease);
}
.nav__links a:hover { color: var(--lime-400); }
.nav--scrolled .nav__links a { color: var(--ink-2); }
.nav--scrolled .nav__links a:hover { color: var(--brand); }
.nav__actions { display: none; align-items: center; gap: 12px; margin-left: auto; }
.nav:not(.nav--scrolled) .nav__actions .btn--ghost {
  color: #fff;
}
.nav:not(.nav--scrolled) .nav__actions .btn--ghost:hover {
  background: rgba(255, 255, 255, .12); color: #fff;
}
.nav__burger {
  margin-left: auto; width: 46px; height: 46px; border: 0; background: transparent; color: #fff;
  display: grid; place-items: center; cursor: pointer; border-radius: var(--r-md);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav__burger:hover { background: rgba(255, 255, 255, .12); }
.nav--scrolled .nav__burger { color: var(--ink); }
.nav--scrolled .nav__burger:hover { background: var(--neutral-100); }
.nav__burger svg { width: 26px; height: 26px; }
/* mobile drawer */
.nav__drawer {
  position: fixed; inset: var(--nav-h) 0 auto 0; background: #fff; border-bottom: 1px solid var(--line);
  padding: 16px var(--gutter) 24px; display: none; flex-direction: column; gap: 6px; box-shadow: var(--sh-lg);
  transform: translateY(-12px); opacity: 0; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav__drawer.open { display: flex; transform: translateY(0); opacity: 1; }
.nav__drawer a { padding: 13px 12px; border-radius: var(--r-md); font-weight: 600; color: var(--ink); }
.nav__drawer a:hover { background: var(--neutral-100); }
.nav__drawer .btn { margin-top: 6px; }

@media (min-width: 940px) {
  .nav__links, .nav__actions { display: flex; }
  .nav__burger { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; color: #fff;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex; flex-direction: column;
  padding: 0;
  overflow-x: clip;
  overflow-y: visible;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  overflow: hidden; background: var(--violet-950);
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  min-width: 100%; min-height: 100%;
  object-fit: cover; object-position: center center;
  display: block; pointer-events: none;
}
.hero__tint {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(105deg,
      rgba(27, 5, 55, .78) 0%,
      rgba(97, 19, 175, .52) 50%,
      rgba(97, 19, 175, .52) 100%),
    rgba(97, 19, 175, .44);
}
.hero > .container {
  position: relative; z-index: 2;
  flex: 1; display: flex; flex-direction: column;
  width: 100%; min-height: 100%;
  padding-top: var(--nav-h);
  box-sizing: border-box;
}
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
  .hero__bg { background: linear-gradient(160deg, var(--violet-700), var(--violet-900) 60%, var(--violet-950)); }
}
.hero__grid { display: grid; gap: 40px; align-items: center; flex: 1; }
.hero__eyebrow { color: var(--lime-400); }
.hero h1 { color: #fff; font-weight: 800; font-size: clamp(34px, 5.2vw, 55px); letter-spacing: -.03em; }
.hero h1 .hl { color: var(--lime-400); }
.hero__sub { font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,.82); max-width: 36ch; margin-top: 22px; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 30px; }
.hero__note { margin-top: 18px; display: inline-flex; align-items: center; gap: 9px; font-size: 13.5px; color: rgba(255,255,255,.7); font-weight: 600; }
.hero__note svg { width: 17px; height: 17px; color: var(--lime-400); }
.hero__media {
  position: relative;
  width: 100%;
  align-self: center;
  z-index: 3;
}
.hero__shot {
  margin: 0;
  border-radius: var(--r-xl);
  overflow: visible;
  border: none;
  box-shadow: none;
  line-height: 0;
  background: transparent;
}
.hero__shot img {
  display: block;
  height: auto;
  width: auto;
  max-height: min(910px, 78vh);
  max-width: 100%;
  margin-inline: auto;
}
.hero__badge {
  position: absolute;
  z-index: 4;
  background: #fff;
  color: var(--ink);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  font-size: 13.5px;
}
.hero__badge small { display: block; font-weight: 600; color: var(--ink-3); font-size: 12px; }
.hero__badge-ic { width: 38px; height: 38px; border-radius: var(--r-md); display: grid; place-items: center; flex: none; }
.hero__badge--1 { top: 24%; left: -6px; right: auto; }
.hero__badge--2 { bottom: 22%; right: -4px; left: auto; }

/* hero stats strip (faixa) */
.hero__strip {
  position: relative; z-index: 2; flex-shrink: 0;
  margin-top: auto;
  padding-bottom: clamp(16px, 3vw, 28px);
  border-top: 1px solid rgba(255,255,255,.14);
}
.strip-grid { display: grid; grid-template-columns: 1fr; }
.strip-item { display: flex; gap: 14px; align-items: flex-start; padding: 26px 4px; border-bottom: 1px solid rgba(255,255,255,.14); }
.strip-item__ic { width: 44px; height: 44px; border-radius: var(--r-md); background: rgba(255,255,255,.1); color: var(--lime-400); display: grid; place-items: center; flex: none; }
.strip-item__ic svg { width: 22px; height: 22px; }
.strip-item h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.strip-item p { font-size: 13.5px; color: rgba(255,255,255,.66); line-height: 1.45; }

@media (min-width: 760px) { .strip-grid { grid-template-columns: repeat(2, 1fr); column-gap: 32px; } }
@media (min-width: 980px) {
  .hero__grid {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    margin-bottom: 0;
  }
  .hero__copy { align-self: center; padding-bottom: 0; }
  .hero__media {
    align-self: center;
    margin-bottom: clamp(-52px, -4.5vw, -28px);
  }
  .hero__shot img {
    height: 910px;
    width: auto;
    max-height: none;
    max-width: none;
    margin-left: auto;
    margin-right: clamp(-8px, -0.5vw, 4px);
  }
  .hero__badge--1 { top: 40%; left: clamp(-24px, -2vw, -8px); }
  .hero__badge--2 { bottom: 32%; right: clamp(-14px, -1.2vw, 0px); }
  .strip-grid { grid-template-columns: repeat(4, 1fr); }
  .strip-item { border-bottom: 0; }
}

/* ============================================================
   SEÇÃO 2 · O PROBLEMA (carrossel)
   ============================================================ */
.problema { background: var(--bg-soft); overflow-x: clip; }
.problema .sec-head { margin-bottom: 0; }

.pain-carousel {
  --pain-gap: clamp(16px, 2vw, 24px);
  --pain-card-w: 592px;
  --pain-card-h: 386px;
  margin-top: clamp(36px, 5vw, 52px);
  width: 100%;
  overflow: hidden;
}
.pain-carousel__viewport {
  overflow: hidden;
  padding-inline: var(--gutter);
  touch-action: pan-y;
}
.pain-carousel.is-dragging .pain-carousel__viewport { touch-action: none; }
.pain-carousel.is-dragging .pain-card {
  user-select: none;
  -webkit-user-select: none;
}
.pain-carousel__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.pain-carousel__set {
  display: flex;
  gap: var(--pain-gap);
  padding-right: var(--pain-gap);
  flex-shrink: 0;
}
.pain-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 0 0 var(--pain-card-w);
  width: var(--pain-card-w);
  height: var(--pain-card-h);
  padding: 40px;
  background: var(--surface);
  border-radius: var(--r-xl);
}
.pain-card__ic {
  width: 56px;
  height: 56px;
  flex: none;
  border-radius: var(--r-md);
  background: var(--brand);
  color: var(--accent);
  display: grid;
  place-items: center;
}
.pain-card__ic svg { width: 28px; height: 28px; }
.pain-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-height: 0;
}
.pain-card__title {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
}
.pain-card__text {
  font-size: 16.5px;
  color: var(--ink-2);
  line-height: 1.55;
}
.pain-card__tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding: 11px 16px;
  background: var(--accent);
  color: var(--brand);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.01em;
  border-radius: var(--r-sm);
}
.pain-transition {
  margin-top: clamp(32px, 4vw, 44px);
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
  text-align: center; font-family: var(--font-display); font-weight: 700; font-size: clamp(18px, 2.4vw, 24px); color: var(--ink);
}
.pain-transition b { color: var(--brand); }

@media (prefers-reduced-motion: reduce) {
  .pain-carousel__track { animation: none; flex-wrap: wrap; width: 100%; gap: var(--pain-gap); }
  .pain-carousel__set { flex-wrap: wrap; width: 100%; padding-right: 0; justify-content: center; }
  .pain-carousel__set[aria-hidden="true"] { display: none; }
  .pain-carousel__viewport { overflow: visible; }
  .pain-card { flex: 0 0 var(--pain-card-w); width: min(var(--pain-card-w), 100%); height: auto; min-height: var(--pain-card-h); }
}

@media (max-width: 639px) {
  .pain-carousel {
    --pain-card-w: min(592px, calc(100vw - 2 * var(--gutter)));
    --pain-card-h: auto;
  }
  .pain-card { min-height: 320px; height: auto; }
}

/* ============================================================
   SEÇÃO 3 · PROPOSTA DE VALOR (band)
   ============================================================ */
.valor { background-color: #6113af; color: #fff; position: relative; overflow: hidden; isolation: isolate; }
.valor::before { content: ""; position: absolute; inset: 0; background: url('../../uploads/menino_futebol.jpg') center/cover no-repeat; background-attachment: fixed; opacity: .25; z-index: -2; }
.valor::after { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; z-index: -1;
  background: radial-gradient(circle, var(--violet-500), transparent 70%); top: -200px; right: -120px; opacity: .6; }
.valor .container { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.valor h2 { color: #fff; font-size: clamp(28px, 4.4vw, 50px); font-weight: 800; max-width: 22em; }
.valor p { font-size: clamp(16px, 1.8vw, 20px); color: rgba(255,255,255,.82); max-width: 60ch; margin-bottom: 15px; }

/* ============================================================
   SEÇÃO 4 · FUNCIONALIDADES
   ============================================================ */
.feat {
  position: relative;
  z-index: 2;
  padding-top: 0;
}
.feat-hero {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 3;
  margin-top: clamp(-120px, -14vw, -180px);
  margin-bottom: clamp(40px, 5vw, 56px);
  overflow-x: clip;
}
.feat .sec-head {
  margin-bottom: clamp(64px, 9vw, 104px);
}
.feat-hero__play {
  position: relative;
  display: inline-block;
  width: auto;
  max-width: none;
  padding: 0;
  border: none;
  border-radius: 0;
  overflow: visible;
  cursor: pointer;
  background: transparent;
  box-shadow: none;
  transition: transform var(--dur) var(--ease);
  line-height: 0;
}
.feat-hero__play:hover {
  transform: translateY(-3px);
  box-shadow: none;
}
.feat-hero__play img {
  display: block;
  width: 800px;
  height: auto;
  max-width: 100%;
  background: transparent;
}
.feat-hero__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: transparent;
  pointer-events: none;
}
.feat-hero__play:hover .feat-hero__overlay {
  background: transparent;
}
.feat-hero__play-btn {
  position: relative;
  z-index: 1;
  pointer-events: auto;
  width: clamp(72px, 10vw, 92px);
  height: clamp(72px, 10vw, 92px);
  border-radius: var(--r-pill);
  background: var(--accent);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
  transition: transform var(--dur) var(--ease);
  animation: feat-play-glow 2.4s ease-in-out infinite;
}
.feat-hero__play-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--accent);
  z-index: -1;
  animation: feat-play-ring 2.4s ease-out infinite;
}
.feat-hero__play:hover .feat-hero__play-btn { transform: scale(1.06); }
.feat-hero__play-btn svg { width: 34px; height: 34px; margin-left: 4px; }

@keyframes feat-play-glow {
  0%, 100% {
    box-shadow:
      0 10px 28px rgba(0, 0, 0, .22),
      0 0 0 0 rgba(194, 238, 73, .45);
  }
  50% {
    box-shadow:
      0 14px 36px rgba(0, 0, 0, .28),
      0 0 0 14px rgba(194, 238, 73, 0);
  }
}
@keyframes feat-play-ring {
  0% {
    transform: scale(1);
    opacity: .5;
  }
  70%, 100% {
    transform: scale(1.55);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .feat-hero__play-btn { animation: none; }
  .feat-hero__play-btn::before { animation: none; opacity: 0; }
}

.feat-grid {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
}
.feat-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feat-item__ic {
  width: 46px;
  height: 46px;
  flex: none;
  color: var(--neutral-500);
  display: grid;
  place-items: center;
}
.feat-item__ic svg { width: 38px; height: 38px; }
.feat-item__title {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.25;
}
.feat-item__desc {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.6;
}
@media (min-width: 768px) {
  .feat-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(40px, 6vw, 72px);
    row-gap: clamp(36px, 4vw, 52px);
  }
}

/* Modal · YouTube */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}
.video-modal[hidden] { display: none; }
.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 17, 25, .78);
  backdrop-filter: blur(4px);
}
.video-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  z-index: 1;
}
.video-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .14);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background var(--dur) var(--ease);
}
.video-modal__close:hover { background: rgba(255, 255, 255, .28); }
.video-modal__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--sh-lg);
}
.video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   SEÇÃO 5 · DIFERENCIAIS
   ============================================================ */
.dif { background: var(--bg-soft); overflow: hidden; }

.dif-showcase {
  margin-top: clamp(40px, 5vw, 56px);
}

.dif-showcase__inner {
  display: grid;
  gap: clamp(36px, 5vw, 48px);
  align-items: center;
  padding-inline: var(--gutter);
}

.dif-steps {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 48px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.dif-step {
  display: flex;
  gap: clamp(18px, 2.2vw, 28px);
  align-items: flex-start;
  position: relative;
}

.dif-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: calc(-1 * clamp(32px, 4vw, 48px));
  width: 2px;
  background: var(--line-2);
}

.dif-step__num {
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill);
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  position: relative;
  z-index: 1;
  flex: none;
}

.dif-step__body {
  flex: 1;
  padding-top: 6px;
}

.dif-step__body h3 {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 10px;
}

.dif-step__body p {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--ink-3);
  line-height: 1.6;
  max-width: 42ch;
}

.dif-showcase__visual {
  display: flex;
  justify-content: center;
  line-height: 0;
}

.dif-showcase__visual img {
  width: min(100%, 520px);
  height: auto;
}

@media (min-width: 900px) {
  .dif-showcase__inner {
    position: relative;
    --dif-copy-w: min(480px, max(340px, 38vw));
    --dif-gap: clamp(24px, 3vw, 40px);
    /* Altura do visual: escala com a viewport em laptops, trava em 777px em telas grandes */
    --dif-visual-h: min(777px, 58vw);
    grid-template-columns: minmax(340px, 480px);
    gap: 0;
    align-items: center;
    padding-left: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
    padding-right: 0;
    min-height: var(--dif-visual-h);
  }

  .dif-steps {
    max-width: 480px;
  }

  .dif-showcase__visual {
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(
      max(var(--gutter), (100vw - var(--container)) / 2 + var(--gutter))
      + var(--dif-copy-w)
      + var(--dif-gap)
    );
    height: var(--dif-visual-h);
    margin-block: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .dif-showcase__visual img {
    width: auto;
    height: var(--dif-visual-h);
    max-height: var(--dif-visual-h);
    /* Anula o `img { max-width: 100% }` global que comprimia a largura e distorcia a imagem */
    max-width: none;
  }
}

@media (min-width: 1200px) {
  .dif-showcase__inner {
    --dif-copy-w: min(520px, max(380px, 40vw));
    grid-template-columns: minmax(380px, 520px);
  }

  .dif-steps {
    max-width: 520px;
  }
}

/* ============================================================
   SEÇÃO 6 · PREÇOS
   ============================================================ */
.price-grid { display: grid; gap: 20px; margin-top: 48px; align-items: stretch; }
.price-card {
  position: relative;
  z-index: 0;
  display: flex; flex-direction: column; gap: 18px; padding: 32px 28px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); box-shadow: var(--sh-sm);
  transform-origin: center center;
  transition:
    transform .75s cubic-bezier(.16, 1, .3, 1),
    box-shadow .8s cubic-bezier(.16, 1, .3, 1),
    border-color .6s ease;
  backface-visibility: hidden;
}
@media (hover: hover) and (pointer: fine) {
  .price-card:hover {
    transform: scale(1.02);
    box-shadow:
      0 10px 22px hsl(var(--sh-color) / .07),
      0 18px 36px hsl(278 70% 38% / .09);
    border-color: var(--violet-100);
    z-index: 2;
  }
}
@media (prefers-reduced-motion: reduce) {
  .price-card {
    transition:
      border-color .6s ease,
      box-shadow .6s ease;
  }
  .price-card:hover {
    transform: none;
    box-shadow: var(--sh-md);
    border-color: var(--violet-100);
  }
}
.price-card__tier { display: inline-flex; width: fit-content; align-items: center; gap: 8px; padding: 7px 14px; border-radius: var(--r-pill); background: var(--brand-soft); color: var(--brand); font-weight: 800; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; }
.price-card__size { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--ink); letter-spacing: -.02em; }
.price-card__size small { display: block; font-family: var(--font-sans); font-size: 14px; font-weight: 600; color: var(--ink-3); letter-spacing: 0; margin-top: 4px; }
.price-card ul { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.price-card li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); }
.price-card li svg { width: 20px; height: 20px; flex: none; color: var(--success); margin-top: 1px; }
.price-note {
  margin-top: 30px; text-align: center; background: var(--brand-soft); border: 1px solid var(--violet-100);
  border-radius: var(--r-xl); padding: 32px 26px; display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.price-note p { max-width: 56ch; color: var(--ink-2); font-size: 15.5px; }
.price-note b { color: var(--brand); }
@media (min-width: 860px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   SEÇÃO 7 · COMO FUNCIONA
   ============================================================ */
.steps-showcase {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(28px, 4.5vw, 44px);
  margin-top: clamp(36px, 5vw, 56px);
  max-width: 960px;
  margin-inline: auto;
}

.steps-showcase__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(8px, 2.4vw, 36px);
  width: 100%;
}

.steps-showcase__side {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 4vw, 44px);
  min-width: 0;
}

.steps-showcase__side--left {
  align-items: flex-end;
}

.steps-showcase__side--right {
  align-items: flex-start;
}

.steps-showcase__device {
  margin: 0;
  line-height: 0;
  flex: none;
  justify-self: center;
}

.steps-showcase__device img {
  display: block;
  width: clamp(118px, 30vw, 240px);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 18px 36px rgba(97, 19, 175, .16));
}

.step {
  position: relative;
}

.step__num {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: var(--r-pill);
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  box-shadow: var(--sh-sm);
}

.step__body {
  min-width: 0;
}

.step__body h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 6px;
}

.step__body p {
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.5;
}

.step--side {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 100%;
}

.step--side-left {
  align-items: flex-end;
  text-align: right;
}

.step--side-right {
  align-items: flex-start;
  text-align: left;
}

.step--side .step__num {
  width: 30px;
  height: 30px;
  font-size: 13px;
  background: var(--surface);
  color: var(--brand);
  border: 1.5px solid var(--violet-100);
  box-shadow: var(--sh-sm);
}

.step--side-left .step__body {
  padding-right: clamp(8px, 1.8vw, 14px);
  border-right: 2px solid var(--violet-100);
}

.step--side-right .step__body {
  padding-left: clamp(8px, 1.8vw, 14px);
  border-left: 2px solid var(--violet-100);
}

.step--side .step__body h4 {
  font-size: clamp(12.5px, 3vw, 18px);
  line-height: 1.25;
}

.step--side .step__body p {
  font-size: clamp(10.5px, 2.5vw, 14px);
  line-height: 1.4;
}

.step--foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  width: 100%;
  max-width: 42ch;
  margin-inline: auto;
  padding-top: 0;
}

.step--foot .step__num {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 8px 20px rgba(168, 213, 32, .28);
}

.step--foot .step__body h4 {
  font-size: clamp(20px, 2.8vw, 24px);
  color: var(--ink);
}

.step--foot .step__body p {
  font-size: clamp(15px, 2.4vw, 17.5px);
  color: var(--ink-3);
  line-height: 1.55;
}

@media (min-width: 920px) {
  .steps-showcase__row {
    column-gap: clamp(28px, 3.5vw, 48px);
  }

  .steps-showcase__device img {
    width: clamp(210px, 16vw, 260px);
  }

  .step--side .step__num {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .step--side .step__body h4 {
    font-size: 17px;
  }

  .step--side .step__body p {
    font-size: 14px;
  }
}

/* ============================================================
   SEÇÃO 8 · IMPACTO
   ============================================================ */
.impacto { background-color: #1b0537; color: #fff; position: relative; overflow: hidden; isolation: isolate; }
.impacto::before { content: ""; position: absolute; inset: 0; background: url('../../uploads/joga_bola_menino.jpg') center/cover no-repeat; background-attachment: fixed; opacity: .25; z-index: -2; }
.impacto .container { max-width: 880px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.impacto__big { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 5vw, 56px); color: #fff; letter-spacing: -.03em; line-height: 1.05; }
.impacto__big .hl { color: var(--lime-400); }
.impacto p { font-size: clamp(16px, 1.8vw, 19px); color: rgba(255,255,255,.74); max-width: 60ch; }
.impacto p.kick { color: #c2ee49; font-weight: 700; font-family: var(--font-display); font-size: clamp(18px, 2.2vw, 24px); }

/* ============================================================
   SEÇÃO 9 · FAQ
   ============================================================ */
.faq-list { margin-top: 40px; max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.faq-item.open { border-color: var(--violet-200); box-shadow: var(--sh-sm); }
.faq-q { width: 100%; display: flex; align-items: center; gap: 16px; text-align: left; padding: 20px 22px; background: none; border: 0; cursor: pointer; font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--ink); }
.faq-q__icon { margin-left: auto; flex: none; width: 30px; height: 30px; border-radius: var(--r-pill); background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; transition: transform var(--dur) var(--ease), background var(--dur) var(--ease); }
.faq-q__icon svg { width: 18px; height: 18px; }
.faq-item.open .faq-q__icon { background: var(--brand); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s var(--ease); }
.faq-a__in { padding: 0 22px 22px; font-size: 15px; color: var(--ink-2); line-height: 1.6; }

/* ============================================================
   SEÇÃO 10 · CTA FINAL
   ============================================================ */
.cta-final { background: var(--brand); color: #fff; position: relative; overflow: hidden; isolation: isolate; }
.cta-final::after { content: ""; position: absolute; width: 480px; height: 480px; border-radius: 50%; z-index: -1;
  background: radial-gradient(circle, var(--lime-400), transparent 70%); bottom: -240px; left: -120px; opacity: .22; }
.cta-final .container { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.cta-final h2 { color: #fff; font-size: clamp(28px, 4.6vw, 52px); font-weight: 800; max-width: 18ch; }
.cta-final p { font-size: clamp(16px, 1.8vw, 20px); color: rgba(255,255,255,.84); }
.cta-final__row { margin-top: 8px; }
.cta-final__demo { font-size: 14.5px; color: rgba(255,255,255,.78); }
.cta-final__demo a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--neutral-950); color: var(--neutral-400); padding-block: 56px 32px; }
.footer__top { display: grid; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand img { height: 26px; margin-bottom: 16px; }
.footer__brand p { font-size: 14px; line-height: 1.6; color: var(--neutral-400); max-width: 30ch; }
.footer__col h5 { font-family: var(--font-sans); color: var(--neutral-300); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.footer__col a { display: block; padding: 6px 0; font-size: 14.5px; color: var(--neutral-400); transition: color var(--dur) var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__seals { display: flex; flex-wrap: wrap; gap: 10px; }
.seal { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-pill); font-size: 12.5px; font-weight: 600; color: var(--neutral-300); }
.seal svg { width: 15px; height: 15px; color: var(--lime-400); }
.footer__bottom { padding-top: 24px; font-size: 13px; color: var(--neutral-500); }
@media (min-width: 720px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr; } }
@media (min-width: 960px) { .footer__top { grid-template-columns: 1.8fr 1fr 1fr 1.2fr; } }

/* ============================================================
   MOBILE · responsivo
   ============================================================ */
@media (max-width: 979px) {
  .dif-showcase__visual { display: none; }

  .feat-hero {
    margin-top: 0;
    margin-bottom: clamp(28px, 5vw, 40px);
  }
}

@media (max-width: 767px) {
  :root { --gutter: 20px; }

  .section { padding-block: clamp(44px, 10vw, 64px); }
  .container { padding-inline: var(--gutter); }

  /* —— Hero —— */
  .hero {
    min-height: auto;
    min-height: unset;
  }
  .hero > .container {
    min-height: auto;
    padding-bottom: 8px;
  }
  .hero__grid {
    gap: 20px;
    flex: 0;
  }
  .hero__media {
    display: block;
    margin-top: 8px;
    margin-bottom: 0;
  }
  .hero__shot img {
    max-height: min(440px, 68vh);
    width: auto;
    margin-inline: auto;
  }
  .hero__badge {
    font-size: 12px;
    padding: 10px 12px;
    gap: 9px;
  }
  .hero__badge-ic { width: 34px; height: 34px; }
  .hero__badge small { font-size: 11px; }
  .hero__badge--1 {
    top: 54%;
    left: 0;
    right: auto;
    transform: translateY(-50%);
  }
  .hero__badge--2 {
    bottom: 20%;
    right: 0;
    left: auto;
  }
  .hero h1 { font-size: clamp(30px, 8.2vw, 40px); }
  .hero__sub { max-width: none; margin-top: 18px; }
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 24px;
  }
  .hero__cta .btn { width: 100%; }
  .hero__cta .btn-link {
    justify-content: center;
    padding: 8px 0;
  }
  .hero__note { margin-top: 14px; }
  .hero__strip { margin-top: 28px; }
  .strip-item { padding: 18px 0; }

  /* —— O problema —— */
  .pain-card {
    padding: 28px 22px;
    min-height: 0;
    gap: 18px;
  }
  .pain-card__title { font-size: clamp(22px, 6vw, 26px); }
  .pain-card__text { font-size: 15px; }
  .pain-card__tag { font-size: 13.5px; padding: 9px 14px; }
  .pain-transition { font-size: clamp(17px, 4.5vw, 20px); padding-inline: var(--gutter); }

  /* —— Valor / impacto (parallax off) —— */
  .valor::before,
  .impacto::before { background-attachment: scroll; }
  .valor {
    padding-bottom: clamp(52px, 9vw, 72px);
  }
  .valor p { margin-bottom: 0; }

  /* —— Funcionalidades —— */
  .feat { padding-top: clamp(20px, 4vw, 28px); }
  .feat-hero {
    padding-inline: var(--gutter);
    margin-top: 0;
  }
  .feat-hero__play {
    display: inline-block;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    padding: 0;
    border-radius: var(--r-xl);
    background: transparent;
    border: none;
    overflow: hidden;
    box-shadow: var(--sh-lg);
  }
  .feat-hero__play img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
  }
  .feat-hero__overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    pointer-events: none;
  }
  .feat-hero__overlay::after { display: none; }
  .feat-hero__play-btn {
    width: 56px;
    height: 56px;
    animation: none;
    box-shadow: var(--sh-sm);
  }
  .feat-hero__play-btn::before { display: none; }
  .feat-hero__play-btn svg { width: 24px; height: 24px; }
  .feat .sec-head { margin-bottom: 36px; }
  .feat-grid { gap: 24px; }
  .feat-item { gap: 14px; }
  .feat-item__ic { width: 40px; height: 40px; }
  .feat-item__ic svg { width: 32px; height: 32px; }

  /* —— Diferenciais —— */
  .dif-showcase { margin-top: 32px; }
  .dif-showcase__inner { padding-inline: 0; gap: 0; }
  .dif-steps { gap: 28px; }
  .dif-step__body p { max-width: none; }

  /* —— Preços —— */
  .price-grid { margin-top: 32px; gap: 16px; }
  .price-card { padding: 24px 20px; }
  .price-card__size { font-size: 26px; }
  .price-note { padding: 24px 18px; }
  .price-note .btn { width: 100%; }

  /* —— Como funciona —— */
  .steps-showcase {
    margin-top: 32px;
    gap: 24px;
  }
  .steps-showcase__row {
    column-gap: 8px;
  }
  .steps-showcase__side { gap: 18px; }
  .step--foot .step__num {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }
  .step--foot .step__body h4 { font-size: clamp(21px, 5.2vw, 24px); }
  .step--foot .step__body p { font-size: clamp(15.5px, 3.8vw, 17px); }

  /* —— FAQ —— */
  .faq-q {
    font-size: 15px;
    padding: 16px 18px;
    gap: 12px;
  }
  .faq-a__in { padding: 0 18px 18px; font-size: 14.5px; }

  /* —— CTA / modal —— */
  .cta-final h2 { max-width: none; }
  .cta-final__row .btn { width: 100%; }
  .video-modal { padding: 16px; align-items: center; }
  .video-modal__close {
    position: fixed;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, .55);
  }
  .video-modal__dialog { width: 100%; }
}

@media (min-width: 768px) and (max-width: 979px) {
  .hero {
    min-height: auto;
    min-height: unset;
  }
  .hero > .container { min-height: auto; }
  .hero__grid { gap: 24px; }
  .hero__shot img {
    max-height: min(520px, 58vh);
    width: auto;
  }
  .hero__badge { display: none; }
  .feat-hero { margin-top: 0; }
  .feat-hero__play img { max-width: min(520px, 88vw); }
}

@media (max-width: 479px) {
  .eyebrow { font-size: 11px; letter-spacing: .1em; }
  .h-sec { font-size: clamp(24px, 7vw, 30px); }
  .btn--lg { height: 52px; padding: 0 22px; font-size: 15px; }
  .pain-card { padding: 24px 18px; }
  .valor h2 { font-size: clamp(24px, 7vw, 32px); }
}

/* ---------- Reveal on scroll ----------
   Fail-safe: .reveal is VISIBLE by default. The hidden/animated state is
   only applied when JS adds .js-anim to <html> AND can reveal it again.
   So with JS off, IO blocked, or the .in rule overridden, content still paints. */
@media (prefers-reduced-motion: no-preference) {
  html.js-anim .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
  html.js-anim .reveal.in { opacity: 1; transform: none; }
}
