/* ==========================================================================
   Meu Primeiro PIX — Landing page
   Identidade: petróleo + turquesa + dourado (extraída das artes da marca)
   ========================================================================== */

:root {
  --pet-950: #031c1b;
  --pet-900: #062f2e;
  --pet-800: #09403e;
  --pet-700: #0c5552;
  --pet-600: #0f6d67;
  --tq: #17b3aa;
  --tq-300: #6fe3da;
  --tq-50: #e6f5f3;

  --gold-300: #ffd75e;
  --gold: #f5bd24;
  --gold-600: #d99a0b;
  --gold-ink: #7d5400;
  --gold-grad: linear-gradient(180deg, #fff0b3 0%, #ffd75e 36%, #f0ae17 68%, #c98a06 100%);

  --creme: #fbf6ec;
  --areia: #f3ead7;
  --white: #fff;
  --ink: #0f2e2d;
  --ink-2: #46605e;
  --line: rgba(15, 46, 45, .12);
  --on-dark: #eaf6f4;
  --on-dark-2: #a9cdc9;

  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;
  --font-hand: "Caveat", "Segoe Print", cursive;

  --container: 1160px;
  --gutter: clamp(16px, 4vw, 32px);
  --radius: 22px;
  --shadow: 0 24px 60px -28px rgba(3, 28, 27, .45);
  --shadow-sm: 0 10px 30px -18px rgba(3, 28, 27, .35);
  --header-h: 68px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font: 400 1.0625rem/1.65 var(--font-body);
  color: var(--ink);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); margin: 0; text-wrap: balance; }
