/* ==========================================================================
   IA MAKER 6 — mundoboss.com.br (recriação estática)
   Breakpoints do Framer: desktop ≥1200 | tablet 810–1199.98 | phone ≤809.98
   ========================================================================== */

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  background: #000;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; }
ul { list-style: none; margin: 0; padding: 0; }
p, h1, h2, h3, h4, h5 { margin: 0; }
a { color: inherit; text-decoration: none; }
b, strong { font-weight: 700; }

:root {
  --white: #fff;
  --grey-bc: #bcbcbc;
  --grey-8b: #8b8b8b;
  --grey-57: #575757;
  --grey-3a: #3a3a3a;
  --grey-1c: #1c1c1c;
  --pink-text: #f7a3b6;
  --pink-border: #ff7a99;
  --red: #e3063e;
  --red-glow: rgba(255, 0, 59, .55);
  --red-soft: rgba(246, 42, 90, .1);
}

/* ---------- Tipografia (presets do Framer) ---------- */
.h1 { font-family: "Funnel Display", sans-serif; font-weight: 500; font-size: 64px; line-height: 1.1; letter-spacing: -.2px; color: var(--white); }
.h2 { font-family: "Funnel Display", sans-serif; font-weight: 500; font-size: 56px; line-height: 1.1; letter-spacing: -.02em; color: var(--white); }
.h3 { font-family: "Funnel Display", sans-serif; font-weight: 500; font-size: 40px; line-height: 1.1; letter-spacing: -.02em; color: var(--white); }
.h3-sm { font-family: "Funnel Display", sans-serif; font-weight: 500; font-size: 32px; line-height: 1.1; letter-spacing: -.02em; color: var(--white); }
.h4 { font-family: "Funnel Display", sans-serif; font-weight: 500; font-size: 24px; line-height: 1.2; letter-spacing: -.02em; color: var(--white); }
.h5 { font-family: "Funnel Display", sans-serif; font-weight: 500; font-size: 20px; line-height: 1.2; letter-spacing: -.02em; color: var(--white); }
.eyebrow { font-family: "DM Sans", sans-serif; font-weight: 600; font-size: 16px; line-height: 1.5; text-transform: uppercase; color: var(--pink-text); }
.body-lg { font-family: "DM Sans", sans-serif; font-weight: 400; font-size: 20px; line-height: 1.5; color: var(--white); }
.body-md { font-family: "DM Sans", sans-serif; font-weight: 400; font-size: 18px; line-height: 1.5; color: var(--grey-8b); }
.body-16 { font-family: "DM Sans", sans-serif; font-weight: 400; font-size: 16px; line-height: 1.5; color: var(--grey-bc); }
.body-sm { font-family: "DM Sans", sans-serif; font-weight: 400; font-size: 14px; line-height: 1.45; color: var(--grey-bc); }

@media (min-width: 810px) and (max-width: 1199.98px) {
  .h1 { font-size: 56px; }
  .h2 { font-size: 48px; }
  .h3 { font-size: 40px; }
  .h3-sm { font-size: 40px; }
  .h4 { font-size: 32px; }
  .body-lg { font-size: 18px; }
  .body-md { font-size: 16px; }
}
@media (max-width: 809.98px) {
  .h1 { font-size: 48px; }
  .h2 { font-size: 40px; }
  .h3 { font-size: 24px; }
  .h3-sm { font-size: 24px; }
  .h4 { font-size: 20px; }
  .h5 { font-size: 16px; }
  .eyebrow { font-size: 14px; }
  .body-lg { font-size: 16px; }
  .body-md { font-size: 14px; }
}

/* ---------- Animações de entrada ---------- */
[data-anim] {
  opacity: 0;
  transition: opacity 1s cubic-bezier(.22, 1, .36, 1), transform 1s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--anim-delay, 0s);
  will-change: opacity, transform;
}
[data-anim="fade-up"]   { transform: translateY(40px); }
[data-anim="fade-down"] { transform: translateY(-40px); }
[data-anim="fade-left"] { transform: translateX(72px); }
[data-anim="fade-right"]{ transform: translateX(-72px); }
[data-anim="fade"]      { transform: none; }
[data-anim].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-anim] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- Nav ---------- */
.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 80px;
  height: 102px;
  background: rgba(0, 0, 0, .6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--grey-1c);
}
.topnav__inner {
  width: 100%;
  max-width: 1440px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topnav__logo { width: 139px; height: 40px; flex: none; }
.topnav__logo svg { width: 100%; height: 100%; }
.topnav__chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(31, 0, 8, .72);
}
.topnav__chip p {
  font: 500 16px/1.2 "DM Sans", sans-serif;
  color: var(--white);
  text-transform: uppercase;
  white-space: pre;
}
@media (max-width: 809.98px) {
  .topnav { padding: 24px; height: auto; }
  .topnav__logo { width: 111px; height: auto; aspect-ratio: 3.475; }
  .topnav__chip p { font-size: 14px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 900px;
  padding: 180px 80px 72px;
  background: #000;
  overflow: hidden;
}
.hero__video { position: absolute; inset: 0; z-index: 0; }
.hero__video video { width: 100%; height: 100%; object-fit: cover; }
.hero__grad { position: absolute; z-index: 1; pointer-events: none; }
.hero__grad--left {
  top: 0; bottom: 0; left: 0;
  width: 1009px;
  background: linear-gradient(90deg, #000 10%, rgba(0, 0, 0, 0) 100%);
}
.hero__grad--bottom {
  left: 0; right: 0; bottom: 0;
  height: 349px;
  background: linear-gradient(rgba(0, 0, 0, 0) 70%, #000 102%);
}
.hero__frame {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}
.hero__stack { display: flex; flex-direction: column; gap: 48px; width: 100%; }
.hero__copy { display: flex; flex-direction: column; gap: 32px; width: 100%; max-width: 668px; }
.hero__copyhead { display: flex; flex-direction: column; gap: 20px; width: 100%; }
.eyebrow-row { display: flex; align-items: center; gap: 8px; }
.eyebrow-row__icon { width: 24px; height: 24px; flex: none; }
.eyebrow-row__icon svg { width: 100%; height: 100%; }
.hero__desc { max-width: 668px; }

.hero__ctarow { display: flex; align-items: center; gap: 10px; }

/* Botão principal */
.btn-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 6px 6px 6px 24px;
  border-radius: 111px;
  background: var(--white);
  box-shadow: 0 0 28px 0 var(--red-glow);
  cursor: pointer;
  width: min-content;
  white-space: nowrap;
  position: relative;
}
.btn-cta__label {
  font: 700 16px/1.2 "DM Sans", sans-serif;
  color: var(--grey-1c);
  white-space: pre;
}
.btn-cta__arrow {
  position: relative;
  width: 55px;
  height: 55px;
  flex: none;
  border-radius: 100px;
  border: 1px solid var(--pink-border);
  box-shadow: inset 0 0 12px 0 #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-cta__arrow img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border-radius: inherit;
  object-fit: fill;
}
.btn-cta__arrowicon { position: relative; width: 24px; height: 24px; }

/* Widget de lote */
.lot-widget {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 14px 24px;
  border-radius: 64px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: var(--red-soft);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  width: min-content;
  white-space: nowrap;
}
.lot-widget__text { font: 400 14px/1.5 "DM Sans", sans-serif; color: var(--white); white-space: pre; }
.lot-widget__text b { font-weight: 700; }
.lot-widget__track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  overflow: hidden;
}
.lot-widget__bar {
  width: 10%;
  min-width: 20px;
  height: 100%;
  border-radius: 999px;
  background: var(--red);
}

/* Ticker de logos */
.hero__ticker {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 24px 0;
}
.ticker {
  width: 1200px;
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.ticker__list {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: ticker-scroll var(--ticker-dur, 36s) linear infinite;
}
.tk img { width: 100%; height: 100%; object-fit: contain; }
.tk { flex: none; }
.tk--1fznqsy { width: 131px; height: 17px; }
.tk--hungria { width: 49px; aspect-ratio: 1.48905; opacity: .2; }
.tk--1f01sr6 { width: 78px; height: 20px; }
.tk--10lz4os { width: 119px; height: 32px; }
.tk--3k3vxh  { width: 110px; height: 28px; }
.tk--zi9ge9  { width: 62px; height: 32px; }
.tk--1vxa38  { width: 104px; aspect-ratio: 3.23894; opacity: .4; }
.tk--120s8q3 { width: 53px; height: 28px; }
.tk--619au0  { width: 101px; height: 35px; }
.tk--17q2qcr { width: 70px; height: 40px; opacity: .4; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--ticker-half, 50%))); }
}

@media (min-width: 810px) and (max-width: 1199.98px) {
  .hero { padding: 180px 60px 72px; }
}
@media (max-width: 809.98px) {
  .hero { padding: 120px 24px 72px; justify-content: center; }
  .hero__grad--left { width: auto; right: 0; }
  .hero__ctarow { flex-direction: column; align-items: stretch; gap: 20px; width: 100%; }
  .btn-cta { width: 100%; justify-content: space-between; }
  .lot-widget { width: 100%; }
  .hero__ticker { padding: 16px 0; }
  .ticker__list { gap: 52px; }
  .tk--1fznqsy { width: 116px; height: 15px; }
  .tk--hungria { width: 28px; }
  .tk--1f01sr6 { width: 67px; height: 17px; }
  .tk--10lz4os { width: 78px; height: 21px; }
  .tk--zi9ge9  { width: 45px; height: 23px; }
  .tk--1vxa38  { width: 74px; }
  .tk--120s8q3 { width: 46px; height: 24px; }
  .tk--619au0  { width: 81px; height: 28px; }
}

/* ---------- Seção ANTES/AGORA ---------- */
.sec-afterbefore {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 58px;
  width: 100%;
  padding: 122px 80px 104px;
  background: #000;
}
.ab__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  max-width: 1440px;
}
.ab__headline { display: flex; flex-direction: column; gap: 16px; flex: 1; min-width: 0; }
.ab__title { max-width: 652px; }
.ab__desc { flex: 1; max-width: 480px; }
.ab__eyebrow-mobile { display: none; }
.ab__component { width: 100%; max-width: 1440px; }
@media (min-width: 810px) and (max-width: 1199.98px) {
  .sec-afterbefore { padding: 94px 60px; }
  .ab__header { flex-direction: column; align-items: flex-start; gap: 40px; }
  .ab__desc { max-width: none; }
}
@media (max-width: 809.98px) {
  .sec-afterbefore { gap: 40px; padding: 90px 24px 80px; }
  .ab__header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .ab__desc { max-width: none; flex: none; width: 100%; }
  .ab__eyebrow-desktop { display: none; }
  .ab__eyebrow-mobile { display: block; }
}

