/* Inglês em 7 Dias — site novo · sistema */
@font-face { font-family: "Sora"; src: url("../fonts/Sora-var.woff2") format("woff2"); font-weight: 100 800; font-display: swap; }
@font-face { font-family: "Montserrat"; src: url("../fonts/Montserrat-var.woff2") format("woff2"); font-weight: 100 900; font-display: swap; }

:root {
  --ink: #0e0e10;          /* ground escuro */
  --ink-2: #17171a;        /* superfície elevada no escuro */
  --paper: #f3f0ea;        /* ground claro */
  --text: #f5f2ec;         /* texto sobre escuro */
  --text-dim: rgba(245, 242, 236, .64);
  --text-ink: #141416;     /* texto sobre claro */
  --red: #a71b20;          /* marca: só ação primária e o brilho da hero */
  --red-hi: #d8262e;       /* hover / brilho */
  --blue: #2b2b7d;         /* marca: secundária, entra nas dobras claras */
  --line: rgba(245, 242, 236, .12);
  --r-section: 28px;
  --r-card: 20px;
  --gutter: clamp(20px, 4vw, 64px);
  --display: "Sora", system-ui, sans-serif;
  --body: "Montserrat", system-ui, sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--ink); color: var(--text);
  font-family: var(--body); font-size: 17px; line-height: 1.55; font-weight: 500;
  -webkit-font-smoothing: antialiased; overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
b { font-weight: 800; }
:focus-visible { outline: 2px solid var(--text); outline-offset: 3px; border-radius: 4px; }

/* ---------- botões ---------- */
.btn {
  border: 0; cursor: pointer; font: inherit;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 6px 6px 6px 22px; border-radius: 999px;
  font-family: var(--display); font-weight: 600; font-size: 15px; letter-spacing: -.01em; line-height: 1;
  transition: transform .5s var(--ease-out), background-color .25s, box-shadow .5s var(--ease-out);
  white-space: nowrap;
}
.btn-ico {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: var(--text); color: var(--ink); flex: none;
  transition: transform .5s var(--ease-out);
}
.btn-ico svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 10px 30px -12px rgba(167, 27, 32, .7); }
.btn-red:hover { background: var(--red-hi); box-shadow: 0 18px 36px -14px rgba(216, 38, 46, .8); }
.btn-red:hover .btn-ico { transform: rotate(-45deg); }
.btn-lg { font-size: 16px; padding: 8px 8px 8px 26px; }
.btn-lg .btn-ico { width: 40px; height: 40px; }
.btn-lg .btn-ico svg { width: 18px; height: 18px; }

.link-arrow {
  font-family: var(--display); font-weight: 600; font-size: 15px; color: var(--text-dim);
  display: inline-flex; align-items: center; gap: 8px; transition: color .25s;
}
.link-arrow::after { content: ""; width: 7px; height: 7px; border-right: 1.8px solid currentColor; border-bottom: 1.8px solid currentColor; transform: rotate(45deg); transition: transform .4s var(--ease-out); }
.link-arrow:hover { color: var(--text); }
.link-arrow:hover::after { transform: rotate(45deg) translate(2px, 2px); }

.pill {
  display: inline-flex; align-items: center; gap: 10px; margin: 0;
  padding: 8px 16px 8px 12px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, .04);
  font-family: var(--display); font-size: 12.5px; font-weight: 500; letter-spacing: .01em; color: var(--text);
  backdrop-filter: blur(8px);
}
.pill .short { display: none; }
@media (max-width: 767px) { .pill .short { display: inline; } }
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red-hi); box-shadow: 0 0 0 0 rgba(216, 38, 46, .6); animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(216, 38, 46, .55); } 70% { box-shadow: 0 0 0 9px rgba(216, 38, 46, 0); } 100% { box-shadow: 0 0 0 0 rgba(216, 38, 46, 0); } }

/* ---------- header flutuante ---------- */
.top { position: fixed; inset: 0 0 auto 0; z-index: 50; padding: 18px var(--gutter) 0; pointer-events: none; }
.top-inner {
  pointer-events: auto; margin: 0 auto; max-width: 1360px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 8px 8px 8px 18px; border-radius: 999px;
  border: 1px solid transparent; background: transparent;
  transition: background-color .5s, border-color .5s, box-shadow .5s, padding .5s var(--ease-out), transform .8s var(--ease-out), opacity .8s;
}
.top.is-scrolled .top-inner {
  background: rgba(14, 14, 16, .62); border-color: var(--line);
  backdrop-filter: blur(18px) saturate(1.3); -webkit-backdrop-filter: blur(18px) saturate(1.3);
  box-shadow: 0 20px 50px -30px rgba(0, 0, 0, .8);
}
.top.is-hidden .top-inner { transform: translateY(-140%); opacity: 0; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 30px; width: auto; }
.brand-logo-lg { height: 44px; }
.brand-name { font-family: var(--display); font-weight: 600; font-size: 16px; letter-spacing: -.02em; white-space: nowrap; }
.brand-name b { color: var(--red-hi); }
.nav { display: flex; gap: 4px; }
.nav a { padding: 10px 14px; border-radius: 999px; font-family: var(--display); font-size: 14px; font-weight: 500; color: var(--text-dim); transition: color .25s, background-color .25s; }
.nav a:hover { color: var(--text); background: rgba(255, 255, 255, .06); }
.menu-btn { display: none; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255, 255, 255, .06); cursor: pointer; padding: 0; position: relative; }
.menu-btn span { position: absolute; left: 14px; right: 14px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .4s var(--ease-out), top .4s var(--ease-out); }
.menu-btn span:first-child { top: 18px; } .menu-btn span:last-child { top: 26px; }
.menu-btn[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
.menu-btn[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }
.menu { pointer-events: auto; margin: 10px auto 0; max-width: 1360px; padding: 14px; border-radius: 24px; background: rgba(14, 14, 16, .9); border: 1px solid var(--line); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); display: grid; gap: 4px; }
.menu[hidden] { display: none; }
.menu a:not(.btn) { padding: 14px 16px; border-radius: 14px; font-family: var(--display); font-size: 18px; font-weight: 600; }
.menu .btn { justify-content: space-between; margin-top: 8px; }

/* ---------- hero ---------- */
.hero-pin { position: relative; }
.hero {
  position: sticky; top: 0; height: 100svh; height: 100vh; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  padding: 0 var(--gutter); isolation: isolate; perspective: 1400px;
}
.hero-glow {
  position: absolute; left: 50%; top: 22%; width: 60vw; height: 60vw; max-width: 900px; max-height: 900px;
  transform: translate(-50%, -30%); border-radius: 50%; z-index: 0;
  background: radial-gradient(closest-side, rgba(216, 38, 46, .34), rgba(216, 38, 46, .08) 45%, transparent 72%);
  pointer-events: none;
}
.hero-portrait {
  position: absolute; left: 50%; bottom: 0; margin: 0; z-index: 1;
  height: 82vh; height: 82svh; aspect-ratio: 1825 / 2872; transform: translateX(-50%);
  pointer-events: none;
}
.hero-portrait img { width: 100%; height: 100%; object-fit: contain; object-position: bottom; }
.hero-portrait::after { content: ""; position: absolute; inset: auto 0 0; height: 32%; background: linear-gradient(to top, var(--ink) 18%, transparent); }