p { margin: 0 0 1em; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure, blockquote { margin: 0; }
strong { font-weight: 800; }

.ico {
  width: 1.25em; height: 1.25em; flex: none;
  fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.container.narrow { max-width: 860px; }
.center { text-align: center; }
.center-text { text-align: center; max-width: 62ch; margin-inline: auto; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--gold); color: var(--pet-950); padding: 10px 16px; border-radius: 10px; font-weight: 800;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

/* ---------- Texto utilitário ---------- */
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.marker {
  background: linear-gradient(transparent 60%, rgba(245, 189, 36, .45) 60%, rgba(245, 189, 36, .45) 92%, transparent 92%);
  padding-inline: .08em;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.hand { font-family: var(--font-hand); font-weight: 700; font-size: 1.35em; color: var(--gold-300); line-height: 1; }

.kicker {
  display: inline-flex; align-items: center; gap: .7rem;
  font: 800 .78rem/1.2 var(--font-display);
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--pet-600);
  margin-bottom: 1rem;
}
.kicker::before { content: ""; width: 28px; height: 3px; border-radius: 3px; background: var(--gold); }
.dark .kicker { color: var(--tq-300); }

h2 {
  font-size: clamp(1.75rem, 1.15rem + 2.3vw, 2.75rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font: 800 .95rem/1.25 var(--font-display);
  letter-spacing: .02em; text-transform: uppercase; text-decoration: none; text-align: center;
  border-radius: 999px; padding: 1rem 1.6rem;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn-gold {
  color: var(--pet-950);
  background: linear-gradient(180deg, #ffe07a 0%, #f5bd24 55%, #e6a10f 100%);
  box-shadow: 0 14px 34px -14px rgba(245, 189, 36, .75), inset 0 -3px 0 rgba(0, 0, 0, .12), inset 0 1px 0 rgba(255, 255, 255, .6);
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 20px 40px -14px rgba(245, 189, 36, .85), inset 0 -3px 0 rgba(0, 0, 0, .12), inset 0 1px 0 rgba(255, 255, 255, .6); }
.btn-gold:active { transform: translateY(0); }
.btn-gold .ico { transition: transform .2s ease; }
.btn-gold:hover .ico { transform: translateX(3px); }
.btn-lg { font-size: clamp(.92rem, .85rem + .3vw, 1.05rem); padding: 1.15rem 1.9rem; }
.btn-sm { font-size: .78rem; padding: .7rem 1.1rem; }
.btn-block { width: 100%; }

.link-soft {
  display: inline-flex; align-items: center; gap: .45rem;
  font: 700 .95rem var(--font-display); color: var(--on-dark); text-decoration: none;
  padding: .6rem .25rem; border-bottom: 2px solid rgba(111, 227, 218, .35);
  transition: border-color .2s, color .2s;
}
.link-soft:hover { color: var(--tq-300); border-color: var(--tq-300); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
}
.site-header.is-scrolled {
  background: rgba(6, 47, 46, .88);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, .4);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand img { width: 44px; height: 44px; filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .35)); }
.wordmark { display: flex; flex-direction: column; font-family: var(--font-display); line-height: .92; text-transform: uppercase; }
.wm-top { font-weight: 800; font-size: .72rem; letter-spacing: .06em; color: #fff; }
.wm-pix {
  font-weight: 900; font-size: 1.45rem; letter-spacing: .01em;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Seções ---------- */
.section { position: relative; padding-block: clamp(72px, 9vw, 120px); }
.bg-creme { background: var(--creme); }
.bg-white { background: var(--white); }
.bg-areia { background: var(--areia); }
.dark {
  color: var(--on-dark);
  background:
    radial-gradient(ellipse 70% 60% at 75% 10%, rgba(23, 179, 170, .28), transparent 65%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(23, 179, 170, .14), transparent 70%),
    linear-gradient(165deg, var(--pet-800) 0%, var(--pet-900) 50%, var(--pet-950) 100%);
  position: relative; overflow: hidden; isolation: isolate;
}
.dark h2 { color: #fff; }

.section-head { max-width: 760px; margin: 0 auto clamp(40px, 5vw, 64px); }
.section-head.center { text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head > p:last-child { margin-bottom: 0; color: var(--ink-2); font-size: 1.1rem; }
.dark .section-head > p:last-child { color: var(--on-dark-2); }

.split {
  display: grid; gap: clamp(40px, 6vw, 80px); align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1.05fr .95fr; }
  .split.split-media { grid-template-columns: 1fr 1fr; }
}

/* Arcos luminosos e estrelas (elemento da marca) */
.arcs { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; }
.arcs circle { fill: none; stroke: rgba(111, 227, 218, .32); stroke-width: 1.4; }
.arcs circle.faint { stroke: rgba(111, 227, 218, .12); }
.arcs circle.dot { fill: var(--tq-300); stroke: none; filter: drop-shadow(0 0 6px var(--tq-300)) drop-shadow(0 0 14px var(--tq-300)); }
.star { position: absolute; z-index: -1; width: 22px; height: 22px; color: #fff4c9; filter: drop-shadow(0 0 8px rgba(255, 215, 94, .9)); animation: twinkle 3.2s ease-in-out infinite; }
.star.s1 { top: 22%; left: 48%; }
.star.s2 { bottom: 24%; left: 6%; width: 14px; height: 14px; animation-delay: 1.1s; }
.star.s3 { top: 14%; right: 12%; width: 18px; height: 18px; }
@keyframes twinkle { 0%, 100% { opacity: .35; transform: scale(.8); } 50% { opacity: 1; transform: scale(1); } }

/* ==========================================================================
   1. Hero
   ========================================================================== */
.hero { padding: calc(var(--header-h) + clamp(28px, 5vw, 64px)) 0 clamp(110px, 12vw, 160px); }
.hero-grid { display: grid; gap: clamp(40px, 5vw, 64px); align-items: center; }
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.1fr .9fr; } }

.eyebrow {
  display: inline-block;
  font: 700 .78rem/1.3 var(--font-display); letter-spacing: .28em; text-transform: uppercase;
  color: var(--tq-300); margin-bottom: 1.25rem;
  padding-bottom: .9rem; border-bottom: 2px solid rgba(111, 227, 218, .5);
}
.hero h1 {
  font-size: clamp(2rem, 1.1rem + 3.4vw, 3.55rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -.025em; color: #fff;
  margin-bottom: 1.4rem;
}
.hero .lead { font-size: clamp(1.05rem, 1rem + .3vw, 1.2rem); color: var(--on-dark-2); max-width: 56ch; margin-bottom: 1.8rem; }
.hero .lead strong { color: #fff; }

.highlights {
  display: flex; flex-wrap: wrap; gap: .5rem 0;
  font: 700 .9rem var(--font-display); color: #fff;
  margin-bottom: 2rem;
}
.highlights li { display: inline-flex; align-items: center; gap: .5rem; padding-inline: 1rem; }
.highlights li:first-child { padding-left: 0; }
.highlights li + li { border-left: 1px solid rgba(111, 227, 218, .45); }
.highlights .ico { color: var(--gold-300); }

.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.75rem; }

.hero-media { position: relative; max-width: 520px; margin-inline: auto; width: 100%; }
.hero-photo {
  border-radius: 28px; overflow: hidden;
  border: 2px solid rgba(255, 215, 94, .55);
  box-shadow: 0 0 0 8px rgba(111, 227, 218, .08), 0 40px 80px -30px rgba(0, 0, 0, .7), 0 0 60px -10px rgba(23, 179, 170, .45);
}
.hero-photo img { width: 100%; aspect-ratio: 1000 / 1155; object-fit: cover; }
.hero-badge {
  position: absolute; width: clamp(84px, 18vw, 120px); height: auto; top: -26px; left: -22px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .45));
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-10px) rotate(2deg); } }

.brush-tag {
  position: absolute; right: -10px; bottom: 34px;
  font: 700 clamp(1.7rem, 1.3rem + 1.2vw, 2.3rem)/1 var(--font-hand);
  color: var(--pet-950);
  padding: .35em .7em .45em;
  background: linear-gradient(100deg, #ffd75e, #f5bd24 60%, #ffcf4a);
  border-radius: 6px 22px 8px 18px / 18px 8px 22px 6px;
  transform: rotate(-5deg);
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, .5);
}

.curve { position: absolute; left: 0; bottom: -1px; width: 100%; height: clamp(40px, 6vw, 90px); display: block; }

@media (max-width: 959px) {
  .hero-media { max-width: 440px; }
  .hero-badge { left: -8px; }
  .brush-tag { right: -4px; }
}
@media (max-width: 480px) {
  .highlights { font-size: .84rem; gap: .6rem 1.1rem; }
  .highlights li, .highlights li + li { padding: 0; border: 0; }
  .hero-ctas .btn { width: 100%; }
  .hero-ctas { justify-content: center; }
}
@media (max-width: 700px) {
  .hero .arcs { opacity: .45; }
}

/* ==========================================================================
   2. O aprendizado já começou
   ========================================================================== */
.question {
  margin: 1.8rem 0; padding: 1.4rem 1.6rem;
  background: var(--white); border-radius: var(--radius);
  border-left: 5px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.question-label { display: block; font: 700 1.5rem/1 var(--font-hand); color: var(--pet-600); margin-bottom: .35rem; }
.question-text { font: 800 clamp(1.2rem, 1rem + .8vw, 1.5rem)/1.3 var(--font-display); margin: 0; letter-spacing: -.01em; }
.statement { font-weight: 700; color: var(--pet-600); font-size: 1.12rem; margin: 0; }

.moments { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px, 2.4vw, 26px); }
.moment {
  background: var(--white);
  padding: 12px 12px 14px; border-radius: 14px;
  box-shadow: var(--shadow-sm), 0 1px 0 var(--line);
  display: flex; flex-direction: column; gap: 10px;
  transition: scale .3s ease;
}
.moment:nth-child(1) { rotate: -2.5deg; }
.moment:nth-child(2) { rotate: 2deg; translate: 0 18px; }
.moment:nth-child(3) { rotate: 1.5deg; }
.moment:nth-child(4) { rotate: -2deg; translate: 0 18px; }
.moment:hover { scale: 1.03; }
.moment-art {
  display: grid; place-items: center; aspect-ratio: 4 / 3; border-radius: 8px;
  color: var(--gold-300);
  background:
    radial-gradient(circle at 30% 25%, rgba(111, 227, 218, .35), transparent 55%),
    linear-gradient(160deg, var(--pet-700), var(--pet-900));
}
.moment-art .ico { width: clamp(38px, 7vw, 56px); height: clamp(38px, 7vw, 56px); stroke-width: 1.6; filter: drop-shadow(0 0 12px rgba(255, 215, 94, .45)); }
.moment-cap { font: 700 clamp(1.2rem, 1rem + .6vw, 1.5rem)/1.05 var(--font-hand); color: var(--ink); text-align: center; padding-inline: 4px; }

/* ==========================================================================
   3. A transformação
   ========================================================================== */
.benefits { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.benefits li {
  display: flex; align-items: center; gap: .9rem;
  padding: 1.05rem 1.2rem; border-radius: 16px;
  background: var(--creme); border: 1px solid var(--line);
  font-weight: 700; line-height: 1.35;
  transition: border-color .2s, translate .2s;
}
.benefits li:hover { border-color: var(--gold); translate: 0 -2px; }
.benefits .ico {
  width: 32px; height: 32px; padding: 7px; border-radius: 50%;
  color: var(--pet-950); background: var(--gold-grad); stroke-width: 3;
}

.closing {
  position: relative; max-width: 820px; margin: clamp(48px, 6vw, 72px) auto 0; text-align: center;
  padding: clamp(28px, 4vw, 44px) clamp(20px, 4vw, 48px);
  background: var(--tq-50); border-radius: 28px;
}
.closing::before {
  content: "“"; position: absolute; top: -.42em; left: 50%; translate: -50% 0;
  font: 900 6rem/1 var(--font-display); color: var(--gold);
}
.closing p { font-size: clamp(1.05rem, 1rem + .35vw, 1.22rem); color: var(--ink-2); margin-inline: auto; }
.closing p:first-child { font: 800 clamp(1.25rem, 1rem + 1vw, 1.7rem)/1.25 var(--font-display); color: var(--ink); letter-spacing: -.01em; }
.closing p:last-child { margin-bottom: 0; }

/* ==========================================================================
   4. Método HEROI
   ========================================================================== */
.method h2 .gold-text { filter: drop-shadow(0 3px 0 rgba(0, 0, 0, .25)); }
.pillars { display: grid; gap: 16px; counter-reset: none; }
@media (min-width: 1000px) { .pillars { grid-template-columns: repeat(5, 1fr); } }
.pillar {
  position: relative; display: grid; grid-template-columns: 72px 1fr; gap: 1rem; align-items: center;
  padding: 1.25rem 1.4rem; border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .02));
  border: 1px solid rgba(111, 227, 218, .2);
  transition: border-color .3s, translate .3s, box-shadow .3s;
}
.pillar:hover { border-color: rgba(255, 215, 94, .55); translate: 0 -4px; box-shadow: 0 20px 40px -20px rgba(245, 189, 36, .35); }
.pillar-letter {
  font: 900 clamp(3.4rem, 2.4rem + 3vw, 5.2rem)/.9 var(--font-display);
  text-align: center;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 4px 0 rgba(0, 0, 0, .28)) drop-shadow(0 0 22px rgba(245, 189, 36, .28));
}
.pillar h3 { font-size: 1.08rem; font-weight: 800; color: #fff; margin-bottom: .35rem; }
.pillar p { color: var(--on-dark-2); font-size: .98rem; line-height: 1.5; margin: 0; }
@media (min-width: 1000px) {
  .pillar { grid-template-columns: 1fr; align-content: start; text-align: center; padding: 2rem 1.25rem 1.8rem; }
  .pillar-letter { margin-bottom: .6rem; }
}

.impact {
  text-align: center; margin: clamp(44px, 5vw, 64px) 0 2rem;
  font: 800 clamp(1.4rem, 1rem + 1.8vw, 2.2rem)/1.2 var(--font-display); color: #fff; letter-spacing: -.01em;
}
.impact span { color: var(--gold); padding-inline: .15em; }

/* ==========================================================================
   5. Uma história real
   ========================================================================== */
.photo-frame { border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); position: relative; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
#historia .photo-frame { outline: 2px solid rgba(245, 189, 36, .6); outline-offset: 8px; }

.note {
  display: flex; gap: 1rem; margin-top: 1.8rem;
  padding: 1.35rem 1.5rem; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.note-ico { width: 44px; height: 44px; padding: 10px; border-radius: 12px; color: var(--pet-600); background: var(--tq-50); }
.note p { font-size: .98rem; color: var(--ink-2); }
.note p:last-child { margin: 0; }
.note strong { color: var(--ink); }

/* ==========================================================================
   6. Conheça o curso
   ========================================================================== */
.flow {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px 18px;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.flow li:not(.flow-arrow) {
  display: inline-flex; align-items: center; gap: .7rem;
  font: 800 clamp(.95rem, .85rem + .4vw, 1.15rem) var(--font-display); letter-spacing: .08em; text-transform: uppercase;
  padding: .7rem 1.3rem .7rem .7rem; border-radius: 999px;
  background: var(--pet-900); color: #fff;
}
.flow-ico { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--gold-grad); color: var(--pet-950); }
.flow-arrow { color: var(--gold-600); }
.flow-arrow .ico { width: 28px; height: 28px; stroke-width: 2.5; }
@media (max-width: 640px) {
  .flow { flex-direction: column; }
  .flow-arrow .ico { transform: rotate(90deg); }
}

.banner-note {
  max-width: 860px; margin: 0 auto clamp(56px, 7vw, 88px); text-align: center;
  font-size: clamp(1.05rem, 1rem + .35vw, 1.22rem); color: var(--ink-2);
  padding: 1.3rem 1.6rem; border-radius: 18px; border: 2px dashed rgba(245, 189, 36, .7); background: #fffbef;
}
.banner-note strong { color: var(--ink); }

.sub-title {
  font-size: clamp(1.25rem, 1.05rem + .8vw, 1.6rem); font-weight: 800; text-align: center; margin-bottom: 1.6rem;
}

.videos { display: grid; gap: clamp(20px, 3vw, 32px); margin-bottom: clamp(56px, 7vw, 88px); }
@media (min-width: 760px) { .videos { grid-template-columns: 1fr 1fr; } }
.yt {
  position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; padding: 0; border: 0;
  border-radius: 20px; overflow: hidden; cursor: pointer; background: var(--pet-900);
  box-shadow: var(--shadow);
}
.yt img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .3s; }
.yt:hover img { transform: scale(1.04); filter: brightness(.85); }
.yt-play {
  position: absolute; left: clamp(12px, 3%, 20px); bottom: clamp(12px, 4%, 20px); width: clamp(52px, 12%, 68px); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center; color: var(--pet-950); background: var(--gold-grad);
  box-shadow: 0 0 0 10px rgba(255, 215, 94, .25), 0 16px 30px -10px rgba(0, 0, 0, .6);
  transition: transform .25s ease;
}
.yt-play .ico { width: 44%; height: 44%; margin-left: 8%; }
.yt:hover .yt-play { transform: scale(1.1); }
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video figcaption { margin-top: 1rem; font-weight: 700; line-height: 1.4; }
.video-mod {
  display: inline-block; margin-right: .4rem; padding: .15rem .6rem; border-radius: 6px;
  font: 800 .75rem/1.5 var(--font-display); letter-spacing: .08em; text-transform: uppercase;
  background: var(--pet-900); color: var(--gold-300); vertical-align: 1px;
}
.video-by { display: block; font-weight: 600; font-size: .92rem; color: var(--ink-2); margin-top: .2rem; }

.modules {
  display: grid; gap: 12px; margin-bottom: clamp(44px, 5vw, 64px);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
}
.module {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.15rem; border-radius: 16px; background: var(--creme); border: 1px solid var(--line);
}
.module-num {
  flex: none; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px;
  font: 900 1.05rem var(--font-display); color: var(--gold-300); background: var(--pet-900);
}
.module-name { font-weight: 700; line-height: 1.3; font-size: .98rem; }
.module.is-pending { border-style: dashed; background: transparent; }
.module.is-pending .module-name { color: var(--ink-2); font-weight: 600; font-style: italic; opacity: .75; }
@media (max-width: 640px) {
  .module { padding: .7rem .9rem; }
  .module-num { width: 40px; height: 40px; font-size: .95rem; }
}

/* ==========================================================================
   7. Experiência para toda a família
   ========================================================================== */
.together {
  display: grid; gap: 16px; max-width: 980px; margin: 0 auto clamp(36px, 4vw, 52px);
  counter-reset: step;
}
@media (min-width: 800px) { .together { grid-template-columns: repeat(3, 1fr); } }
.together li {
  counter-increment: step; position: relative;
  display: flex; align-items: center; gap: 1rem;
  padding: 1.4rem 1.4rem; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm);
  font-family: var(--font-display); font-size: 1.08rem; line-height: 1.3;
}
.together li::after {
  content: counter(step, decimal-leading-zero); position: absolute; top: .8rem; right: 1rem;
  font: 900 .8rem var(--font-display); color: rgba(15, 46, 45, .25); letter-spacing: .05em;
}
@media (min-width: 800px) {
  .together li { flex-direction: column; text-align: center; padding: 2rem 1.4rem 1.8rem; }
}
.together-ico { flex: none; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--pet-900); color: var(--tq-300); }
.together-ico .ico { width: 26px; height: 26px; }
.together-ico.is-gold { background: var(--gold-grad); color: var(--pet-950); }