/* Componente de comparação (portado do original) */
.iam-root, .iam-root * { box-sizing: border-box; }
.iam-root {
  container-type: inline-size;
  color: var(--iam-text);
  font-family: "DM Sans", Inter, system-ui, sans-serif;
  display: block;
  width: 100%;
}
.iam-comparison {
  position: relative;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--iam-card-stroke);
  border-radius: var(--iam-radius);
  background: #0a0a0c;
  cursor: ew-resize;
  isolation: isolate;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}
.iam-image, .iam-image-layer { position: absolute; inset: 0; width: 100%; height: 100%; }
.iam-image { display: block; object-fit: cover; pointer-events: none; -webkit-user-drag: none; max-width: none; }
.iam-image-layer { pointer-events: none; }
.iam-comparison:hover .iam-image-layer, .iam-comparison.iam-dragging .iam-image-layer { will-change: clip-path; }
.iam-divider {
  position: absolute;
  z-index: 5;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--iam-state);
  box-shadow: 0 0 12px rgba(0, 0, 0, .22);
  pointer-events: none;
  transform: translateX(-1px);
}
.iam-handle {
  position: absolute;
  z-index: 6;
  top: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--iam-state);
  box-shadow: 0 0 0 7px rgba(255, 255, 255, .08), 0 8px 22px rgba(0, 0, 0, .28);
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.iam-handle svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.iam-comparison:focus-visible { outline: 2px solid var(--iam-state); outline-offset: 3px; }
.iam-state-label {
  position: absolute;
  z-index: 4;
  bottom: 12px;
  padding: 8px 12px;
  border: 1px solid currentColor;
  border-radius: 8px;
  font: 700 14px/1 "DM Sans", Inter, sans-serif;
  letter-spacing: .01em;
  pointer-events: none;
}
.iam-before-label { left: 12px; color: var(--iam-before); background: #18070c; }
.iam-now-label { right: 12px; color: var(--iam-after); background: #07150e; }
.iam-title {
  margin: 22px 0 14px;
  color: var(--iam-text);
  font: 700 28px/1.25 "DM Sans", Inter, sans-serif;
  letter-spacing: -.025em;
}
.iam-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.iam-metric {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 16px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid var(--iam-card-stroke);
  border-radius: calc(var(--iam-radius) - 2px);
  background: var(--iam-card-fill);
}
.iam-metric::before, .iam-metric::after { position: absolute; z-index: 0; inset: 0; content: ""; pointer-events: none; }
.iam-metric::before { background: var(--iam-state); opacity: .035; }
.iam-metric::after { border: 1px solid var(--iam-state); border-radius: inherit; opacity: .18; }
.iam-metric-emphasis::before { opacity: .07; }
.iam-metric-emphasis::after { opacity: .36; }
.iam-icon, .iam-copy { position: relative; z-index: 1; }
.iam-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  padding: 12px;
  overflow: hidden;
  border: 1px solid var(--iam-icon-stroke);
  border-radius: 10px;
  color: var(--iam-state);
  background: var(--iam-icon-fill);
  position: relative;
}
.iam-icon::before { position: absolute; inset: 0; background: var(--iam-state); content: ""; opacity: .06; pointer-events: none; }
.iam-icon svg { position: relative; z-index: 1; width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.iam-copy { display: flex; min-width: 0; flex-direction: column; gap: 6px; }
.iam-label {
  overflow: hidden;
  color: var(--iam-muted);
  font: 500 14px/1.15 "DM Sans", Inter, sans-serif;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.iam-value {
  overflow: hidden;
  color: var(--iam-text);
  font: 600 16px/1.2 "Funnel Display", "DM Sans", Inter, sans-serif;
  font-variant-numeric: tabular-nums;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.iam-metric-emphasis .iam-value { color: var(--iam-state); }
@container (max-width: 720px) {
  .iam-title { margin-top: 18px; font-size: 22px; }
  .iam-metrics { grid-template-columns: 1fr; gap: 10px; }
  .iam-state-label { padding: 7px 9px; font-size: 12px; }
  .iam-handle { width: 40px; height: 40px; }
}
@container (max-width: 420px) {
  .iam-comparison { min-height: 240px; }
  .iam-metric { padding: 14px; }
  .iam-icon { padding: 10px; }
}

/* ---------- Pare de brigar com a IA ---------- */
.sec-brigar-wrap { background: #000; height: 220vh; position: relative; }
.sec-brigar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
  width: 100%;
  height: 110vh;
  max-height: 110vh;
  padding: 104px 80px;
  overflow: hidden;
}
.brigar__title {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1040px;
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  font-size: 140px;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: pre-wrap;
}
.brigar__img { position: absolute; overflow: visible; }
.brigar__img img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.brigar__img--left {
  z-index: 0;
  width: 177px;
  height: 257px;
  top: calc(26.625% - 128.5px);
  left: calc(16.75% - 88.5px);
}
.brigar__img--right {
  z-index: 1;
  width: 159px;
  height: 238px;
  top: calc(74.75% - 119px);
  left: calc(84% - 79.5px);
}
.brigar__cta { position: relative; z-index: 2; }
[data-letters] .ltr {
  display: inline-block;
  opacity: 0.001;
  filter: blur(10px);
  transform: translateY(10px);
  transition: opacity .6s ease, filter .6s ease, transform .6s ease;
  transition-delay: var(--ltr-delay, 0s);
  will-change: opacity, filter, transform;
}
[data-letters].is-in .ltr { opacity: 1; filter: blur(0); transform: none; }
[data-letters] .wrd { display: inline-block; white-space: pre; }
@media (min-width: 810px) and (max-width: 1199.98px) {
  .brigar__title { font-size: 94px; }
}
@media (max-width: 809.98px) {
  .sec-brigar { padding: 104px 24px; }
  .brigar__title { font-size: 48px; }
  .brigar__img--left { width: 107px; height: 156px; top: 114px; left: 24px; }
  .brigar__img--right { width: 84px; height: 126px; top: calc(75.4739% - 63px); left: auto; right: 24px; }
}

/* ---------- Como te ajudamos (carrossel por scroll) ---------- */
.sec-ajudar { position: relative; height: calc(100vh + 1884px); background: #000; }
.ajudar__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ajudar__card {
  position: relative;
  width: 1200px;
  max-width: calc(100vw - 48px);
  height: 800px;
  max-height: 100vh;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
}
.ajudar__bgs { position: absolute; inset: 0; z-index: 0; }
.ajudar__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .7s ease;
}
.ajudar__bg.is-active { opacity: 1; }
.ajudar__overlay {
  position: absolute; inset: 0; z-index: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 40%);
}
.ajudar__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 128px 48px 48px;
}
.ajudar__top { display: flex; flex-direction: column; gap: 8px; }
.ajudar__chip {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min-content;
  padding: 8px 18px;
  border-radius: 64px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .1);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  white-space: nowrap;
}
.ajudar__chip p { font: 600 16px/1.5 "DM Sans", sans-serif; color: #fff; text-transform: uppercase; white-space: pre; }
.ajudar__chip-icon { width: 24px; height: 24px; flex: none; }
.ajudar__chip-icon svg { width: 100%; height: 100%; }
.ajudar__bar { width: 100%; height: 4px; background: rgba(255, 255, 255, .1); overflow: hidden; border-radius: 999px; }
.ajudar__bar-fill { width: 100%; height: 100%; background: #e3063e; transform: translateX(-100%); border-radius: inherit; }
.ajudar__bottom { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.ajudar__count b { font-weight: 600; }
.ajudar__count span { color: rgba(255, 255, 255, .6); }
.ajudar__texts { display: flex; flex-direction: column; gap: 24px; max-width: 756px; }
.ajudar__desc { color: rgba(255, 255, 255, .9); max-width: 739px; }
@media (max-width: 809.98px) {
  .sec-ajudar { height: calc(100vh + 2304px); }
  .ajudar__card { max-width: calc(100vw - 32px); border-radius: 18px; }
  .ajudar__inner { padding: 20px; }
  .ajudar__bottom { align-items: flex-start; }
}

/* ---------- Conteúdo (menu lateral + artigos) ---------- */
.sec-conteudo {
  display: flex;
  align-items: flex-start;
  width: 100%;
  background: #0a0a0a;
}
.cont__side {
  position: relative;
  flex: 1;
  max-width: 475px;
  align-self: stretch;
  padding: 72px 32px 32px 80px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  background-image: url('../assets/img/SwOQBKHx43KVnwrdpc38P2QKQ.png');
  background-size: 100% 100%;
}
.cont__side-sticky {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.cont__side-head { display: flex; flex-direction: column; gap: 8px; }
.cont__menu { display: flex; flex-direction: column; width: 363px; max-width: 100%; }
.cont__menu-item {
  display: block;
  width: 100%;
  padding: 20px 16px;
  font: 700 16px/1.2 "DM Sans", sans-serif;
  color: var(--grey-8b);
  border-left: 1px solid transparent;
  background: transparent;
  transition: color .35s ease, background-color .35s ease, border-color .35s ease;
}
.cont__menu-item.is-active {
  color: var(--white);
  border-left-color: rgb(255, 47, 94);
  background: rgba(153, 28, 56, .1);
}
.cont__articles { flex: 1.6; display: flex; flex-direction: column; min-width: 0; }
.cont__article {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: #0a0a0a;
}
.cont__article-text { display: flex; flex-direction: column; gap: 24px; max-width: 700px; }
.cont__article-p { max-width: 448px; }
.cont__video {
  width: 100%;
  max-width: 700px;
  height: 364px;
  border-radius: 16px;
  overflow: hidden;
}
.cont__video video { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
@media (min-width: 810px) and (max-width: 1199.98px) {
  .cont__side { max-width: 354px; padding: 60px 32px 32px 63px; }
  .cont__article { padding: 56px; }
}
@media (max-width: 809.98px) {
  .sec-conteudo { flex-direction: column; }
  .cont__side { max-width: none; width: 100%; flex: none; padding: 72px 24px 32px; border-right: 0; }
  .cont__side-sticky { position: relative; top: auto; gap: 32px; }
  .cont__article { padding: 40px; }
  .cont__video { height: auto; aspect-ratio: 700 / 364; }
}

/* ---------- Cronograma ---------- */
.sec-cronograma {
  display: flex;
  justify-content: center;
  padding: 120px 80px;
  background: #000;
}
.crono__card {
  display: flex;
  gap: 84px;
  width: 100%;
  max-width: 977px;
  padding: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: #0a0a0a;
}
.crono__left { flex: 1; display: flex; flex-direction: column; gap: 24px; min-width: 0; }
.crono__left-head { display: flex; flex-direction: column; gap: 12px; }
.crono__note {
  display: flex;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: #1b1b19;
}
.crono__right { flex: 1; display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.crono__chip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .04);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.crono__chip p { font: 700 16px/1.2 "DM Sans", sans-serif; color: var(--white); white-space: pre; }
.crono__chip-icon { width: 20px; height: 20px; flex: none; }
.crono__list { display: flex; flex-direction: column; gap: 28px; }
.crono__row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.crono__time, .crono__label {
  font-family: "Funnel Display", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  color: var(--white);
}
.crono__time { flex: 1; }
.crono__label { white-space: pre; }
@media (min-width: 810px) and (max-width: 1199.98px) {
  .crono__time, .crono__label { font-size: 40px; }
}
@media (max-width: 809.98px) {
  .sec-cronograma { padding: 80px 24px; }
  .crono__card { flex-direction: column; gap: 40px; padding: 24px; }
  .crono__time, .crono__label { font-size: 24px; }
}

/* ---------- Depoimentos ---------- */
.sec-depoimentos {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  padding: 104px 80px;
  background: #000;
  overflow: visible;
}
.dep__bg { position: absolute; top: 0; left: 0; right: 0; z-index: 0; pointer-events: none; }
.dep__bg img { width: 100%; height: auto; }
.dep__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 1440px;
}
.dep__head { display: flex; flex-direction: column; gap: 20px; max-width: 668px; }
.dep__headline { font: 500 56px/1.1 "Funnel Display", sans-serif; color: #fff; }
.dep__sub { font: 400 20px/1.6 "DM Sans", sans-serif; color: rgba(255, 255, 255, .7); }
.dep__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(50px, 1fr));
  gap: 10px 24px;
  width: 100%;
}
.dep-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 452px;
  border-radius: 16px;
  border: 1px solid var(--grey-1c);
  overflow: hidden;
}
.dep-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dep-card__overlay {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 16px;
  min-height: 207px;
  padding: 32px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 6%, rgb(0, 0, 0) 71%);
}
.dep-card__tag {
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgb(27, 27, 25);
}
.dep-card__tag p { font: 500 14px/1.2 "DM Sans", sans-serif; color: rgba(255, 255, 255, .8); text-transform: uppercase; }
.dep__marquee-block {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 1440px;
}
.dep__marquee { width: 100%; overflow: hidden; }
.ticker--insta { width: 100%; border-radius: 0; }
.ticker__list--insta { gap: 46px; align-items: flex-start; }
.insta-card {
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 410px;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgb(10, 10, 10);
}
.insta-card__top { display: flex; justify-content: space-between; align-items: center; }
.insta-card__quote { width: 30px; height: 22px; display: block; }
.insta-card__quote svg { width: 100%; height: 100%; }
.insta-card__year { font: 500 14px/1.2 "DM Sans", sans-serif; color: rgba(255, 255, 255, .8); }
.insta-card__body { display: flex; flex-direction: column; gap: 24px; }
.insta-comment {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 16px 20px;
  border-radius: 12px;
  background: #fff;
}
.insta-comment__avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex: none; }
.insta-comment__content { flex: 1; display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.insta-comment__header { display: flex; align-items: center; gap: 6px; }
.insta-comment__user { font: 600 14px/1.2 "DM Sans", sans-serif; color: #111; }
.insta-comment__time, .insta-comment__sep { font: 400 13px/1.2 "DM Sans", sans-serif; color: rgb(115, 115, 115); }
.insta-comment__text { font: 400 14px/1.45 "DM Sans", sans-serif; color: #111; white-space: pre-wrap; }
.insta-comment__reply { font: 600 13px/1.2 "DM Sans", sans-serif; color: rgb(115, 115, 115); }
.insta-comment__like { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: none; }
.insta-comment__heart { width: 12px; height: 12px; display: block; }
.insta-comment__heart svg { width: 100%; height: 100%; }
.insta-comment__like p { font: 400 12px/1.2 "DM Sans", sans-serif; color: rgb(115, 115, 115); }
.insta-card__foot { display: flex; flex-direction: column; gap: 12px; }
.insta-card__handle { font: 500 20px/1.1 "Funnel Display", sans-serif; color: #fff; }
.insta-card__role { font: 500 14px/1.2 "DM Sans", sans-serif; color: rgba(255, 255, 255, .8); text-transform: uppercase; }
@media (min-width: 810px) and (max-width: 1199.98px) {
  .dep__headline { font-size: 48px; }
  .dep__grid { grid-template-columns: repeat(2, minmax(50px, 1fr)); }
}
@media (max-width: 809.98px) {
  .sec-depoimentos { padding: 80px 24px; gap: 48px; }
  .dep__headline { font-size: 40px; }
  .dep__sub { font-size: 16px; }
  .dep__grid { grid-template-columns: 1fr; }
  .insta-card { width: 330px; padding: 24px; }
}

/* ---------- VSL ---------- */
.sec-vsl {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  padding: 104px 80px 105px;
  background: #000;
  overflow: hidden;
}
.vsl__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; user-select: none; }
.vsl__bg img { width: 100%; height: 100%; object-fit: cover; }
.vsl__head {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.vsl__head .eyebrow-row { justify-content: center; }
.vsl__title { max-width: 767px; }
.vsl__media {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1030px;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  cursor: pointer;
}
.vsl__media video { width: 100%; height: 100%; object-fit: cover; }
.vsl__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(227, 6, 62, .95);
  box-shadow: 0 0 44px 0 rgba(255, 0, 59, .55);
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}
.vsl__play:hover { transform: scale(1.06); box-shadow: 0 0 60px 0 rgba(255, 0, 59, .7); }
.vsl__play svg { width: 44px; height: 44px; }
.sec-vsl.is-playing .vsl__play { display: none; }
@media (max-width: 809.98px) {
  .sec-vsl { padding: 80px 24px; gap: 40px; }
  .vsl__media { border-radius: 16px; }
  .vsl__play { width: 64px; height: 64px; }
  .vsl__play svg { width: 30px; height: 30px; }
}

/* ---------- Workshop (oferta) ---------- */
.sec-workshop {
  display: flex;
  justify-content: center;
  padding: 120px 80px;
  background: #fff;
}
.wk__inner { display: flex; align-items: flex-start; gap: 56px; width: 100%; max-width: 1440px; justify-content: center; }
.wk__left { flex: 1; max-width: 529px; display: flex; flex-direction: column; gap: 64px; }
.wk__lefthead { display: flex; flex-direction: column; gap: 12px; }
.wk__title { font-family: "Funnel Display", sans-serif; font-weight: 500; font-size: 64px; line-height: 1.1; letter-spacing: -.2px; color: #000; }
.wk__note { font: 400 18px/1.5 "DM Sans", sans-serif; color: var(--grey-57); max-width: 448px; }
.wk__mini { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.wk__mini-head { display: flex; align-items: center; gap: 8px; }
.wk__mini-title { font: 600 16px/1.5 "DM Sans", sans-serif; color: rgb(111, 46, 61); text-transform: uppercase; }
.wk__mini-arrow { width: 20px; height: 20px; }
.wk__mini-row {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.wk__mini-row p { font: 500 20px/1 "Funnel Display", sans-serif; color: #000; }
.wk__card {
  flex: 1;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: #000;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.wk__pricehead { display: flex; flex-direction: column; gap: 23px; }
.wk__pricing { display: flex; flex-direction: column; gap: 10px; }
.wk__from { font: 400 18px/1 "Funnel Display", sans-serif; color: rgba(255, 255, 255, .7); }
.wk__from s { text-decoration: line-through; }
.wk__price { font: 600 72px/1 "Funnel Display", sans-serif; color: #fff; }
.wk__ctacol { display: flex; flex-direction: column; align-items: center; gap: 20px; width: 100%; }
.btn-cta--full { width: 100%; justify-content: space-between; }
.lot-widget--bare { background: transparent; border: 0; -webkit-backdrop-filter: none; backdrop-filter: none; padding: 0; width: 100%; border-radius: 0; }
.lot-widget__track--lg { height: 12px; }
.lot-widget__track--lg .lot-widget__bar { min-width: 30px; }
.wk__benefits { display: flex; flex-direction: column; gap: 20px; }
.wk__benefit-list { display: flex; flex-direction: column; gap: 16px; }
.wk__benefit { display: flex; align-items: center; gap: 16px; }
.wk__check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 32px;
  height: 32px;
  padding: 6px;
  border-radius: 111px;
  border: 1px solid rgba(255, 255, 255, .1);
}
.wk__check svg { width: 20px; height: 20px; }
@media (min-width: 810px) and (max-width: 1199.98px) {
  .sec-workshop { padding: 96px 60px; }
  .wk__inner { flex-direction: column; align-items: stretch; }
  .wk__left { max-width: none; }
  .wk__card { max-width: none; }
  .wk__title { font-size: 56px; }
}
@media (max-width: 809.98px) {
  .sec-workshop { padding: 80px 24px; }
  .wk__inner { flex-direction: column; gap: 40px; }
  .wk__left { max-width: none; gap: 40px; }
  .wk__title { font-size: 48px; }
  .wk__card { padding: 24px; }
  .wk__price { font-size: 56px; }
}

/* ---------- Quem é o Rick ---------- */
.sec-rick {
  display: flex;
  justify-content: center;
  padding: 104px 80px;
  background: linear-gradient(154deg, #24070d 0%, #000 22%);
}
.rick__inner { display: flex; gap: 64px; width: 100%; max-width: 1440px; align-items: stretch; }
.rick__left { flex: 1; display: flex; flex-direction: column; gap: 28px; max-width: 620px; }
.rick__head { display: flex; flex-direction: column; gap: 16px; }
.rick__bio { color: var(--grey-8b); }
.rick__stats { display: flex; gap: 16px; width: 100%; }
.rick__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .04);
}
.rick__stat-top { display: flex; justify-content: space-between; align-items: flex-start; }
.rick__stat-icon { width: 24px; height: 24px; }
.rick__stat-label { color: var(--grey-8b); }
.rick__right { flex: 1; display: flex; align-items: center; justify-content: center; }
.rick__photo {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 16px;
  border: 1px solid var(--grey-3a);
}
.rick__photo > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.rick__badge { position: absolute; }
.rick__badge--anos {
  top: 28px;
  right: -18px;
  transform: rotate(-8deg);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #e8402a;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}
.rick__badge-num { font: 700 27px/1 "DM Sans", sans-serif; color: #fff; }
.rick__badge-caption { font: 600 8.5px/1.5 "DM Sans", sans-serif; color: #fff; text-transform: uppercase; }
.rick__badge--edicoes {
  left: -22px;
  top: 44%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}
.rick__badge-kicker { font: 700 10px/1.2 "DM Sans", sans-serif; color: rgba(232, 64, 42, 1); text-transform: uppercase; }
.rick__badge-kicker--light { font-weight: 600; }
.rick__badge-strong { font: 800 16.5px/1.25 "DM Sans", sans-serif; color: rgba(23, 21, 26, 1); }
.rick__badge-strong--light { font-weight: 700; color: #fff; }
.rick__badge--alunos {
  right: 22px;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(10, 10, 10, .9);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}
.rick__avatars { display: flex; align-items: center; }
.rick__avatars img { width: 33px; height: 33px; border-radius: 50%; border: 2px solid #0a0a0a; object-fit: cover; }
.rick__avatars img + img, .rick__avatars .rick__avatars-more { margin-left: -8px; }
.rick__avatars-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  border: 2px solid #0a0a0a;
  background: #e3063e;
  font: 600 10px/1 "DM Sans", sans-serif;
  color: #fff;
}
@media (max-width: 1199.98px) {
  .rick__inner { flex-direction: column; }
  .rick__left { max-width: none; }
  .rick__photo { min-height: 420px; }
  .rick__badge--anos { right: 10px; }
  .rick__badge--edicoes { left: 10px; }
}
@media (max-width: 809.98px) {
  .sec-rick { padding: 80px 24px; }
}

/* ---------- Garantia ---------- */
.sec-garantia {
  display: flex;
  justify-content: center;
  padding: 96px 80px;
  background: #070707;
}
.gar__card {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1034px;
  min-height: 420px;
  padding: 64px 48px;
  border-radius: 16px;
  border: 1px solid var(--grey-1c);
  overflow: hidden;
}
.gar__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.gar__grad {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 599px;
  max-width: 100%;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.gar__content { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 24px; max-width: 403px; }
.gar__head { display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 809.98px) {
  .sec-garantia { padding: 80px 24px; }
  .gar__card { padding: 32px 24px; min-height: 380px; }
}

/* ---------- Certificado ---------- */
.sec-certificado {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 104px 80px;
  background: #000;
  overflow: hidden;
}
.cert__pattern {
  position: absolute;
  top: -192px; left: -121px; right: -122px;
  opacity: .08;
  z-index: 0;
  pointer-events: none;
}
.cert__pattern img { width: 100%; height: auto; }
.cert__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 96px;
  width: 100%;
  max-width: 1440px;
}
.cert__text { flex: 1; display: flex; flex-direction: column; gap: 24px; max-width: 560px; }
.cert__head { display: flex; flex-direction: column; gap: 12px; }
.cert__media { flex: 1; }
.cert__media img { width: 100%; height: auto; }
@media (max-width: 1199.98px) {
  .cert__inner { flex-direction: column; gap: 48px; }
  .cert__text { max-width: none; }
}
@media (max-width: 809.98px) {
  .sec-certificado { padding: 80px 24px; }
}

/* ---------- FAQ ---------- */
.sec-faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding: 104px 80px;
  background: #fff;
}
.faq__head { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.faq__title { color: var(--grey-1c); }
.faq__grid { display: flex; align-items: flex-start; gap: 64px; width: 100%; max-width: 1440px; justify-content: center; }
.faq__list { flex: 1; display: flex; flex-direction: column; min-width: 0; max-width: 820px; }
.faq__item { border-bottom: 1px solid rgba(0, 0, 0, .08); }
.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__q { font-family: "Funnel Display", sans-serif; font-weight: 500; font-size: 20px; line-height: 1.2; letter-spacing: -.02em; color: var(--grey-1c); }
.faq__chip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, .1);
  transition: transform .3s ease;
}
.faq__chip svg { width: 22px; height: 22px; }
.faq__item[open] .faq__chip { transform: rotate(45deg); }
.faq__a {
  padding: 0 0 24px;
  font: 400 18px/1.5 "DM Sans", sans-serif;
  color: var(--grey-57);
  max-width: 700px;
}
.faq__support {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: 380px;
  flex: none;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, .1);
  background: #ececec;
}
.faq__support-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.faq__support-texts { display: flex; flex-direction: column; gap: 20px; }
.faq__support-title { font: 500 32px/1.2 "Funnel Display", sans-serif; color: #0b1526; }
.faq__support-desc { font: 400 16px/1.5 "DM Sans", sans-serif; color: rgba(2, 19, 46, .7); }
.btn-cta--wpp {
  background: rgb(58, 191, 76);
  border: 1px solid rgba(255, 255, 255, .4);
  box-shadow: 0 0 28px 0 rgba(58, 191, 76, .55);
  width: 100%;
  justify-content: space-between;
}
.btn-cta__label--light { color: #fff; }
.btn-cta__arrow--wpp { border-color: rgb(88, 255, 110); }
@media (max-width: 1199.98px) {
  .faq__grid { flex-direction: column; align-items: stretch; }
  .faq__support { width: 100%; }
  .faq__list { max-width: none; }
}
@media (max-width: 809.98px) {
  .sec-faq { padding: 80px 24px; }
}

/* ---------- CTA final ---------- */
.sec-final {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 1015px;
  padding: 72px 80px;
  background: #fff;
  overflow: hidden;
}
.final__bg { position: absolute; inset: 0; z-index: 0; }
.final__bg img { width: 100%; height: 100%; object-fit: cover; }
.final__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}
.final__title {
  font: 500 100px/1 "Funnel Display", sans-serif;
  color: #fff;
  text-shadow: 0 4px 40px rgba(0, 0, 0, .4);
}
@media (min-width: 810px) and (max-width: 1199.98px) {
  .final__title { font-size: 72px; }
}
@media (max-width: 809.98px) {
  .sec-final { height: 720px; padding: 72px 24px; }
  .final__title { font-size: 64px; line-height: 1.1; }
}

/* ---------- Footer ---------- */
.footer {
  display: flex;
  justify-content: center;
  background: #000;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 96px;
  width: 100%;
  max-width: 1200px;
  padding: 56px 80px;
}
.footer__logo { width: 139px; height: 40px; flex: none; }
.footer__logo svg { width: 100%; height: 100%; }
.footer__mid { display: flex; align-items: center; gap: 67px; }
.footer__mid p { font: 400 16px/1 "DM Sans", sans-serif; color: rgba(255, 255, 255, .5); white-space: pre; }
.footer__credit a { font: 700 14px/1.2 "DM Sans", sans-serif; color: #fff; transition: color .25s ease; }
.footer__credit a span { font-weight: 400; color: rgba(255, 255, 255, .8); }
.footer__credit a:hover { color: #ffc7c7; }
@media (min-width: 810px) and (max-width: 1199.98px) {
  .footer__inner { padding: 56px 64px; }
  .footer__mid { flex-direction: column; gap: 12px; align-items: flex-start; }
}
@media (max-width: 809.98px) {
  .footer__inner { flex-direction: column; gap: 24px; padding: 56px 24px; }
  .footer__mid { flex-direction: column; gap: 24px; align-items: center; }
}

/* ==========================================================================
   Rodada de alterações (doc do Rick)
   ========================================================================== */

/* Logo nova (proporção 284x85) */
.topnav__logo { width: 134px; height: 40px; }
.footer__logo { width: 134px; height: 40px; }
@media (max-width: 809.98px) {
  .topnav__logo { width: 110px; height: auto; aspect-ratio: 284 / 85; }
}

/* Frase de conexão no "Pare de brigar" */
.brigar__sub {
  position: relative;
  z-index: 1;
  font: 400 20px/1.5 "DM Sans", sans-serif;
  color: rgba(255, 255, 255, .75);
  text-align: center;
}
@media (max-width: 809.98px) {
  .brigar__sub { font-size: 16px; }
}

/* Comparador: label central única */
.iam-center-label {
  left: 50%;
  transform: translateX(-50%);
  color: #E3063E;
  background: #18070c;
  transition: color .25s ease, background-color .25s ease;
}

/* Carrossel: revelação palavra a palavra */
.ajudar__texts .wd {
  display: inline-block;
  opacity: .1;
  filter: blur(6px);
  transform: translateY(6px);
  transition: opacity .4s ease, filter .4s ease, transform .4s ease;
}
.ajudar__texts .wd.w-on { opacity: 1; filter: none; transform: none; }
.ajudar__desc { transition: opacity .45s ease; }

/* Depoimentos: rolagem controlada pelo scroll */
.dep__scrub { position: relative; width: 100%; }
.dep__scrub .dep__marquee-block {
  position: sticky;
  top: 0;
  min-height: 100vh;
  justify-content: center;
  max-width: none;
}
.dep__scrub .dep__marquee { max-width: 1440px; }
.ticker--insta .ticker__list { animation: none; will-change: transform; }

/* VSL */
.vsl__sub { color: rgba(255, 255, 255, .8); text-align: center; max-width: 620px; }

/* Oferta reformulada */
.sec-workshop { padding: 96px 80px; }
.wk__inner { gap: 72px; align-items: center; }
.wk__left { max-width: 560px; gap: 40px; }
.wk__title { font-size: 56px; }
.wk__benefits { gap: 18px; }
.wk__benefits-title { color: var(--grey-1c); }
.wk__benefit-p { font: 400 16px/1.5 "DM Sans", sans-serif; color: var(--grey-57); }
.wk__benefit-list { gap: 14px; }
.wk__benefit .wk__check { border-color: rgba(0, 0, 0, .08); }
.wk__card {
  position: relative;
  overflow: hidden;
  max-width: 520px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  gap: 0;
}
.wk__card-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.wk__card-grad {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .55) 45%, rgba(0, 0, 0, .88) 100%);
}
.wk__card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px;
}
.wk__ctacol .btn-cta { width: min-content; }
.lot-widget--bare { align-items: center; }
.lot-widget--bare .lot-widget__track { width: 100%; }
@media (max-width: 1199.98px) {
  .wk__card { max-width: none; }
}
@media (max-width: 809.98px) {
  .sec-workshop { padding: 80px 24px; }
  .wk__title { font-size: 44px; }
  .wk__card-content { padding: 28px 24px; }
  .wk__ctacol .btn-cta { width: 100%; justify-content: space-between; }
}

/* Projetos dos últimos workshops (leque) */
.sec-projetos {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 104px 40px 96px;
  background: #050505;
  overflow: hidden;
}
.proj__title { text-align: center; max-width: 900px; }
.fan { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.fan__stage {
  position: relative;
  width: 100%;
  max-width: 1280px;
  height: 460px;
}
.fan-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 460px;
  aspect-ratio: 16 / 9;
  margin-left: -230px;
  margin-top: -160px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55);
  cursor: pointer;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1), opacity .4s ease;
  will-change: transform;
  background: #111;
}
.fan-card img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.fan-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
  background: rgba(0, 0, 0, .25);
}
.fan-card__play svg { width: 56px; height: 56px; filter: drop-shadow(0 6px 18px rgba(227, 6, 62, .6)); }
.fan-card:hover .fan-card__play { opacity: 1; }
.fan-card[data-video=""] .fan-card__play { display: none; }
.fan__nav { display: flex; align-items: center; gap: 16px; z-index: 5; }
.fan__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, .6);
  cursor: pointer;
  transition: border-color .25s ease, color .25s ease;
}
.fan__arrow:hover { border-color: rgba(255, 255, 255, .4); color: #fff; }
.fan__arrow svg { width: 20px; height: 20px; }
.fan-lightbox { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; }
.fan-lightbox[hidden] { display: none; }
.fan-lightbox__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .88); }
.fan-lightbox__body {
  position: relative;
  width: min(1000px, 92vw);
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, .15);
}
.fan-lightbox__body video, .fan-lightbox__body img { width: 100%; height: 100%; object-fit: contain; }
.fan-lightbox__close {
  position: absolute;
  top: 8px; right: 12px;
  z-index: 2;
  width: 40px; height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
@media (max-width: 809.98px) {
  .sec-projetos { padding: 80px 16px; }
  .fan__stage { height: 300px; }
  .fan-card { width: 280px; margin-left: -140px; margin-top: -95px; }
}

/* Rick: ticker de logos embaixo */
.rick__ticker { width: 100%; max-width: 1440px; margin-top: 56px; display: flex; justify-content: center; }
.sec-rick { flex-direction: column; align-items: center; }

/* Certificado: rotação no scroll */
.cert__media { perspective: 1200px; }
.cert__tilt { transform-style: preserve-3d; will-change: transform; }

/* FAQ compacto */
.sec-faq { padding: 88px 80px 80px; gap: 40px; }
.faq__item summary { padding: 14px 0; }
.faq__a { padding: 0 0 18px; }
@media (max-width: 809.98px) {
  .sec-faq { padding: 64px 24px; }
}

/* Dobra final: efeitos */
.final__dots {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(rgba(255, 255, 255, .35) 1px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: .12;
  mix-blend-mode: screen;
  pointer-events: none;
}
.final__scanline {
  position: absolute;
  left: 0; right: 0;
  top: -12%;
  height: 130px;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(227, 6, 62, .28) 42%, rgba(255, 70, 100, .6) 50%, rgba(227, 6, 62, .28) 58%, transparent 100%);
  mix-blend-mode: screen;
  filter: blur(1.5px);
  animation: final-scan 9s ease-in-out infinite;
  pointer-events: none;
}
@keyframes final-scan {
  0% { top: -12%; }
  50% { top: 96%; }
  100% { top: -12%; }
}
.final__bg img { will-change: transform; transition: transform .25s ease-out; transform: scale(1.04); }

/* Rodapé mais fino */
.footer__inner { padding: 24px 80px; }
@media (max-width: 809.98px) {
  .footer__inner { padding: 32px 24px; gap: 16px; }
}

/* ==========================================================================
   Rodada 2 de ajustes
   ========================================================================== */

/* ANTES/AGORA: dobra fixa que anima com o scroll */
.sec-afterbefore { display: block; padding: 0; height: 260vh; position: relative; }
.ab__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 108px 80px 28px;
  background: #000;
  overflow: hidden;
}
.ab__sticky .ab__header { max-width: 1440px; }
.ab__sticky .ab__component { max-width: 1440px; }
.iam-comparison { height: clamp(230px, 38vh, 360px); cursor: default; touch-action: pan-y; }
.iam-title { margin: 16px 0 10px; }
.iam-metric { padding: 12px 16px; }
/* etiqueta central maior */
.iam-state-label { font-size: 22px; padding: 12px 22px; border-radius: 10px; }
@media (min-width: 810px) and (max-width: 1199.98px) {
  .ab__sticky { padding: 108px 60px 28px; }
}
@media (max-width: 809.98px) {
  .sec-afterbefore { height: 300vh; }
  .ab__sticky { padding: 96px 24px 20px; gap: 16px; }
  .iam-state-label { font-size: 16px; padding: 9px 14px; }
  .ab__title { font-size: 32px; }
  .ab__desc-p { font-size: 13px; }
}

/* Carrossel: texto central em destaque */
.ajudar__inner { position: relative; }
.ajudar__texts {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: calc(100% - 120px);
  max-width: 940px;
  text-align: center;
  transition: opacity .5s ease, transform .5s ease, filter .5s ease;
  pointer-events: none;
}
.ajudar__texts.is-out {
  opacity: 0;
  transform: translate(-50%, -60%);
  filter: blur(10px);
}
.ajudar__slide-title {
  font-family: "Funnel Display", sans-serif;
  font-weight: 500;
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #fff;
  text-shadow: 0 8px 60px rgba(0, 0, 0, .75), 0 2px 18px rgba(0, 0, 0, .6);
}
.ajudar__desc {
  font: 400 20px/1.5 "DM Sans", sans-serif;
  color: rgba(255, 255, 255, .92);
  max-width: 640px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .7);
}
.ajudar__bottom { margin-top: auto; }
@media (max-width: 809.98px) {
  .ajudar__texts { width: calc(100% - 40px); }
  .ajudar__slide-title { font-size: 32px; }
  .ajudar__desc { font-size: 16px; }
}

/* Certificado: grande, central, levantando em 3D */
.cert__inner--stack {
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.cert__text--center {
  align-items: center;
  text-align: center;
  max-width: 680px;
}
.cert__text--center .eyebrow-row { justify-content: center; }
.cert__media--big {
  flex: none;
  width: min(940px, 94%);
  perspective: 1500px;
}
.cert__media--big img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 60px 120px rgba(0, 0, 0, .6);
}
.sec-certificado { padding: 120px 80px 140px; }
@media (max-width: 809.98px) {
  .sec-certificado { padding: 80px 24px 100px; }
}

/* Dobra final: título por palavras + botão depois */
.final__title { max-width: 1080px; }
.final__title .fw {
  display: inline-block;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(14px);
  transition: opacity .6s ease, filter .6s ease, transform .6s ease;
  transition-delay: var(--fw-delay, 0s);
}
.final__title.is-in .fw { opacity: 1; filter: none; transform: none; }
.final__cta {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.final__cta.is-in { opacity: 1; transform: none; }
@media (min-width: 1200px) {
  .final__title { font-size: 88px; }
}

/* ==========================================================================
   Rodada 3 de ajustes
   ========================================================================== */

/* ANTES/AGORA: texto grande sem bloco */
.iam-state-label {
  border: 0;
  background: transparent !important;
  padding: 0;
  font: 500 52px/1 "Funnel Display", sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .85), 0 0 46px rgba(0, 0, 0, .6);
  bottom: 20px;
}
.iam-before-label, .iam-now-label { display: none; }
@media (max-width: 809.98px) {
  .iam-state-label { font-size: 30px; }
}

/* Carrossel: mais espaço de leitura por slide + fundo animável */
.sec-ajudar { height: calc(100vh + 2700px); }
.ajudar__bg { will-change: transform, filter, opacity; }
@media (max-width: 809.98px) {
  .sec-ajudar { height: calc(100vh + 3000px); }
}

/* Dobra final: busto 3D */
.final__bg { background: #000; }
.final__bg img { object-fit: contain; }
@media (max-width: 809.98px) {
  .final__bg img { object-fit: cover; }
}

/* ==========================================================================
   Rodada 4 de ajustes
   ========================================================================== */

/* Textos pequenos: vermelho da marca no lugar do rosa claro */
:root { --pink-text: #e3063e; }
.eyebrow { color: #e3063e; }

/* Certificado: dobra trava esperando o iPad */
.sec-certificado--pin { display: block; height: 230vh; padding: 0; }
.cert__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 112px 80px 40px;
  overflow: hidden;
}
.cert__sticky .cert__pattern { top: -192px; }
.cert__sticky .cert__inner--stack { gap: 40px; }
.cert__media--big { width: min(860px, 88%); }
@media (max-width: 809.98px) {
  .cert__sticky { padding: 96px 24px 24px; }
}

/* Frase final em duas linhas */
.final__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.final__line { white-space: nowrap; }
.final__line--1 {
  font: 500 clamp(22px, 3vw, 40px)/1.15 "Funnel Display", sans-serif;
  color: rgba(255, 255, 255, .82);
  letter-spacing: .01em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .6);
}
.final__line--2 {
  font: 600 clamp(42px, 6.6vw, 92px)/1.05 "Funnel Display", sans-serif;
  color: #fff;
  letter-spacing: -.015em;
  text-shadow: 0 6px 50px rgba(0, 0, 0, .7), 0 0 70px rgba(227, 6, 62, .35);
}
@media (max-width: 809.98px) {
  .final__line { white-space: normal; }
  .final__line--1 { font-size: 18px; }
  .final__line--2 { font-size: 38px; }
}

/* fix: sticky do certificado precisa de overflow visível na seção */
.sec-certificado--pin { overflow: visible; }

/* ==========================================================================
   Rodada 5/6 de ajustes
   ========================================================================== */

/* ---- Barra fixa mais fina + botão de compra no scroll ---- */
.topnav { height: 72px; padding: 12px 80px; }
.topnav__logo { width: 114px; height: 34px; }
.topnav__right { display: flex; align-items: center; gap: 12px; }
.topnav__chip { padding: 8px 10px; }
.topnav__chip p { font-size: 13px; }
.topnav__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 4px 4px 16px;
  border-radius: 99px;
  background: #fff;
  box-shadow: 0 0 18px rgba(255, 0, 59, .4);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.topnav.is-scrolled .topnav__cta { opacity: 1; transform: none; pointer-events: auto; }
.topnav__cta-label { font: 700 13px/1 "DM Sans", sans-serif; color: var(--grey-1c); white-space: pre; }
.topnav__cta-arrow {
  position: relative;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--pink-border);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.topnav__cta-arrow img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: fill; }
.topnav__cta-arrow svg { position: relative; width: 14px; height: 14px; }
@media (max-width: 809.98px) {
  .topnav { padding: 10px 16px; height: 64px; }
  .topnav.is-scrolled .topnav__chip { display: none; }
  .topnav__cta-label { font-size: 12px; }
}

/* topo das dobras fixas respeitando a barra mais fina */
.ab__sticky { padding-top: 92px; }
.cert__sticky { padding-top: 92px; }
.ajudar__inner { padding-top: 100px; }

/* ---- Textos pequenos refinados (site caro) ---- */
.eyebrow {
  font: 500 13px/1.6 "DM Sans", sans-serif;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, .68);
  text-transform: uppercase;
}
.eyebrow-row { gap: 10px; }
.eyebrow-row__icon { width: 18px; height: 18px; opacity: .95; }
.sec-faq .eyebrow, .sec-workshop .wk__left .eyebrow { color: rgba(28, 28, 28, .6); }
.wk__card .eyebrow { color: rgba(255, 255, 255, .68); }