.hero-left, .hero-right { position: relative; z-index: 3; align-self: start; padding-top: clamp(120px, 20vh, 200px); }
.hero-left { max-width: 520px; }
.hero-title {
  margin: 22px 0 0; font-family: var(--display); font-weight: 700; letter-spacing: -.04em; line-height: 1.02;
  font-size: clamp(34px, 3.6vw, 52px); text-wrap: balance;
}
.hero-title em { font-style: normal; color: var(--red-hi); }
.hero-right { justify-self: end; max-width: 380px; padding-top: clamp(150px, 26vh, 260px); }
.hero-lead { margin: 0; font-size: 16.5px; line-height: 1.6; color: var(--text-dim); }
.hero-lead + .hero-actions { margin-top: 28px; }
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

.hero-word {
  position: absolute; left: 0; right: 0; bottom: .1em; z-index: 2; text-align: center; pointer-events: none;
  font-family: var(--display); font-weight: 800; letter-spacing: -.055em; line-height: .9;
  font-size: clamp(88px, 17.4vw, 262px); color: var(--text);
}
.hero-word .w { display: inline-block; white-space: nowrap; }
.hero-word .w > span { display: inline-block; }
.hero-word .w-dot { color: var(--red-hi); }

.hero-scroll {
  position: absolute; left: var(--gutter); bottom: 34px; z-index: 4;
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center;
  color: var(--text-dim); transition: color .25s, border-color .25s; animation: nudge 2.4s ease-in-out infinite;
}
.hero-scroll svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.hero-scroll:hover { color: var(--text); border-color: var(--text); }
@keyframes nudge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---------- faixa em marquee ---------- */
.ribbon-wrap { position: relative; z-index: 5; overflow: hidden; margin: -30px 0 -30px; padding: 30px 0; }
.ribbon {
  position: relative; margin: 0; padding: 0; overflow: hidden;
  background: var(--red); color: #fff; transform: rotate(-1.6deg) scale(1.04); transform-origin: center;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .9);
}
.ribbon-track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.ribbon-list { display: flex; list-style: none; margin: 0; padding: 0; }
.ribbon-list li {
  padding: 16px 0; font-family: var(--display); font-weight: 600; font-size: 15px; letter-spacing: .02em; text-transform: uppercase; white-space: nowrap;
  display: flex; align-items: center;
}
.ribbon-list li::after { content: ""; width: 10px; height: 10px; margin: 0 28px; background: #fff; clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%); opacity: .9; }
@keyframes marquee { to { transform: translateX(-50%); } }
.ribbon:hover .ribbon-track { animation-play-state: paused; }


/* ---------- dobras claras ---------- */
.paper { background: var(--paper); color: var(--text-ink); --text-dim: rgba(20, 20, 22, .62); --line: rgba(20, 20, 22, .12); color-scheme: light; }
.wrap { max-width: 1360px; margin: 0 auto; padding: 0 var(--gutter); }
.pill-ink { background: rgba(14, 14, 16, .72); color: #fff; border-color: transparent; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }

/* ---------- dobra 2 · identificação ---------- */
.who { position: relative; z-index: 1; overflow: clip; border-radius: var(--r-section) var(--r-section) 0 0; margin-top: -40px; padding: clamp(96px, 12vw, 160px) 0 clamp(80px, 9vw, 130px); }
.declaration {
  margin: 0 0 clamp(64px, 8vw, 120px); max-width: 1120px;
  font-family: var(--display); font-weight: 700; letter-spacing: -.045em; line-height: 1.04;
  font-size: clamp(32px, 4.6vw, 66px); text-wrap: balance;
}
.declaration .wd { display: inline-block; opacity: .18; transition: opacity .35s; }
.declaration .wd.on { opacity: 1; }
.who-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.who-ask { margin: 0 0 22px; font-family: var(--display); font-weight: 600; font-size: 20px; letter-spacing: -.02em; }
.checklist { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.checklist li { border-bottom: 1px solid var(--line); }
.checklist button {
  display: flex; align-items: center; gap: 18px; width: 100%; padding: 18px 8px 18px 0; margin: 0;
  background: none; border: 0; text-align: left; cursor: pointer; color: inherit; font: inherit;
  font-size: 18px; line-height: 1.4; transition: color .25s, padding-left .5s var(--ease-out);
}
.checklist button:hover { padding-left: 6px; }
.checklist .box {
  flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid rgba(20, 20, 22, .35);
  display: grid; place-items: center; color: #fff;
  transition: background-color .3s, border-color .3s, transform .5s var(--ease-out);
}
.checklist .box svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 20; stroke-dashoffset: 20; transition: stroke-dashoffset .35s var(--ease-out) .05s; }
.checklist button[aria-pressed="true"] { color: var(--text-ink); font-weight: 700; }
.checklist button[aria-pressed="true"] .box { background: var(--red); border-color: var(--red); transform: scale(1.08); }
.checklist button[aria-pressed="true"] .box svg { stroke-dashoffset: 0; }
.check-result { margin-top: 22px; min-height: 56px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.check-msg { margin: 0; font-family: var(--display); font-weight: 600; font-size: 17px; color: var(--text-dim); transition: color .3s; }
.check-msg[data-count="1"] { color: var(--text-ink); }
.check-msg.is-hot { color: var(--red); }
.check-cta { animation: rise .7s var(--ease-out) both; }
.check-cta[hidden] { display: none; }
.who-req { margin: 34px 0 0; max-width: 56ch; font-size: 15px; line-height: 1.55; color: var(--text-dim); }

.who-media { position: relative; margin-bottom: 12%; }
.ph { margin: 0; overflow: hidden; border-radius: var(--r-section); position: relative; background: #ddd8d0; }
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; will-change: transform; scale: 1.18; }
.ph-main { aspect-ratio: 4 / 5; }
.ph-main figcaption { position: absolute; left: 18px; top: 18px; }
.ph-small { position: absolute; right: -8%; bottom: -14%; width: 46%; aspect-ratio: 3 / 2; border-radius: var(--r-card); box-shadow: 0 30px 60px -24px rgba(0, 0, 0, .45); outline: 6px solid var(--paper); }

/* ---------- reveal ao rolar ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity 1s var(--ease-out), transform 1.1s var(--ease-out); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
.js [data-reveal] > .checklist li { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease-out), transform .8s var(--ease-out); }
.js [data-reveal].is-in > .checklist li { opacity: 1; transform: none; }
.js [data-reveal].is-in > .checklist li:nth-child(1) { transition-delay: .10s; } .js [data-reveal].is-in > .checklist li:nth-child(2) { transition-delay: .18s; }
.js [data-reveal].is-in > .checklist li:nth-child(3) { transition-delay: .26s; } .js [data-reveal].is-in > .checklist li:nth-child(4) { transition-delay: .34s; }
.js [data-reveal].is-in > .checklist li:nth-child(5) { transition-delay: .42s; } .js [data-reveal].is-in > .checklist li:nth-child(6) { transition-delay: .50s; }
.js .who-media[data-reveal] .ph-small { transition-delay: .25s; }

@media (max-width: 900px) {
  .who-grid { grid-template-columns: 1fr; }
  .who-media { order: -1; margin-bottom: 8px; }
  .ph-small { right: -4%; bottom: -14%; width: 44%; }
  .who-media { margin-bottom: 14%; }
}
@media (max-width: 767px) {
  .who { margin-top: -30px; }
  .checklist button { font-size: 16px; padding: 15px 4px 15px 0; gap: 14px; }
  .check-cta { width: 100%; justify-content: space-between; }
  .ph-main figcaption { left: 12px; top: 12px; }
}


/* ---------- dobra 3 · método ---------- */
.method { position: relative; z-index: 2; background: var(--ink); color: var(--text); border-radius: var(--r-section) var(--r-section) 0 0; margin-top: -28px; padding: clamp(96px, 12vw, 160px) 0 clamp(96px, 11vw, 150px); overflow: clip; }
.method-head { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 80px); align-items: end; margin-bottom: clamp(56px, 8vw, 110px); }
.method-title { margin: 0; font-family: var(--display); font-weight: 700; letter-spacing: -.045em; line-height: 1.02; font-size: clamp(34px, 4.4vw, 64px); text-wrap: balance; }
.method-lead { margin: 0; font-size: 17px; line-height: 1.6; color: var(--text-dim); max-width: 46ch; }

.method-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(32px, 6vw, 100px); align-items: start; }
.method-stick { position: sticky; top: 110px; }
.method-portrait { position: relative; margin: 0; aspect-ratio: 1; }
.method-portrait .disc { position: absolute; inset: 8% 4%; border-radius: 50%; background: var(--red); box-shadow: 0 60px 120px -40px rgba(216, 38, 46, .55); }
.method-portrait img { position: absolute; left: 50%; bottom: 0; transform: translateX(-46%); height: 106%; width: auto; max-width: none; filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .45)); }
.method-portrait figcaption { position: absolute; left: 0; top: 4%; z-index: 2; }
.method-portrait { clip-path: inset(-20% -30% 0 -30% round 0); }