.handwrite {
  text-align: center; margin: clamp(28px, 4vw, 44px) auto 0;
  font: 700 clamp(2rem, 1.4rem + 2.6vw, 3.2rem)/1.1 var(--font-hand); color: var(--pet-700);
}
.handwrite::after {
  content: ""; display: block; width: min(320px, 70%); height: 10px; margin: .35rem auto 0;
  background: var(--gold); border-radius: 50%;
  clip-path: polygon(0 60%, 12% 30%, 40% 20%, 70% 25%, 100% 50%, 88% 75%, 55% 70%, 20% 80%);
}

/* ==========================================================================
   8. Para quem é
   ========================================================================== */
.age-badge {
  display: inline-flex; align-items: center; gap: .7rem;
  padding: .7rem 1.1rem; border-radius: 999px; background: var(--white); box-shadow: var(--shadow-sm);
  font-size: 1rem; margin-bottom: 1.2rem;
}
.age-badge .ico { color: var(--gold-600); }
.card {
  background: var(--white); border-radius: 26px; padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow); border-top: 5px solid var(--gold);
}
.card-title { font-size: 1.35rem; font-weight: 800; margin-bottom: 1.2rem; }
.checklist li { display: flex; gap: .85rem; padding: .7rem 0; border-bottom: 1px solid var(--line); line-height: 1.45; }
.checklist li:last-child { border-bottom: 0; padding-bottom: 0; }
.checklist .ico {
  width: 26px; height: 26px; padding: 5px; margin-top: 1px; border-radius: 50%;
  color: var(--white); background: var(--tq); stroke-width: 3.2;
}