/* ---- ANTES/AGORA com degradê radial atrás ---- */
.iam-state-label {
  font-size: 56px;
  letter-spacing: .05em;
  bottom: 26px;
  z-index: 5;
}
.iam-state-label::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 340%;
  height: 420%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, .68) 0%, rgba(0, 0, 0, .38) 46%, rgba(0, 0, 0, 0) 72%);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 809.98px) {
  .iam-state-label { font-size: 32px; }
}

/* ---- Carrossel: frases grandes e fortes ---- */
.ajudar__slide-title {
  font-size: clamp(48px, 6.2vw, 86px);
  line-height: 1.04;
  text-shadow: 0 10px 70px rgba(0, 0, 0, .8), 0 2px 20px rgba(0, 0, 0, .65);
}
.ajudar__desc {
  font: 500 clamp(20px, 2.3vw, 30px)/1.4 "DM Sans", sans-serif;
  color: rgba(255, 255, 255, .95);
  max-width: 760px;
}
.ajudar__texts { gap: 24px; }
@media (max-width: 809.98px) {
  .ajudar__slide-title { font-size: 38px; }
  .ajudar__desc { font-size: 18px; }
}

/* ---- Conteúdo: títulos vivos ---- */
.cont__num { color: #e3063e; font-weight: 500; }
.cont__title { font-size: 36px; }
.rl { display: block; overflow: hidden; }
.rl-inner {
  display: block;
  transform: translateY(112%);
  transition: transform .9s cubic-bezier(.22, 1, .36, 1) .08s;
}
[data-anim].is-in .rl-inner { transform: none; }
.cont__article-p { color: var(--grey-bc); font-size: 18px; max-width: 520px; }
.cont__video {
  max-width: 820px;
  height: auto;
  aspect-ratio: 21 / 9;
}
.cont__video video { height: 100%; }
@media (max-width: 809.98px) {
  .cont__title { font-size: 24px; }
  .cont__video { aspect-ratio: 16 / 9; }
}

/* ---- Certificado: partículas no lugar dos pontos ---- */
.cert__particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cert__particles canvas { width: 100%; height: 100%; display: block; }

/* ---- Dobra final: busto legível + partículas + chips ---- */
.final__bg img { filter: brightness(.52) blur(2.5px) saturate(.92); }
.final__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 50% 46%, rgba(0, 0, 0, .28) 0%, rgba(0, 0, 0, .62) 62%, rgba(0, 0, 0, .82) 100%);
  pointer-events: none;
}
.final__particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.final__particles canvas { width: 100%; height: 100%; display: block; }
.final__cta { position: relative; }
.fchip {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(calc(-50% + var(--cx) * var(--k, 1) + var(--pmx, 0px) * var(--f, 1)), calc(-50% + var(--cy) * var(--k, 1) + var(--pmy, 0px) * var(--f, 1)));
  padding: 8px 14px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(12, 12, 12, .55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity .8s ease .2s, transform .5s cubic-bezier(.3, .9, .35, 1);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}
.fchip i {
  display: block;
  font: 500 13px/1 "DM Sans", sans-serif;
  font-style: normal;
  color: rgba(255, 255, 255, .85);
  animation: chipbob 4.5s ease-in-out infinite alternate;
  animation-delay: var(--d, 0s);
}
.final__cta.is-in .fchip { opacity: 1; }
.final__cta.is-hot { --k: 1.16; }
.final__cta.is-hot .fchip { border-color: rgba(255, 122, 153, .45); }
.final__cta .btn-cta { position: relative; z-index: 2; }
@keyframes chipbob {
  from { transform: translateY(-6px); }
  to { transform: translateY(7px); }
}
@media (max-width: 809.98px) {
  .fchip { display: none; }
}

/* ==========================================================================
   Rodada 7 de ajustes
   ========================================================================== */

/* Card da oferta com o vídeo do hero (texto sempre legível) */
video.wk__card-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.wk__card-grad {
  background: linear-gradient(180deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .62) 45%, rgba(0, 0, 0, .92) 100%);
}
.wk__pricing { gap: 0; }