.halves { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.half {
  position: relative; overflow: hidden; container-type: inline-size; border-radius: var(--r-section); background: var(--ink-2); border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 48px); transition: opacity .6s, transform .8s var(--ease-out), border-color .6s;
  opacity: .45; transform: scale(.985);
}
.half.is-on { opacity: 1; transform: none; border-color: rgba(245, 242, 236, .22); }
.half-word { position: absolute; left: clamp(28px, 4vw, 48px); top: -0.14em; font-family: var(--display); font-weight: 800; font-size: 15.4cqw; letter-spacing: -.06em; line-height: 1; color: rgba(245, 242, 236, .05); white-space: nowrap; pointer-events: none; transition: color .6s; }
.half.is-on .half-word { color: rgba(216, 38, 46, .16); }
.half h3 { position: relative; margin: clamp(48px, 6vw, 84px) 0 14px; font-family: var(--display); font-weight: 700; font-size: clamp(24px, 2.4vw, 34px); letter-spacing: -.03em; line-height: 1.08; text-wrap: balance; }
.half p { position: relative; margin: 0; max-width: 58ch; color: var(--text-dim); line-height: 1.62; }
.tools { position: relative; list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.tools li { padding: 9px 14px; border-radius: 999px; border: 1px solid var(--line); font-family: var(--display); font-size: 13px; font-weight: 500; color: var(--text); background: rgba(255, 255, 255, .03); }
.half.is-on .tools li { border-color: rgba(245, 242, 236, .2); }

.method-close { margin: clamp(64px, 8vw, 110px) auto 0; max-width: 980px; text-align: center; font-family: var(--display); font-weight: 700; font-size: clamp(24px, 2.8vw, 40px); letter-spacing: -.035em; line-height: 1.15; text-wrap: balance; }
.method-close em { font-style: normal; color: var(--red-hi); }

@media (max-width: 900px) {
  .method-head { grid-template-columns: 1fr; align-items: start; }
  .method-grid { grid-template-columns: 1fr; }
  .method-stick { position: static; }
  .method-portrait { max-width: 420px; margin: 0 auto 56px; }
  .half { opacity: 1; transform: none; }
}
@media (max-width: 767px) {
  .method { margin-top: -22px; }
  .half { padding: 24px 20px 26px; }
  .half h3 { margin-top: 44px; }
  .half-word { left: 20px; font-size: 16cqw; }
  .method-portrait { max-width: 320px; margin-top: 44px; clip-path: inset(-20% -30% -70px -30%); }
  .method-portrait figcaption { top: auto; bottom: -38px; left: 50%; translate: -50% 0; white-space: nowrap; }
}


/* ---------- dobra 4 · como funciona (trilha horizontal presa à rolagem) ---------- */
.how { position: relative; z-index: 3; overflow: clip; border-radius: var(--r-section) var(--r-section) 0 0; margin-top: -28px; padding: clamp(96px, 12vw, 160px) 0 clamp(80px, 9vw, 130px); }
.how-head { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 80px); align-items: end; margin-bottom: clamp(32px, 4vw, 56px); }
.how-title { margin: 0; font-family: var(--display); font-weight: 700; letter-spacing: -.045em; line-height: 1.02; font-size: clamp(34px, 4.4vw, 64px); text-wrap: balance; }
.how-lead { margin: 0; font-size: 17px; line-height: 1.6; color: var(--text-dim); max-width: 46ch; }

.how-pin { position: relative; }
.how-sticky { position: sticky; top: 0; height: 100vh; height: 100svh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.how-track { list-style: none; margin: 0; padding: 0 var(--gutter); display: flex; gap: 18px; width: max-content; will-change: transform; }
.stage {
  position: relative; flex: none; width: clamp(280px, 24vw, 360px); min-height: clamp(380px, 52vh, 480px);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 26px 26px 28px;
  border-radius: var(--r-section); background: #fff; border: 1px solid var(--line);
  box-shadow: 0 30px 60px -40px rgba(20, 20, 22, .35);
  transition: transform .6s var(--ease-out), box-shadow .6s;
}
.stage-n { position: absolute; left: 22px; top: 14px; font-family: var(--display); font-weight: 800; font-size: clamp(88px, 8vw, 128px); letter-spacing: -.06em; line-height: 1; color: var(--text-ink); }
.stage-online .stage-n { font-size: clamp(56px, 5vw, 80px); top: 26px; }
.stage-when { font-family: var(--display); font-size: 12.5px; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.stage h3 { margin: 0 0 10px; font-family: var(--display); font-weight: 700; font-size: 24px; letter-spacing: -.03em; line-height: 1.1; }
.stage p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--text-dim); }
.stage-online { background: var(--ink); color: var(--text); border-color: transparent; --text-dim: rgba(245, 242, 236, .64); }
.stage-online .stage-n { color: rgba(245, 242, 236, .18); }
.stage-online .stage-when { color: var(--red-hi); }
.stage.is-center { transform: translateY(-10px); box-shadow: 0 40px 70px -40px rgba(20, 20, 22, .5); }

.how-progress { display: flex; align-items: center; gap: 18px; padding: 28px var(--gutter) 0; }
.how-bar { flex: 1; height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; }
.how-fill { display: block; height: 100%; width: 0; background: var(--red); transition: width .15s linear; }
.how-count { font-family: var(--display); font-size: 13px; font-weight: 600; letter-spacing: .01em; min-width: 9ch; text-align: right; }

.how-foot { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: clamp(28px, 5vw, 80px); align-items: start; margin-top: clamp(40px, 6vw, 80px); }
.how-kit h3 { margin: 0 0 14px; font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: -.03em; }
.how-kit ul { list-style: none; margin: 0; padding: 0; }
.how-kit li { padding: 12px 0 12px 30px; border-top: 1px solid var(--line); position: relative; font-size: 16px; }
.how-kit li::before { content: ""; position: absolute; left: 4px; top: 19px; width: 10px; height: 10px; border-radius: 50%; background: var(--red); }
.how-kit li:last-child { border-bottom: 1px solid var(--line); }
.how-note { margin: 0; font-family: var(--display); font-weight: 600; font-size: clamp(20px, 2vw, 26px); letter-spacing: -.03em; line-height: 1.3; text-wrap: balance; }
.how-side { display: grid; gap: clamp(22px, 3vw, 34px); }
.how-note { font-weight: 600; }
/* linha de evolução: fala não é o fim, começa no 1º dia e segue evoluindo */
.evo { list-style: none; margin: 0; padding: 20px 0 0; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; align-items: baseline; row-gap: 12px; column-gap: 0; }
.evo li { position: relative; font-family: var(--display); font-weight: 600; font-size: clamp(12px, 1vw, 13.5px); letter-spacing: .02em; text-transform: uppercase; color: var(--text-dim); white-space: nowrap; }
.evo li + li::before { content: "\2192"; margin: 0 10px; color: var(--red); font-weight: 700; }
.evo .evo-mark { color: var(--red); }