/* ==========================================================================
   9. Quem está por trás
   ========================================================================== */
.pull {
  position: relative; margin: .5rem 0 1.6rem; padding: .2rem 0 .2rem 1.4rem;
  border-left: 4px solid var(--gold);
  font: 800 clamp(1.2rem, 1rem + .9vw, 1.55rem)/1.35 var(--font-display); letter-spacing: -.01em; color: var(--pet-700);
}
.creator .photo-frame img { aspect-ratio: 900 / 590; }
.bio {
  position: relative; z-index: 1;
  margin: -48px clamp(12px, 3vw, 28px) 0; padding: 1.5rem 1.6rem;
  border-radius: var(--radius); background: var(--pet-900); color: var(--on-dark-2);
  box-shadow: var(--shadow);
}
.bio-name { display: block; font: 900 1.35rem var(--font-display); color: #fff; }
.bio-role { display: block; font-weight: 700; font-size: .92rem; color: var(--gold-300); margin: .2rem 0 .8rem; }
.bio p { font-size: .96rem; margin: 0; }

/* ==========================================================================
   10. Oferta final
   ========================================================================== */
.offer { text-align: center; }
.offer-title { font-size: clamp(1.9rem, 1.2rem + 2.8vw, 3.1rem); line-height: 1.12; margin-bottom: 2rem; }

.firsts { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 2rem; }
.firsts li {
  padding: .55rem 1.15rem; border-radius: 999px; border: 1px solid rgba(255, 215, 94, .45);
  background: rgba(255, 255, 255, .04); font: 700 .98rem var(--font-display); color: #fff;
}
.offer .center-text { color: var(--on-dark-2); font-size: 1.12rem; }

.trail {
  position: relative; display: grid; gap: 18px; margin: clamp(40px, 5vw, 56px) auto clamp(48px, 6vw, 64px);
  max-width: 760px;
}
.trail::before {
  content: ""; position: absolute; background: repeating-linear-gradient(90deg, rgba(111, 227, 218, .6) 0 8px, transparent 8px 16px);
}
.trail li {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: .7rem;
  font: 700 clamp(1.45rem, 1.2rem + 1vw, 1.9rem)/1.05 var(--font-hand); color: #fff;
}
.trail li::before {
  content: ""; width: 18px; height: 18px; border-radius: 50%;
  background: var(--pet-900); border: 3px solid var(--tq-300); box-shadow: 0 0 12px rgba(111, 227, 218, .6);
}
.trail li.is-goal { color: var(--gold-300); }
.trail li.is-goal::before { width: 26px; height: 26px; border: 0; background: var(--gold-grad); box-shadow: 0 0 0 6px rgba(255, 215, 94, .2), 0 0 24px rgba(255, 215, 94, .8); }
@media (min-width: 700px) {
  .trail { grid-template-columns: repeat(4, 1fr); align-items: start; }
  .trail::before { left: 12.5%; right: 12.5%; top: 11px; height: 2px; }
  .trail li { min-height: 26px; }
  .trail li::before { margin-top: 2px; }
  .trail li.is-goal::before { margin-top: -2px; }
}
@media (max-width: 699px) {
  .trail { justify-items: start; padding-left: 8px; max-width: 320px; }
  .trail::before { left: 20px; top: 12px; bottom: 12px; width: 2px; background: repeating-linear-gradient(180deg, rgba(111, 227, 218, .6) 0 8px, transparent 8px 16px); }
  .trail li { flex-direction: row; text-align: left; }
  .trail li::before { flex: none; }
  .trail li:not(.is-goal)::before { margin-inline: 4px; }
}

.offer-card {
  max-width: 700px; margin: 0 auto; padding: clamp(24px, 4vw, 40px);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .03));
  border: 1px solid rgba(255, 215, 94, .45);
  box-shadow: 0 0 0 8px rgba(255, 215, 94, .05), 0 40px 80px -30px rgba(0, 0, 0, .7);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.lockup { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1.4rem; text-align: left; }