/* Chip "6ª edição | 2026" premium */
.topnav__chip {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .09);
  background: rgba(255, 255, 255, .03);
  gap: 7px;
}
.topnav__chip::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e3063e;
  box-shadow: 0 0 8px rgba(227, 6, 62, .9);
  flex: none;
}
.topnav__chip p {
  font: 500 11px/1 "DM Sans", sans-serif;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .62);
  text-transform: uppercase;
}

/* ==========================================================================
   Rodada 8 de ajustes
   ========================================================================== */

/* Nav: botão à esquerda, símbolo central em contorno sutil */
.topnav__inner { position: relative; }
.topnav__mark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 30px;
  opacity: .5;
  transition: opacity .3s ease;
}
.topnav__mark:hover { opacity: .9; }
.topnav__mark svg { height: 100%; width: auto; display: block; }

/* Textura de micrograde (quadradinhos) */
.tex-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: overlay;
}

/* Pare de brigar: vídeo de fundo */
.brigar__bgvideo { position: absolute; inset: 0; z-index: 0; }
.brigar__bgvideo video { width: 100%; height: 100%; object-fit: cover; }
.brigar__scrim { position: absolute; inset: 0; z-index: 0; background: rgba(0, 0, 0, .58); }
.tex-overlay--brigar { z-index: 0; }