@media (max-width: 767px) { .evo li { font-size: 12px; } .evo li + li::before { margin: 0 8px; } }

@media (max-width: 900px) {
  .how-head, .how-foot { grid-template-columns: 1fr; }
  .how-sticky { position: static; height: auto; display: block; }
  .how-track { width: auto; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; -webkit-overflow-scrolling: touch; scrollbar-width: none; transform: none !important; }
  .how-track::-webkit-scrollbar { display: none; }
  .stage { scroll-snap-align: center; width: min(78vw, 340px); min-height: 400px; }
  .stage.is-center { transform: none; }
  .how-progress { padding-top: 18px; }
}


/* ---------- brilhos no tom da marca ---------- */
.glow { position: absolute; z-index: 0; width: clamp(380px, 46vw, 760px); aspect-ratio: 1; border-radius: 50%; pointer-events: none; will-change: transform; animation: drift 14s ease-in-out infinite alternate; }
.glow-red { background: radial-gradient(closest-side, rgba(216, 38, 46, .36), rgba(216, 38, 46, .14) 38%, rgba(216, 38, 46, .04) 62%, transparent 78%); }
.glow-blue { background: radial-gradient(closest-side, rgba(70, 70, 190, .34), rgba(43, 43, 125, .13) 38%, rgba(43, 43, 125, .04) 62%, transparent 78%); animation-delay: -6s; }
.glow-soft { opacity: .34; }
.glow-tr { right: -12%; top: -8%; }
.glow-bl { left: -14%; bottom: -10%; }
.hero-glow-blue { left: -10%; bottom: -20%; width: 46vw; opacity: .55; z-index: 0; }
@keyframes drift { from { transform: translate3d(0, 0, 0) scale(1); } to { transform: translate3d(4%, 6%, 0) scale(1.08); } }
.method .wrap, .who .wrap, .how > *, .proof .wrap, .proof .reviews { position: relative; z-index: 1; }

/* ---------- inclinação e foco de luz por ponteiro ---------- */
[data-tilt] { transform-style: preserve-3d; transition: transform .6s var(--ease-out), box-shadow .6s; }
[data-tilt].is-tilting { transition: transform .08s linear, box-shadow .6s; }
.spot::before { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity .4s;
  background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .09), transparent 60%); }
.spot:hover::before { opacity: 1; }
.paper .spot::before { background: radial-gradient(360px circle at var(--mx, 50%) var(--my, 50%), rgba(167, 27, 32, .08), transparent 60%); }


/* ---------- dobra 4b · revelação (presa à rolagem) ---------- */
.reveal-pin { position: relative; z-index: 4; }
.reveal { position: sticky; top: 0; height: 100svh; height: 100vh; overflow: hidden; background: var(--paper); color: var(--text-ink); isolation: isolate; }
.reveal .glow { opacity: .5; }
.reveal-copy { position: absolute; left: var(--gutter); right: var(--gutter); top: clamp(84px, 11vh, 120px); z-index: 1; text-align: center; transform: translateY(var(--cy, 0px)); opacity: var(--co, 0); --text-dim: rgba(20, 20, 22, .62); }
.reveal-title { margin: 0 auto 12px; max-width: 14ch; font-family: var(--display); font-weight: 700; letter-spacing: -.045em; line-height: 1.0; font-size: clamp(38px, 5vw, 72px); text-wrap: balance; }
.reveal-title em { font-style: normal; color: var(--red); }
.reveal-sub { margin: 0 auto; font-size: clamp(18px, 1.6vw, 23px); font-weight: 600; color: var(--text-ink); max-width: 40ch; }
.reveal-portrait { position: absolute; left: 50%; bottom: 0; margin: 0; z-index: 2; height: 52vh; height: 52svh; aspect-ratio: 3323 / 2788;
  transform: translateX(-50%) scale(var(--ps, .5)); transform-origin: 50% 100%; opacity: var(--po, 0); will-change: transform, opacity; pointer-events: none; }
.reveal-portrait img { width: 100%; height: 100%; object-fit: contain; object-position: bottom; }

@media (max-width: 900px) {
  .reveal-copy { top: clamp(96px, 17svh, 170px); }
  .reveal-title { font-size: clamp(34px, 9vw, 50px); }
  .reveal-portrait { height: auto; width: 124vw; aspect-ratio: 3323 / 2788; }
}

/* ---------- dobra 5 · prova ---------- */
.proof { position: relative; z-index: 4; background: var(--ink); color: var(--text); border-radius: var(--r-section) var(--r-section) 0 0; margin-top: -28px; padding: clamp(96px, 12vw, 160px) 0 clamp(96px, 11vw, 150px); overflow: clip; }
.proof .glow-red { left: -10%; top: 6%; }
.proof .glow-blue { right: -14%; top: 48%; }
.proof-head { display: grid; grid-template-columns: minmax(0, 1.3fr) auto; gap: clamp(28px, 5vw, 80px); align-items: end; margin-bottom: clamp(36px, 5vw, 64px); }
.proof-title { margin: 0; font-family: var(--display); font-weight: 700; letter-spacing: -.045em; line-height: 1.02; font-size: clamp(34px, 4.4vw, 64px); text-wrap: balance; max-width: 15ch; }
.rating { display: flex; align-items: center; gap: 18px; padding: 16px 22px 16px 18px; border-radius: 24px; border: 1px solid var(--line); background: rgba(255, 255, 255, .04); transition: border-color .3s, transform .5s var(--ease-out); }
.rating:hover { border-color: rgba(245, 242, 236, .3); transform: translateY(-2px); }
.rating-n { font-family: var(--display); font-weight: 800; font-size: 56px; letter-spacing: -.05em; line-height: 1; }
.rating-side { display: grid; gap: 2px; }
.stars { color: #f5b301; letter-spacing: .08em; font-size: 13px; }
.stars-lg { font-size: 18px; }
.rating-l { font-family: var(--display); font-weight: 600; font-size: 14px; }
.rating-link { font-size: 12.5px; color: var(--text-dim); }
.rating-link::after { content: " ↗"; }

/* vídeo institucional: autoplay mudo inline com botão de som */
.vinst { position: relative; border-radius: var(--r-section); overflow: hidden; background: var(--ink-2); aspect-ratio: 16 / 9; }
.vinst-player, .vinst-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vinst.is-idle::after { content: ""; position: absolute; inset: 0; background: var(--ink-2); }
.vsound { position: absolute; left: 16px; bottom: 16px; z-index: 3; display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px 9px 12px; border: 0; border-radius: 999px; background: rgba(14, 14, 16, .62); color: #fff; font-family: var(--display); font-weight: 600; font-size: 13.5px; cursor: pointer; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: background-color .25s, transform .4s var(--ease-out); }
.vsound:hover { background: rgba(14, 14, 16, .82); }
.vsound-ico { width: 20px; height: 20px; display: grid; place-items: center; }
.vsound-ico svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; grid-area: 1/1; }
.vsound .ic-sound { display: none; }
.vsound[aria-pressed="true"] .ic-muted { display: none; }
.vsound[aria-pressed="true"] .ic-sound { display: block; }
@media (prefers-reduced-motion: reduce) { .vsound { transition: none; } }
.facade { position: relative; display: block; width: 100%; padding: 0; margin: 0; border: 0; cursor: pointer; overflow: hidden; border-radius: var(--r-section); background: var(--ink-2); color: var(--text); aspect-ratio: 16 / 9; text-align: left; }
.facade img { width: 100%; height: 100%; object-fit: cover; scale: 1.12; transition: filter .6s, opacity .6s; }
.facade:hover img { filter: brightness(1.08); }
.facade::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(14, 14, 16, .8), transparent 55%); }
.play { position: absolute; left: 50%; top: 50%; translate: -50% -50%; width: 92px; height: 92px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; z-index: 2; box-shadow: 0 20px 50px -14px rgba(216, 38, 46, .8); transition: transform .5s var(--ease-out), background-color .3s; }
.play svg { width: 34px; height: 34px; fill: currentColor; margin-left: 4px; }
.facade:hover .play, .vt:hover .play { transform: scale(1.08); background: var(--red-hi); }
.play-sm { width: 52px; height: 52px; }
.play-sm svg { width: 20px; height: 20px; margin-left: 3px; }
.facade-title { position: absolute; left: 28px; bottom: 26px; z-index: 2; font-family: var(--display); font-weight: 700; font-size: clamp(20px, 2.2vw, 30px); letter-spacing: -.03em; display: grid; gap: 4px; }
.facade-title small { font-family: var(--body); font-weight: 500; font-size: 14px; color: var(--text-dim); letter-spacing: 0; }
.facade.is-playing img, .facade.is-playing .play, .facade.is-playing .facade-title, .facade.is-playing::after { opacity: 0; pointer-events: none; }
.facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 3; }