.lockup img { width: clamp(72px, 16vw, 96px); height: auto; filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .45)); }
.lockup-name { font: 900 clamp(1.5rem, 1.1rem + 1.6vw, 2.2rem)/1 var(--font-display); text-transform: uppercase; color: #fff; margin: 0 0 .35rem; letter-spacing: -.01em; }
.lockup-tag { margin: 0; color: var(--on-dark-2); font-weight: 600; line-height: 1.3; }
.highlights.on-card { justify-content: center; margin-bottom: 1.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(111, 227, 218, .2); }
.highlights.on-card li:first-child { padding-left: 1rem; }
@media (max-width: 480px) {
  .highlights.on-card li:first-child { padding-left: 0; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--pet-950); color: var(--on-dark-2); padding: 40px 0 44px; font-size: .92rem; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem 2rem; }
.site-footer .brand img { width: 36px; height: 36px; }
.footer-link { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; transition: color .2s; }
.footer-link:hover { color: var(--gold-300); }
.footer-copy { margin: 0; }
@media (max-width: 700px) { .footer-inner { flex-direction: column; text-align: center; } }

/* ---------- Animação de entrada ---------- */
.js .reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.2, .7, .2, 1), transform .8s cubic-bezier(.2, .7, .2, 1);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-badge, .star { animation: none; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