/* Carrossel: kicker em cima, frase grande embaixo; frases do slide 3 numa linha */
.ajudar__desc { order: -1; }
.ajudar__slide-title.one-line { white-space: nowrap; font-size: clamp(34px, 4.6vw, 66px); max-width: none; }
@media (max-width: 809.98px) {
  .ajudar__slide-title.one-line { white-space: normal; font-size: 34px; }
}

/* Dobra final: imagem anterior de volta, sem tratamento de busto */
.final__bg img { object-fit: cover; filter: none; }
.final__shade {
  background: radial-gradient(ellipse at 50% 42%, rgba(0, 0, 0, .34) 0%, rgba(0, 0, 0, .5) 58%, rgba(0, 0, 0, .72) 100%);
}

/* VSL: quebra de linha equilibrada */
.vsl__sub { max-width: 620px; text-wrap: balance; }

/* Oferta: preço centralizado com o botão */
.wk__card-content { align-items: center; text-align: center; }
.wk__pricehead { align-items: center; }
.wk__pricehead .eyebrow-row { justify-content: center; }
.wk__pricing { align-items: center; }

/* Benefícios: entram um a um com o check pipocando */
.wk__benefit {
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity .5s ease, transform .55s cubic-bezier(.22, 1, .36, 1);
}
.wk__benefit .wk__check svg {
  transform: scale(0);
  transition: transform .38s cubic-bezier(.34, 1.56, .64, 1);
}
.wk__benefits.is-in .wk__benefit { opacity: 1; transform: none; }
.wk__benefits.is-in .wk__benefit .wk__check svg { transform: scale(1); }
.wk__benefits.is-in .wk__benefit:nth-child(1) { transition-delay: .05s; }
.wk__benefits.is-in .wk__benefit:nth-child(2) { transition-delay: .17s; }
.wk__benefits.is-in .wk__benefit:nth-child(3) { transition-delay: .29s; }
.wk__benefits.is-in .wk__benefit:nth-child(4) { transition-delay: .41s; }
.wk__benefits.is-in .wk__benefit:nth-child(5) { transition-delay: .53s; }
.wk__benefits.is-in .wk__benefit:nth-child(6) { transition-delay: .65s; }
.wk__benefits.is-in .wk__benefit:nth-child(7) { transition-delay: .77s; }
.wk__benefits.is-in .wk__benefit:nth-child(1) .wk__check svg { transition-delay: .17s; }
.wk__benefits.is-in .wk__benefit:nth-child(2) .wk__check svg { transition-delay: .29s; }
.wk__benefits.is-in .wk__benefit:nth-child(3) .wk__check svg { transition-delay: .41s; }
.wk__benefits.is-in .wk__benefit:nth-child(4) .wk__check svg { transition-delay: .53s; }
.wk__benefits.is-in .wk__benefit:nth-child(5) .wk__check svg { transition-delay: .65s; }
.wk__benefits.is-in .wk__benefit:nth-child(6) .wk__check svg { transition-delay: .77s; }
.wk__benefits.is-in .wk__benefit:nth-child(7) .wk__check svg { transition-delay: .89s; }