.reviews { margin: clamp(40px, 5vw, 64px) 0 0; display: grid; gap: 18px; mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); }
.reviews-row { overflow: hidden; }
.reviews-row { display: flex; }
.reviews-track { list-style: none; margin: 0; padding: 0 9px; display: flex; gap: 18px; width: max-content; animation: marquee 70s linear infinite; }
.reviews-row-rev .reviews-track { animation-direction: reverse; animation-duration: 82s; }
.reviews-row:hover .reviews-track { animation-play-state: paused; }
.review { position: relative; flex: none; width: 380px; padding: 22px 24px 24px; border-radius: var(--r-card); background: var(--ink-2); border: 1px solid var(--line); overflow: hidden; }
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-top img { border-radius: 50%; }
.review-top strong { display: block; font-family: var(--display); font-weight: 600; font-size: 15px; letter-spacing: -.01em; }
.review-top .g { margin-left: auto; font-family: var(--display); font-weight: 800; font-size: 18px; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--text-dim); }
.review p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--text-dim); display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }

.vt-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin: clamp(56px, 7vw, 96px) 0 22px; flex-wrap: wrap; }
.vt-title { margin: 0; font-family: var(--display); font-weight: 700; font-size: clamp(24px, 2.6vw, 34px); letter-spacing: -.035em; }
.vt-lead { margin: 0; color: var(--text-dim); font-size: 15px; }
.vt-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.vt { position: relative; display: block; width: 100%; padding: 0; border: 0; cursor: pointer; overflow: hidden; border-radius: var(--r-card); aspect-ratio: 16 / 10; background: var(--ink-2); color: var(--text); text-align: left; }
.vt img { width: 100%; height: 100%; object-fit: cover; scale: 1.1; transition: filter .5s; }
.vt::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(14, 14, 16, .85), transparent 50%); }
.vt-name { position: absolute; left: 18px; bottom: 16px; z-index: 2; font-family: var(--display); font-weight: 600; font-size: 15px; }
.vt:hover img { filter: brightness(1.1); }

.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(8, 8, 10, .86); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); display: grid; place-items: center; padding: 24px; animation: fade .3s ease; }
.lightbox[hidden] { display: none; }
.lightbox-frame { width: min(1100px, 100%); aspect-ratio: 16 / 9; border-radius: var(--r-card); overflow: hidden; background: #000; box-shadow: 0 60px 120px -40px rgba(0, 0, 0, .9); }
.lightbox-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.lightbox-close { position: absolute; right: 24px; top: 24px; width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255, 255, 255, .08); color: var(--text); cursor: pointer; display: grid; place-items: center; }
.lightbox-close svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.lightbox-close:hover { background: rgba(255, 255, 255, .16); }

@media (max-width: 900px) {
  .proof-head { grid-template-columns: 1fr; align-items: start; }
  .vt-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review { width: 300px; }
}
@media (max-width: 767px) {
  .proof { margin-top: -22px; }
  .play { width: 68px; height: 68px; } .play svg { width: 26px; height: 26px; }
  .facade-title { left: 18px; bottom: 16px; }
  .vt-list { grid-template-columns: 1fr; }
  .rating { padding: 12px 16px 12px 14px; } .rating-n { font-size: 44px; }
  .reviews-track { animation-duration: 50s; }
}


/* ---------- dobra 6 · datas, garantia, formulário ---------- */
.book { position: relative; z-index: 5; overflow: clip; border-radius: var(--r-section) var(--r-section) 0 0; margin-top: -28px; padding: clamp(96px, 12vw, 160px) 0 clamp(96px, 11vw, 150px); }
.book .wrap { position: relative; z-index: 1; }
.book-head { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 80px); align-items: end; margin-bottom: clamp(32px, 4vw, 56px); }
.book-title { margin: 0; font-family: var(--display); font-weight: 700; letter-spacing: -.045em; line-height: 1.02; font-size: clamp(34px, 4.4vw, 64px); text-wrap: balance; }
.book-title em { font-style: normal; color: var(--red); }
.book-place { justify-self: end; display: grid; gap: 10px; padding: 18px 22px; border-radius: 20px; border: 1px solid var(--line); background: rgba(255, 255, 255, .5); min-width: 260px; }
.book-where { margin: 0; font-size: 15px; line-height: 1.5; color: var(--text-dim); }
.book-where strong { color: var(--text-ink); font-family: var(--display); font-weight: 600; font-size: 17px; }
.book .link-arrow { color: var(--red); }

.days { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(9, minmax(0, 1fr)); gap: 10px; }
.day { position: relative; display: grid; gap: 2px; padding: 16px 14px 14px; border-radius: var(--r-card); background: #fff; border: 1px solid var(--line); transition: transform .5s var(--ease-out), box-shadow .5s, border-color .3s; }
.day:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -28px rgba(20, 20, 22, .4); border-color: rgba(167, 27, 32, .4); }
.day-w { font-family: var(--display); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--red); }
.day-n { font-family: var(--display); font-size: clamp(30px, 3.2vw, 46px); font-weight: 800; letter-spacing: -.05em; line-height: 1; margin: 6px 0 8px; }
.day-t { font-size: 12.5px; color: var(--text-dim); line-height: 1.3; }
.day-off { background: transparent; border-style: dashed; }
.day-off .day-w, .day-off .day-n { color: rgba(20, 20, 22, .3); }
.day-off .day-t { font-style: italic; }
.days-note { margin: 18px 0 0; font-size: 15px; color: var(--text-dim); max-width: 70ch; }
.days-note strong { color: var(--text-ink); }