/* Leque: transição mais fluida */
.fan-card {
  transition: transform .85s cubic-bezier(.16, 1, .3, 1), opacity .5s ease;
}

/* ==========================================================================
   Rodada 9 de ajustes
   ========================================================================== */

/* Dobra final: uma dobra exata, chão preservado, sem enfeites */
.sec-final { height: 100vh; min-height: 640px; padding: 48px 40px; }
.final__bg img { object-fit: cover; object-position: center bottom; }
.final__shade {
  background: radial-gradient(ellipse at 50% 46%, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .42) 60%, rgba(0, 0, 0, .6) 100%);
}

/* Pare de brigar: título menor, saco fora do P, os dois balançando */
.brigar__title { font-size: 116px; }
.brigar__img--left {
  left: 1.5%;
  animation: bag-sway 6.5s ease-in-out infinite alternate;
  transform-origin: 50% -60px;
}
.brigar__img--right {
  animation: glove-float 5.2s ease-in-out infinite alternate;
}
@keyframes bag-sway {
  from { transform: rotate(-2.4deg) translateY(-4px); }
  to { transform: rotate(2.8deg) translateY(6px); }
}
@keyframes glove-float {
  from { transform: translateY(-9px) rotate(-2.4deg); }
  to { transform: translateY(10px) rotate(2.6deg); }
}
@media (min-width: 810px) and (max-width: 1199.98px) {
  .brigar__title { font-size: 80px; }
}
@media (max-width: 809.98px) {
  .brigar__title { font-size: 40px; }
}

/* Carrossel: entrada em bloco da frase principal do slide 3 */
.ajudar__texts.rise-init {
  opacity: 0;
  transform: translate(-50%, -41%);
  filter: blur(8px);
  transition: none;
}
.ajudar__texts.rise-in {
  opacity: 1;
  transform: translate(-50%, -50%);
  filter: none;
  transition: opacity .75s ease, transform .75s cubic-bezier(.22, 1, .36, 1), filter .75s ease;
}

/* Cronograma refinado */
.crono__list { gap: 12px; }
.crono__row { align-items: center; gap: 24px; padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, .07); }
.crono__time {
  font: 500 22px/1.2 "Funnel Display", sans-serif;
  color: #fff;
  letter-spacing: .02em;
}
.crono__label {
  font: 400 15px/1.4 "DM Sans", sans-serif;
  color: var(--grey-8b);
  letter-spacing: .04em;
  text-transform: uppercase;
}
@media (min-width: 810px) and (max-width: 1199.98px) {
  .crono__time { font-size: 22px; }
  .crono__label { font-size: 15px; }
}
@media (max-width: 809.98px) {
  .crono__time { font-size: 18px; }
  .crono__label { font-size: 12px; }
}

/* Rodapé refeito */
.footer { border-top: 1px solid rgba(255, 255, 255, .06); }
.footer__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 52px 24px 44px;
  text-align: center;
}
.footer__logo { width: auto; height: 24px; opacity: .95; }
.footer__logo svg { height: 100%; width: auto; }
.footer__rule {
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
}
.footer__meta {
  font: 500 11px/1.6 "DM Sans", sans-serif;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .42);
}
.footer__copy { font: 400 12px/1.6 "DM Sans", sans-serif; color: rgba(255, 255, 255, .3); }

/* ==========================================================================
   Rodada 10 de ajustes
   ========================================================================== */

/* Comparador: título grandão e menos bold; headline sozinha na dobra */
.iam-title {
  font: 500 clamp(30px, 3.1vw, 42px)/1.15 "Funnel Display", sans-serif;
  letter-spacing: -.015em;
  color: #fff;
  margin: 20px 0 12px;
}
.ab__title { max-width: 780px; }
.ab__headline { max-width: none; }

/* ==========================================================================
   Rodada 11: slide 3 do carrossel
   ========================================================================== */

/* Frase principal sobe palavra por palavra, de baixo para cima */
.ajudar__slide-title.rise-words .wd {
  transform: translateY(30px);
  filter: blur(10px);
  transition-duration: .55s;
}
.ajudar__slide-title.rise-words .wd.w-on {
  transform: none;
  filter: none;
}

/* ==========================================================================
   Rodada 12: hero sem barra; barra completa aparece na rolagem
   ========================================================================== */

.topnav {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background-color .4s ease, border-color .4s ease, backdrop-filter .4s ease;
}
.topnav.is-scrolled {
  background: rgba(0, 0, 0, .6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom-color: var(--grey-1c);
}
.topnav__logo-full {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  opacity: 1;
  transition: opacity .3s ease;
}
.topnav__logo-full svg { height: 100%; width: auto; display: block; }
.topnav.is-scrolled .topnav__logo-full { opacity: 0; pointer-events: none; }
.topnav__mark { opacity: 0; pointer-events: none; }
.topnav.is-scrolled .topnav__mark { opacity: .5; pointer-events: auto; }
.topnav.is-scrolled .topnav__mark:hover { opacity: .9; }
@media (max-width: 809.98px) {
  .topnav__logo-full { height: 30px; }
}

/* ==========================================================================
   Rodada 13: balãozinho do kicker
   ========================================================================== */

.ajudar__desc.ajudar__kicker-pill {
  font: 500 17px/1.3 "DM Sans", sans-serif;
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(0, 0, 0, .38);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  max-width: none;
  letter-spacing: .01em;
}
@media (max-width: 809.98px) {
  .ajudar__desc.ajudar__kicker-pill { font-size: 14px; padding: 10px 18px; }
}

/* ==========================================================================
   Rodada 14: hero cabe numa dobra com ticker visível
   ========================================================================== */

.hero {
  height: 100vh;
  min-height: 660px;
  padding: 104px 80px 132px;
}
@media (min-width: 810px) and (max-width: 1199.98px) {
  .hero { padding: 104px 60px 132px; }
}
@media (max-width: 809.98px) {
  .hero { height: 100svh; min-height: 600px; padding: 88px 24px 118px; }
}

/* ==========================================================================
   Rodada 15: frase + botão agrupados acima da bonequinha
   ========================================================================== */

.sec-final { justify-content: flex-start; }
.final__content { margin-top: 10.5vh; gap: 30px; }
@media (max-width: 809.98px) {
  .final__content { margin-top: 9vh; gap: 24px; }
}

/* ==========================================================================
   Rodada 16: degradê para o preto no pé da dobra final + texto mais alto
   ========================================================================== */

.sec-final::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 150px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 96%);
  z-index: 2;
  pointer-events: none;
}
.final__content { margin-top: 8vh; }
.final__title-wrap { gap: 6px; }
@media (max-width: 809.98px) {
  .final__content { margin-top: 7vh; }
  .sec-final::after { height: 110px; }
}

/* ==========================================================================
   Rodada 17: quebras e tamanhos da dobra do comparador
   ========================================================================== */

.ab__title { text-wrap: balance; }
.iam-title {
  font-size: clamp(22px, 2.1vw, 28px);
  margin: 18px 0 10px;
}

/* ==========================================================================
   Rodada 18: moldura grande na frase principal do slide 3
   ========================================================================== */

.ajudar__slide-title.ajudar__title-pill {
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 24px 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(0, 0, 0, .4);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  font-size: clamp(30px, 3.5vw, 52px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
}
@media (max-width: 809.98px) {
  .ajudar__slide-title.ajudar__title-pill { padding: 16px 26px; font-size: 24px; border-radius: 28px; }
}

/* Rodada 19: título dos projetos com quebra equilibrada */
.proj__title { text-wrap: balance; max-width: 1000px; }

/* Rodada 20: mais rolagem por slide no carrossel (leitura no tempo certo) */
.sec-ajudar { height: calc(100vh + 3150px); }
@media (max-width: 809.98px) {
  .sec-ajudar { height: calc(100vh + 3450px); }
}

/* ==========================================================================
   Rodada 21
   ========================================================================== */

/* VSL numa dobra única */
.sec-vsl { height: 100vh; min-height: 640px; padding: 100px 80px 48px; gap: 32px; }
.vsl__title2 {
  font: 500 clamp(28px, 3.2vw, 42px)/1.15 "Funnel Display", sans-serif;
  letter-spacing: -.015em;
  color: #fff;
  text-align: center;
  max-width: 860px;
  text-wrap: balance;
}
.vsl__media {
  max-width: 920px;
  width: min(920px, calc((100vh - 330px) * 16 / 9));
}
@media (max-width: 809.98px) {
  .sec-vsl { height: auto; min-height: 100svh; padding: 88px 24px 40px; }
  .vsl__media { width: 100%; }
}

/* Projetos: cabeçalho com eyebrow */
.proj__head { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.proj__eyebrow { justify-content: center; }

/* Certificado: texto sempre abaixo da barra fixa */
.cert__sticky { justify-content: flex-start; padding-top: 100px; }
.cert__sticky .cert__inner--stack { gap: 32px; }
.cert__media--big { width: min(820px, 86%); }

/* Dobra final: chips entram com o mesmo movimento do texto */
.fchip {
  transform: translate(calc(-50% + var(--cx) * var(--k, 1) + var(--pmx, 0px) * var(--f, 1)), calc(-50% + var(--cy) * var(--k, 1) + var(--pmy, 0px) * var(--f, 1) + var(--ey, 18px)));
  filter: blur(10px);
  transition: opacity .55s ease, transform .6s cubic-bezier(.22, 1, .36, 1), filter .55s ease;
}
.final__cta.is-in .fchip {
  opacity: 1;
  filter: none;
  --ey: 0px;
}
.final__cta .fchip:nth-of-type(1) { transition-delay: .03s; }
.final__cta .fchip:nth-of-type(2) { transition-delay: .1s; }
.final__cta .fchip:nth-of-type(3) { transition-delay: .17s; }
.final__cta .fchip:nth-of-type(4) { transition-delay: .24s; }
.final__cta .fchip:nth-of-type(5) { transition-delay: .31s; }
.final__cta .fchip:nth-of-type(6) { transition-delay: .38s; }

/* Rodada 22: headline do comparador em no máximo 2 linhas */
.ab__title {
  font-size: clamp(32px, 3.55vw, 46px);
  max-width: 920px;
  line-height: 1.12;
}

/* Rodada 23: ainda mais fôlego de rolagem no carrossel */
.sec-ajudar { height: calc(100vh + 3400px); }
@media (max-width: 809.98px) {
  .sec-ajudar { height: calc(100vh + 3700px); }
}

/* Rodada 24: iPad do certificado inteiro na dobra e mais perto do texto */
.cert__sticky .cert__inner--stack { gap: 22px; }
.cert__media--big {
  width: min(760px, 86%, calc((100vh - 336px) * 1.476));
}

/* Rodada 25: rodapé com metade da altura */
.footer__wrap { gap: 10px; padding: 26px 24px 20px; }
.footer__logo { height: 18px; }
.footer__rule { width: 48px; }
.footer__meta { font-size: 10px; letter-spacing: .22em; }
.footer__copy { font-size: 11px; }

/* ==========================================================================
   Rodada 27: acertos exclusivos do mobile (≤809px; desktop intocado)
   ========================================================================== */

@media (max-width: 809.98px) {
  /* Hero cresce se o conteúdo precisar, sem sobrepor o ticker */
  .hero { height: auto; min-height: 100svh; padding-bottom: 132px; }
  .hero .h1 { font-size: 40px; }

  /* Dobras fixas usam a altura visível real do celular */
  .ab__sticky, .ajudar__sticky, .cert__sticky { height: 100svh; }
  .sec-brigar { height: 100svh; max-height: 100svh; }

  /* Comparador compacto para caber tudo na dobra */
  .ab__sticky { padding: 88px 20px 16px; gap: 12px; }
  .ab__title { font-size: 26px; }
  .iam-comparison { height: clamp(190px, 30svh, 300px); }
  .iam-title { font-size: 18px; margin: 12px 0 8px; }
  .iam-state-label { font-size: 26px; bottom: 12px; }

  /* Quem é o Rick: badges para dentro da foto, menores */
  .rick__photo { min-height: 340px; }
  .rick__badge--anos { top: 12px; right: 12px; left: auto; transform: rotate(-6deg) scale(.82); transform-origin: top right; }
  .rick__badge--edicoes { left: 12px; top: auto; bottom: 88px; transform: scale(.82); transform-origin: bottom left; }
  .rick__badge--alunos { right: 12px; bottom: 12px; padding: 10px 12px; transform: scale(.92); transform-origin: bottom right; }
  .rick__ticker { margin-top: 40px; }
  .rick__stats { flex-direction: column; }

  /* Garantia: gradiente cobre o card estreito inteiro */
  .gar__grad { width: 100%; background: linear-gradient(180deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.35) 100%); }

  /* Certificado e VSL: títulos proporcionais */
  .cert__text--center .h2 { font-size: 30px; }
  .cert__sticky { padding-top: 88px; }
  .vsl__title2 { font-size: 24px; }

  /* Oferta */
  .wk__title { font-size: 38px; }

  /* Projetos: título menor */
  .proj__title { font-size: 30px; }

  /* Depoimentos: headline */
  .dep__headline { font-size: 34px; }

  /* Dobra final: linhas podem quebrar, grupo mais alto */
  .final__line--2 { font-size: 34px; }
}

/* Métricas do comparador em 3 mini colunas no celular */
@container (max-width: 480px) {
  .iam-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .iam-metric { flex-direction: column; align-items: flex-start; gap: 8px; padding: 10px; }
  .iam-icon { padding: 7px; border-radius: 8px; }
  .iam-icon svg { width: 16px; height: 16px; }
  .iam-label { font-size: 9px; white-space: normal; line-height: 1.25; }
  .iam-value { font-size: 12px; white-space: normal; line-height: 1.25; }
}

/* ==========================================================================
   Rodada 28: hero mobile e chip da barra
   ========================================================================== */

/* CTA da barra fora do fluxo: nunca empurra o chip (visual desktop idêntico) */
.topnav__inner { justify-content: flex-end; }
.topnav__cta {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, calc(-50% - 10px));
}
.topnav.is-scrolled .topnav__cta { transform: translate(0, -50%); }