.book-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(24px, 4vw, 56px); align-items: stretch; margin-top: clamp(48px, 6vw, 88px); }
.guarantee { position: relative; overflow: hidden; border-radius: var(--r-section); background: var(--ink); color: var(--text); padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: flex-end; min-height: 460px; --text-dim: rgba(245, 242, 236, .64); --line: rgba(245, 242, 236, .12); }
.guarantee::before { content: ""; position: absolute; right: -20%; top: -30%; width: 80%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(closest-side, rgba(216, 38, 46, .4), rgba(216, 38, 46, .12) 45%, transparent 72%); }
.guarantee-word { position: absolute; right: 24px; top: 8px; font-family: var(--display); font-weight: 800; font-size: clamp(96px, 12vw, 170px); letter-spacing: -.07em; line-height: 1; color: rgba(245, 242, 236, .06); }
.guarantee h3 { position: relative; margin: 0 0 12px; font-family: var(--display); font-weight: 700; font-size: clamp(34px, 3.6vw, 52px); letter-spacing: -.045em; line-height: 1; }
.guarantee p { position: relative; margin: 0; color: var(--text-dim); max-width: 46ch; line-height: 1.6; }
.seals { position: relative; list-style: none; margin: 26px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); display: flex; gap: 20px; flex-wrap: wrap; }
.seals li { display: flex; align-items: center; gap: 8px; font-family: var(--display); font-size: 13px; font-weight: 500; }
.seals svg { width: 20px; height: 20px; fill: none; stroke: var(--red-hi); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.form-card { position: relative; border-radius: var(--r-section); background: #fff; border: 1px solid var(--line); padding: clamp(28px, 4vw, 44px); box-shadow: 0 40px 80px -50px rgba(20, 20, 22, .4); scroll-margin-top: 90px; }
.form-title { margin: 0 0 8px; font-family: var(--display); font-weight: 700; font-size: clamp(26px, 2.6vw, 34px); letter-spacing: -.04em; line-height: 1.05; }
.form-lead { margin: 0 0 24px; color: var(--text-dim); font-size: 15px; line-height: 1.55; }
.lead { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label { font-family: var(--display); font-weight: 600; font-size: 13.5px; letter-spacing: -.01em; }
.field input, .field select {
  width: 100%; height: 54px; padding: 0 18px; border-radius: 14px; border: 1.5px solid rgba(20, 20, 22, .16); background: var(--paper);
  font: inherit; font-size: 16px; color: var(--text-ink); outline: none; transition: border-color .25s, box-shadow .25s, background-color .25s; appearance: none; -webkit-appearance: none;
}
.field input::placeholder { color: rgba(20, 20, 22, .4); }
.field input:focus, .field select:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(167, 27, 32, .12); background: #fff; }
.select-wrap { position: relative; }
.select-wrap select { padding-right: 46px; cursor: pointer; }
.select-wrap select:invalid, .select-wrap select option[value=""] { color: rgba(20, 20, 22, .5); }
.select-wrap svg { position: absolute; right: 16px; top: 50%; translate: 0 -50%; width: 18px; height: 18px; fill: none; stroke: var(--text-ink); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; pointer-events: none; }
.field-err { display: none; font-size: 12.5px; color: var(--red); font-weight: 600; }
.field.is-invalid input, .field.is-invalid select { border-color: var(--red); }
.field.is-invalid .field-err { display: block; animation: rise .4s var(--ease-out); }
.notice { grid-column: 1 / -1; border-radius: 16px; border: 1.5px solid var(--red); background: rgba(167, 27, 32, .06); padding: 18px 20px; font-size: 14.5px; line-height: 1.55; animation: rise .5s var(--ease-out); }
.notice[hidden] { display: none; }
.notice strong { color: var(--red); }
.notice p { margin: 8px 0 0; color: var(--text-dim); }
.notice p strong { color: var(--text-ink); }
.form-submit { grid-column: 1 / -1; justify-content: space-between; width: 100%; margin-top: 4px; }
.form-submit[disabled] { opacity: .6; pointer-events: none; }
.form-submit, .form-submit:hover { transform: none; }
.form-note { grid-column: 1 / -1; margin: 0; font-size: 12.5px; color: var(--text-dim); text-align: center; }
.lead-done { text-align: center; padding: 24px 0 8px; animation: rise .6s var(--ease-out); }
.lead-done[hidden] { display: none; }
.done-ico { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 18px; border-radius: 50%; background: var(--red); color: #fff; }
.done-ico svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.lead-done h3 { margin: 0 0 8px; font-family: var(--display); font-weight: 700; font-size: 28px; letter-spacing: -.04em; }
.lead-done p { margin: 0; color: var(--text-dim); }
.lead-done a { color: var(--red); font-weight: 600; text-decoration: underline; }

@media (max-width: 1100px) { .days { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
@media (max-width: 900px) {
  .book-head, .book-grid { grid-template-columns: 1fr; }
  .book-place { justify-self: start; }
  .guarantee { min-height: 0; padding-top: 110px; }
}
@media (max-width: 767px) {
  .book { margin-top: -22px; }
  .days { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .day { padding: 12px 10px 10px; }
  .lead { grid-template-columns: 1fr; }
}


/* ---------- dobra 7 · dúvidas ---------- */
.faq { position: relative; z-index: 6; overflow: clip; background: var(--ink); color: var(--text); border-radius: var(--r-section) var(--r-section) 0 0; margin-top: -28px; padding: clamp(96px, 12vw, 160px) 0 clamp(96px, 11vw, 150px); }
.faq .wrap { position: relative; z-index: 1; }
.faq-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(52px, 7vw, 96px); }
.faq-stick { position: sticky; top: 110px; }
.faq-photo { margin: 40px 0 0; aspect-ratio: 4 / 5; max-width: 420px; background: var(--ink-2); }
.faq-photo figcaption { position: absolute; left: 18px; bottom: 18px; }
.faq-title { margin: 0; font-family: var(--display); font-weight: 700; letter-spacing: -.045em; line-height: 1.02; font-size: clamp(36px, 5vw, 72px); }
.faq-lead { margin: 0 0 26px; color: var(--text-dim); max-width: 34ch; line-height: 1.6; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 0; font-family: var(--display); font-weight: 600; font-size: clamp(17px, 1.5vw, 20px); letter-spacing: -.02em; line-height: 1.3; transition: color .25s, padding-left .5s var(--ease-out); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { padding-left: 6px; }
.faq-item summary i { flex: none; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: transform .5s var(--ease-out), background-color .3s, border-color .3s; }
.faq-item summary svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
.faq-item[open] summary { color: var(--red-hi); }
.faq-item[open] summary i { transform: rotate(45deg); background: var(--red); border-color: var(--red); color: #fff; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease-out); }
.faq-item[open] .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p { margin: 0 0 12px; max-width: 64ch; color: var(--text-dim); line-height: 1.62; font-size: 16px; }
.faq-a p:last-child { margin-bottom: 26px; }

/* ---------- rodapé ---------- */
.footer { position: relative; z-index: 7; background: var(--ink); color: var(--text); border-top: 1px solid var(--line); padding: 0 0 28px; }
.fwrap { width: 100%; }
.fgrid { display: grid; grid-template-columns: 1.6fr .9fr 1.25fr 1.05fr 1.1fr; border-bottom: 1px solid var(--line); }
.fcell { padding: clamp(48px, 5vw, 80px) clamp(24px, 2.6vw, 44px) clamp(44px, 4.5vw, 72px); border-right: 1px solid var(--line); font-size: 15px; line-height: 1.55; min-height: 360px; }
.fcell:first-child { padding-left: var(--gutter); } .fcell:last-child { border-right: 0; padding-right: var(--gutter); }
.fcell ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.fcell a:not(.btn):not(.brand) { color: var(--text-dim); transition: color .25s; overflow-wrap: anywhere; }
.fcell a:not(.btn):not(.brand):hover { color: var(--text); }
.fcell a:not(.btn) span { display: block; font-family: var(--display); color: rgba(245, 242, 236, .4); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 2px; }
.fcell p { margin: 0 0 16px; color: var(--text-dim); }
.flabel { display: block; font-family: var(--display); font-size: 11.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(245, 242, 236, .45); margin-bottom: 20px; }
.fcell .link-arrow { color: var(--text); }
.ftag { margin: 26px 0 12px !important; font-family: var(--display); font-weight: 600; font-size: 24px; line-height: 1.15; letter-spacing: -.03em; color: var(--text) !important; max-width: 16ch; }
.fsmall { font-size: 13.5px; }
.fdate { font-family: var(--display); font-weight: 700; font-size: 26px; letter-spacing: -.03em; color: var(--text) !important; line-height: 1.1; margin-bottom: 20px !important; }
.fcell-cta .btn { white-space: normal; width: 100%; justify-content: space-between; text-align: left; }

.giant { position: relative; padding: clamp(28px, 3vw, 44px) var(--gutter); border-bottom: 1px solid var(--line); cursor: crosshair; user-select: none; overflow: hidden; }
.giant svg { display: block; width: 100%; height: auto; overflow: visible; }
.giant text { font: 900 143px/1 var(--body); letter-spacing: -.01em; paint-order: stroke fill; }
.giant .outline { fill: var(--ink); stroke: rgba(245, 242, 236, .38); stroke-width: 2; stroke-linejoin: round; }
.giant .fill { fill: var(--red-hi); }

.fbottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px 24px; padding: 24px var(--gutter) 0; font-size: 13.5px; color: rgba(245, 242, 236, .5); }
.fbottom p { margin: 0; }
.fbottom ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 22px; align-items: center; }
.fbottom a:hover { color: var(--text); }
.to-top { display: inline-flex; align-items: center; gap: 8px; }
.to-top i { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: background-color .3s, border-color .3s, transform .5s var(--ease-out); }
.to-top i svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.to-top:hover i { background: var(--red); border-color: var(--red); }

.wa-float { position: fixed; right: 22px; bottom: 40px; z-index: 60; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 16px 36px -12px rgba(37, 211, 102, .7); transition: transform .5s var(--ease-out), opacity .5s; opacity: 0; transform: translateY(20px); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: translateY(-3px) scale(1.04); }
.is-past-hero .wa-float { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .fgrid { grid-template-columns: 1fr 1fr; }
  .fcell { min-height: 0; padding: 36px 28px; border-bottom: 1px solid var(--line); }
  .fcell:nth-child(2n) { border-right: 0; padding-right: var(--gutter); }
  .fcell:nth-child(2n+1) { padding-left: var(--gutter); }
  .fcell-brand { grid-column: 1 / -1; border-right: 0; padding-right: var(--gutter); }
  .fcell:last-child { border-bottom: 0; }
}
@media (max-width: 900px) {
}
@media (max-width: 767px) {
  .faq { margin-top: -22px; }
  .fgrid { grid-template-columns: 1fr; }
  .fcell, .fcell:nth-child(2n), .fcell:nth-child(2n+1) { padding: 28px var(--gutter); border-right: 0; }
  .fbottom { flex-direction: column; align-items: flex-start; }
  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

/* ---------- próximas dobras (vazio por enquanto) ---------- */

/* ---------- entrada ---------- */
.js .hero-word .w > span { opacity: 0; transform: translateY(.35em) rotate(4deg); filter: blur(6px); }
.js .hero-portrait { opacity: 0; transform: translate(-50%, 40px); filter: blur(10px); }
.js .hero-left > *, .js .hero-right > * { opacity: 0; transform: translateY(22px); }
.js .hero-glow { opacity: 0; }
.js .hero-scroll { opacity: 0; }
.js:not(.is-scrolling) .top-inner { opacity: 0; transform: translateY(-16px); }
.js.is-ready .hero-word .w > span { animation: letter 1.1s var(--ease-out) forwards; animation-delay: calc(.35s + var(--i) * 45ms); }
.js.is-ready .hero-portrait { animation: portrait 1.4s var(--ease-out) .15s forwards; }
.js.is-ready .hero-left > * { animation: rise .9s var(--ease-out) forwards; }
.js.is-ready .hero-left > :nth-child(1) { animation-delay: .5s; } .js.is-ready .hero-left > :nth-child(2) { animation-delay: .62s; }
.js.is-ready .hero-right > * { animation: rise .9s var(--ease-out) forwards; }
.js.is-ready .hero-right > :nth-child(1) { animation-delay: .78s; } .js.is-ready .hero-right > :nth-child(2) { animation-delay: .9s; }
.js.is-ready .hero-glow { animation: fade 1.8s ease .3s forwards; }
.js.is-ready .hero-scroll { animation: fade 1s ease 1.3s forwards, nudge 2.4s ease-in-out 1.3s infinite; }
.js.is-ready:not(.is-scrolling) .top-inner { opacity: 1; transform: none; transition-delay: 1s; }
@keyframes letter { to { opacity: 1; transform: none; filter: blur(0); } }
@keyframes portrait { to { opacity: 1; transform: translate(-50%, 0); filter: blur(0); } }
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes fade { to { opacity: 1; } }

/* ---------- parallax: as camadas recebem translate por JS em --py / --px ---------- */
.js [data-px] { will-change: transform; }
.js .hero-portrait { --py: 0px; --px: 0px; }
.js.is-ready.is-scrolling .hero-portrait { animation: none; opacity: 1; filter: none; transform: translate(calc(-50% + var(--px) + var(--hx, 0px)), var(--py)) scale(var(--ps, 1)) rotateY(var(--ry, 0deg)); }
.js.is-ready.is-scrolling .hero-word { transform: translate(var(--px, 0px), var(--py, 0px)); opacity: var(--wo, 1); }
.js.is-ready.is-scrolling .hero-left, .js.is-ready.is-scrolling .hero-right { transform: translateY(var(--py, 0px)); opacity: var(--po, 1); }
.js.is-ready.is-scrolling .hero-left > *, .js.is-ready.is-scrolling .hero-right > * { animation: none; opacity: 1; transform: none; }
.js.is-ready.is-scrolling .hero-glow { animation: none; opacity: 1; transform: translate(calc(-50% + var(--px, 0px) + var(--hx, 0px)), calc(-30% + var(--py, 0px))); }

/* cena 2 da hero: destaque da próxima turma, entra pela direita conforme a rolagem */
.hero-scene2 { position: absolute; left: 52%; top: 50%; z-index: 3; width: min(480px, 42vw); transform: translateY(-50%); opacity: 0; pointer-events: none; }
.hero-scene2 > * { opacity: 0; transform: translateX(var(--sx, 60px)); transition: none; will-change: transform, opacity; }
.hero-scene2.is-live { pointer-events: auto; }
.hero-scene2 .pill { margin-bottom: 18px; }
.scene2-title { margin: 0 0 16px; font-family: var(--display); font-weight: 700; letter-spacing: -.045em; line-height: .98; font-size: clamp(40px, 4.6vw, 68px); text-wrap: balance; }
.scene2-title em { font-style: normal; color: var(--red-hi); }
.scene2-lead { margin: 0 0 18px; color: var(--text-dim); line-height: 1.6; font-size: 16.5px; max-width: 40ch; }
.scene2-facts { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.scene2-facts li { padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255, 255, 255, .04); font-family: var(--display); font-size: 12.5px; font-weight: 500; }

/* ---------- celular ---------- */
@media (max-width: 1023px) {
  .nav { display: none; }
}
@media (max-width: 767px) {
  body { font-size: 16px; }
  .top { padding-top: 12px; }
  .top-inner { padding: 6px 6px 6px 12px; }
  .brand-logo { height: 24px; }
  .brand-logo-lg { height: 36px; }
  .top-cta { display: none; }
  .menu-btn { display: block; }
  .hero { grid-template-columns: 1fr; height: auto; min-height: 0; padding-bottom: 0; position: relative; perspective: none; }
  .hero-scene2 { position: relative; left: auto; top: auto; transform: none; width: auto; opacity: 1; pointer-events: auto; order: 5; margin: 8px 0 40px; padding-top: 32px; border-top: 1px solid var(--line); }
  .hero-scene2 > * { opacity: 1; transform: none; }
  .scene2-title { font-size: clamp(36px, 10vw, 48px); }
  /* cena presa no celular: a hero gruda pela base e a turma entra por baixo */
  .js.has-mobile-pin .hero { position: sticky; top: calc(100svh - var(--hero-h, 100svh)); overflow: hidden; }
  .js.has-mobile-pin .hero-scene2 { position: absolute; left: var(--gutter); right: var(--gutter); top: auto; bottom: 8svh; z-index: 6; will-change: transform, opacity; order: 0; margin: 0; padding-top: 0; border-top: 0; opacity: 0; pointer-events: none; }
  .js.has-mobile-pin .hero-scene2.is-live { pointer-events: auto; }
  .js.has-mobile-pin .hero-scene2 > * { opacity: 0; transform: translateY(40px); }
  .js.has-mobile-pin .scene2-title { font-size: clamp(34px, 9.4vw, 44px); margin-bottom: 12px; }
  .js.has-mobile-pin .scene2-lead { font-size: 15px; margin-bottom: 14px; }
  .js.has-mobile-pin .scene2-facts { margin-bottom: 18px; }
  .hero-left { padding-top: 104px; max-width: none; order: 1; }
  .hero-portrait { order: 2; } .hero-word { order: 3; } .hero-right { order: 4; } .hero-glow { order: 0; }
  .pill .long { display: none; }
  .pill { font-size: 11.5px; padding: 7px 12px 7px 10px; }
  .hero-title { font-size: clamp(34px, 9.6vw, 44px); margin-top: 18px; }
  .hero-portrait { position: relative; left: auto; bottom: auto; transform: none; height: auto; width: 74%; margin: 8px auto 0; z-index: 1; }
  .hero-portrait::after { height: 40%; }
  .hero-word { position: relative; bottom: auto; margin-top: -9vw; font-size: clamp(72px, 21vw, 110px); z-index: 2; }
  .hero-right { padding-top: 22px; padding-bottom: 36px; max-width: none; justify-self: stretch; }
  .hero-actions { gap: 16px; }
  .btn-lg { width: 100%; justify-content: space-between; }
  .hero-scroll { display: none; }
  .hero-glow { width: 120vw; height: 120vw; top: 40%; }
  .ribbon-list li { font-size: 13px; padding: 13px 0; }
  .js .hero-portrait { transform: translateY(30px); }
  .js.is-ready .hero-portrait { animation-name: portrait-m; }
  .js.is-ready.is-scrolling .hero-portrait { transform: translate(var(--px), var(--py)); opacity: var(--pfo, 1); }
  .js.is-ready.is-scrolling .hero-word { opacity: var(--wo, 1); }
  @keyframes portrait-m { to { opacity: 1; transform: none; filter: blur(0); } }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal], .js [data-reveal] > .checklist li { opacity: 1; transform: none; transition: none; }
  .declaration .wd { opacity: 1; }
  .js .hero-word .w > span, .js .hero-portrait, .js .hero-left > *, .js .hero-right > *, .js .hero-glow, .js .hero-scroll, .js .top-inner { opacity: 1; transform: none; filter: none; animation: none !important; }
  .js .hero-portrait { transform: translateX(-50%); }
  .ribbon-track, .reviews-track, .glow { animation: none; }
  .pill .short { display: none; }
@media (max-width: 767px) { .pill .short { display: inline; } }
.pill .dot { animation: none; }
}

/* ---------- produção (home no tema): vence o CSS do Astra/Elementor que carrega depois ---------- */
body.i7d-landing { background: var(--ink); }
body.i7d-landing a:not([class]) { color: inherit; }
body.i7d-landing a:not([class]):hover { color: var(--text); }

/* ---------- formulário Elementor embutido: casa com o card do design (campos claros, botão da marca, cantos 14px) ---------- */
.form-card .elementor-form .elementor-field-group { margin-bottom: 0; }
.form-card .elementor-field-textual,
.form-card select.elementor-field-textual {
  height: 54px; padding: 0 18px; border-radius: 14px !important;
  border: 1.5px solid rgba(20, 20, 22, .16) !important; background: var(--paper) !important;
  color: var(--text-ink) !important; font: 500 16px/1.2 var(--body) !important; box-shadow: none !important;
}
.form-card select.elementor-field-textual { -webkit-appearance: none; appearance: none; cursor: pointer; padding-right: 46px; }
.form-card .elementor-field-textual::placeholder { color: rgba(20, 20, 22, .4) !important; }
.form-card .elementor-field-textual:focus { border-color: var(--red) !important; box-shadow: 0 0 0 4px rgba(167, 27, 32, .12) !important; background: #fff !important; }
.form-card .elementor-select-wrapper .select-caret-down-wrapper svg,
.form-card .elementor-select-wrapper .e-font-icon-svg { fill: var(--text-ink); }
.form-card .elementor-field-label { font-family: var(--display); font-weight: 600; font-size: 13.5px; letter-spacing: -.01em; color: var(--text-ink); margin-bottom: 6px; }
.form-card .elementor-button {
  background: var(--red) !important; color: #fff !important; border-radius: 14px !important; width: 100%;
  font-family: var(--display) !important; font-weight: 600 !important; font-size: 16px !important; min-height: 56px;
  box-shadow: 0 10px 30px -12px rgba(167, 27, 32, .7); transition: background-color .25s;
}
.form-card .elementor-button:hover { background: var(--red-hi) !important; }
.form-card .elementor-message { font-family: var(--body); }
/* aviso do nível Zero */
.form-card .i7d-aviso { border: 1.5px solid var(--red); background: rgba(167, 27, 32, .06); border-radius: 16px; padding: 18px 20px; font-size: 14.5px; line-height: 1.55; color: var(--text-ink); }
.form-card .i7d-aviso > strong { display: block; color: var(--red); font-size: 15.5px; }
.form-card .i7d-aviso p { margin: 8px 0 0; color: var(--text-dim); }
.form-card .i7d-aviso p strong { color: var(--text-ink); }

/* seta do select do formulário: escura */
.form-card .elementor-select-wrapper .select-caret-down-wrapper,
.form-card .elementor-select-wrapper .select-caret-down-wrapper i,
.form-card .elementor-select-wrapper .select-caret-down-wrapper svg { color: var(--text-ink) !important; fill: var(--text-ink) !important; opacity: 1 !important; }
/* botão flutuante global do WhatsApp (snippet): subir para não cobrir "Voltar ao topo" */
body.i7d-landing a[href*="wa.me"][style*="position"],
body.i7d-landing a[href*="api.whatsapp"][style*="position"] { bottom: 42px !important; }