/* Hero mobile: sem quebra forçada, hierarquia natural */
@media (max-width: 809.98px) {
  .hero .h1 br { display: none; }
  .hero .h1 { font-size: 38px; line-height: 1.12; }
  .topnav__cta { max-width: calc(100vw - 32px); }
}

/* Rodada 29: cronograma e certificado no mobile */
@media (max-width: 809.98px) {
  .crono__chip { width: 100%; padding: 10px 14px; }
  .crono__chip p {
    white-space: normal;
    text-align: center;
    font-size: 13px;
    line-height: 1.35;
  }
  .cert__media--big { width: min(94%, calc((100svh - 290px) * 1.476)); }
}

/* ==========================================================================
   Rodada 30: brigar mais curto + play visível no leque
   ========================================================================== */

/* Pare de brigar: aparece, respira pouco e libera a rolagem */
.sec-brigar-wrap { height: 165vh; }
@media (max-width: 809.98px) {
  .sec-brigar-wrap { height: 132svh; }
}

/* Leque: simbolozinho de play discreto, sempre visível nos cards com vídeo */
.fan-card__play {
  inset: auto auto 10px 10px;
  width: 34px;
  height: 34px;
  opacity: .92;
  background: none;
  transition: transform .25s ease, opacity .25s ease;
}
.fan-card__play svg {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .55));
}
.fan-card:hover .fan-card__play { opacity: 1; transform: scale(1.15); }

/* Rodada 31: play do leque central, sem cor, opacidade baixa */
.fan-card__play {
  inset: 0;
  margin: auto;
  width: 42px;
  height: 42px;
  opacity: .32;
  background: none;
}
.fan-card__play svg {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .45));
}
.fan-card:hover .fan-card__play { opacity: .55; transform: scale(1.06); }

/* Rodada 32: triângulo do play maior */
.fan-card__play { width: 68px; height: 68px; }
.fan-card__play svg { width: 68px; height: 68px; }
@media (max-width: 809.98px) {
  .fan-card__play { width: 48px; height: 48px; }
  .fan-card__play svg { width: 48px; height: 48px; }
}

/* ==========================================================================
   Régua de lote da dobra final (ponta a ponta)
   ========================================================================== */

.final__lotbar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
}
.final__lotbar-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding: 0 44px 16px;
}
.final__lotbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 500 12px/1 "DM Sans", sans-serif;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
  padding-bottom: 9px;
}
.final__lotbar-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ff2f5e;
  box-shadow: 0 0 12px rgba(255, 47, 94, .9);
  animation: lotdot 2.2s ease-in-out infinite;
}
@keyframes lotdot {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px rgba(255, 47, 94, .9); }
  50% { opacity: .45; box-shadow: 0 0 4px rgba(255, 47, 94, .4); }
}
.final__lotbar-right {
  display: flex;
  align-items: baseline;
  gap: 12px;
  text-align: right;
}
.final__lotbar-pct {
  font: 500 46px/1 "Funnel Display", sans-serif;
  color: #fff;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.01em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .6);
}
.final__lotbar-frase {
  font: 500 13px/1.4 "DM Sans", sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}
.final__lotbar-track {
  position: relative;
  width: 100%;
  height: 12px;
  background: rgba(255, 255, 255, .07);
  border-top: 1px solid rgba(255, 255, 255, .1);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.final__lotbar-fill {
  position: relative;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #56041c 0%, #b00229 55%, #dc0230 78%, #ff4066 100%);
  box-shadow: 0 0 28px rgba(227, 6, 62, .6);
  transition: width 1.4s cubic-bezier(.22, 1, .36, 1);
  overflow: visible;
}
.final__lotbar.is-live .final__lotbar-fill { width: var(--pct, 0%); }
.final__lotbar-shine {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.final__lotbar-shine::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .38), transparent);
  animation: lotshine 3.2s ease-in-out infinite;
}
@keyframes lotshine {
  0% { left: -140px; }
  60%, 100% { left: 100%; }
}
.final__lotbar-tip {
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 14px rgba(255, 255, 255, .95), 0 0 34px rgba(255, 64, 102, .9);
  animation: lottip 1.8s ease-in-out infinite;
}
@keyframes lottip {
  0%, 100% { box-shadow: 0 0 14px rgba(255, 255, 255, .95), 0 0 34px rgba(255, 64, 102, .9); }
  50% { box-shadow: 0 0 8px rgba(255, 255, 255, .7), 0 0 18px rgba(255, 64, 102, .55); }
}
@media (max-width: 809.98px) {
  .final__lotbar-info { padding: 0 20px 12px; align-items: flex-end; }
  .final__lotbar-pct { font-size: 32px; }
  .final__lotbar-frase { font-size: 10px; }
  .final__lotbar-left { font-size: 10px; padding-bottom: 6px; }
  .final__lotbar-track { height: 10px; }
}

/* Régua de lote v2: percentual viaja com a ponta da barra */
.final__lotbar-info {
  justify-content: flex-start;
  padding: 0 44px 44px;
}
.final__lotbar-sep { color: rgba(255, 255, 255, .3); margin: 0 2px; }
.final__lotbar-frase { font-size: 12px; letter-spacing: .22em; color: rgba(255, 255, 255, .5); text-transform: uppercase; }
.final__lotbar-right { display: none; }
.final__lotbar-chip {
  position: absolute;
  bottom: 24px;
  left: 40px;
  transform: translateX(-50%);
  padding: 7px 14px 6px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(8, 8, 8, .72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
  transition: left 1.4s cubic-bezier(.22, 1, .36, 1);
  z-index: 2;
}
.final__lotbar-chip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%) rotate(45deg);
  width: 9px; height: 9px;
  background: rgba(8, 8, 8, .72);
  border-right: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}
.final__lotbar-chip b {
  font: 500 24px/1 "Funnel Display", sans-serif;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.final__lotbar.is-live .final__lotbar-chip {
  left: clamp(44px, var(--pct, 0%), calc(100% - 44px));
}
@media (max-width: 809.98px) {
  .final__lotbar-info { padding: 0 20px 38px; }
  .final__lotbar-frase { font-size: 9px; }
  .final__lotbar-chip { bottom: 20px; padding: 6px 11px 5px; }
  .final__lotbar-chip b { font-size: 18px; }
}

/* VSL com embed do Panda ocupando o quadro.
   width/height com !important: o api.v2.js do Panda (loadWindowScreen) grava
   width/height inline no iframe ao sair do fullscreen; sem o escudo o vídeo
   volta em tamanho fixo e quebra o card (visto no domínio real). No modo
   fullscreen o iframe fica position:fixed, e aí 100% = viewport, então o
   escudo não atrapalha. */
.vsl__media iframe { width: 100% !important; height: 100% !important; display: block; border: 0; }
/* Sem will-change depois da entrada: will-change:transform prende o iframe
   fixed do fullscreen fake dentro do card (containing block) e o overflow
   hidden mostra so o canto do video, que foi o defeito no celular. */
.vsl__media.is-in { will-change: auto; transform: none; }
/* Navegador antigo sem aspect-ratio (Safari <15 etc.): quadro 16:9 via padding. */
@supports not (aspect-ratio: 16 / 9) {
  .vsl__media::before { content: ""; display: block; padding-top: 56.25%; }
  .vsl__media iframe { position: absolute; inset: 0; }
}
