@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter-700.woff2") format("woff2");
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/inter-800.woff2") format("woff2");
}
@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/bebas-neue.woff2") format("woff2");
  unicode-range: U+0000-00FF;
}

:root {
  --night: #07060c;
  --purple: #1c0b3a;
  --magenta: #c2185b;
  --cyan: #00c8e0;
  --yellow: #ffe14a;
  --navy: #071428;
  --paper: #fffdf8;
  --foot: #05040a;
  --panel: #14082a;
  --line: rgba(255, 225, 74, 0.28);
  --text: #fffdf5;
  --muted: #d7d0e8;
  --ink: #111111;
  --ink-text: #111111;
  --accent: #ffe14a;
  --accent-bright: #fff36a;
  --accent-deep: #c2185b;
  --ok: #1fa86a;
  --gold: #c9a227;
  --radius: 10px;
  --btn-radius: 8px;
  --max: 1180px;
  --pad: 20px;
  --font: Inter, system-ui, "Segoe UI", sans-serif;
  --wave: polygon(0% 48%, 7% 30%, 14% 55%, 22% 18%, 31% 50%, 40% 22%, 49% 58%, 58% 16%, 67% 46%, 76% 24%, 85% 52%, 93% 28%, 100% 44%, 100% 100%, 0% 100%);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 16px; }

body {
  margin: 0;
  background: var(--night);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
button, a, summary { touch-action: manipulation; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, figure, ul, ol { margin: 0; }
h1, h2 { font-weight: 800; letter-spacing: -0.045em; line-height: 1.08; overflow-wrap: break-word; }
h1 { font-size: clamp(1.42rem, 5vw, 3.35rem); }
h2 { font-size: clamp(1.42rem, 4.4vw, 2.7rem); text-wrap: balance; }
h3 { font-size: 1.12rem; font-weight: 750; }
em {
  font-style: normal;
  background: linear-gradient(90deg, #ff2d95, #7b2fff, #00e5ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
p { color: var(--muted); }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
[hidden] { display: none !important; }

.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 12px; z-index: 99; background: #fff; color: #000; padding: 8px 12px; }

.wrap {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - (var(--pad) * 2)));
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
}
.narrow { max-width: 760px; }

.hero,
.section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-bottom: -1px;
}
.section { padding: 64px 0 96px; }
.hero::before,
.section::before {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 0;
  height: 84px;
  background: linear-gradient(90deg, #ff2d95, #ffe14a, #00e5ff, #ff2d95);
  clip-path: var(--wave);
  transform: translateY(-8px);
  z-index: 2;
  pointer-events: none;
}
.hero::after,
.section::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 0;
  height: 84px;
  background: var(--wave-to, var(--night));
  clip-path: var(--wave);
  z-index: 3;
  pointer-events: none;
}

.band-purple { background: var(--purple); color: var(--text); }
.band-yellow { background: var(--yellow); color: var(--ink); }
.band-magenta { background: var(--magenta); color: var(--text); }
.band-cyan { background: var(--cyan); color: var(--ink); }
.band-night { background: var(--night); color: var(--text); }
.band-navy { background: var(--navy); color: var(--text); }
.band-paper { background: var(--paper); color: var(--ink); }

.band-paper p { color: #3d3d46; }
.band-paper h2,
.band-paper h3 { color: var(--ink); }

.band-yellow p,
.band-cyan p { color: #1c1608; }
.band-yellow h2,
.band-yellow h3,
.band-cyan h2,
.band-cyan h3 { color: var(--ink); }
.band-yellow .eyebrow,
.band-cyan .eyebrow { color: #9b1058; }
.band-magenta p,
.band-purple p,
.band-navy p,
.band-night p { color: rgba(255, 253, 245, 0.88); }

.band-yellow .cards li,
.band-cyan .cards li {
  background: #111;
  color: #fff;
  border: 0;
}
.band-yellow .cards p,
.band-cyan .cards p { color: #ddd; }
.band-yellow .cards h3,
.band-cyan .cards h3 { color: var(--yellow); }
.band-magenta .decades article {
  background: rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 225, 74, 0.45);
}
.band-purple .steps li,
.band-purple .devices li {
  background: rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 225, 74, 0.3);
}

.block-head { max-width: 640px; margin: 0 auto 28px; text-align: center; }
.block-head > p:not(.eyebrow) { margin-top: 12px; font-size: 0.95rem; }
.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 24px;
  border-radius: var(--btn-radius);
  font-weight: 800;
  font-size: 0.95rem;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--yellow);
  color: #111;
  box-shadow: 0 0 0 2px #111, 0 8px 0 #c2185b;
}
.btn-primary:hover { background: var(--accent-bright); }
.btn-primary:active { transform: translateY(1px); }
.btn-block { width: 100%; }
.section-offer-btn { display: flex; width: fit-content; max-width: 100%; margin: 28px auto 0; }

.urgency-bar { background: var(--yellow); }
.urgency-inner { display: flex; align-items: center; justify-content: center; min-height: 34px; padding: 7px 0; text-align: center; }
.urgency-inner p {
  color: #111;
  font-size: clamp(0.7rem, 2.8vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.site-head {
  background: #05040a;
  border-bottom: 1px solid rgba(255, 225, 74, 0.16);
}
.site-head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 64px;
}
.site-head .brand { min-width: 0; }
.site-head .brand img { width: min(120px, 36vw); }
.site-nav {
  display: none;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #f3e9ff;
}
.site-nav a:hover { color: var(--yellow); }
.site-cta {
  flex-shrink: 0;
  min-height: 48px;
  padding: 10px 12px;
  font-size: 0.72rem;
  white-space: nowrap;
}
.site-cta .cta-full { display: none; }
.site-cta .cta-short { display: inline; }
@media (min-width: 840px) {
  .site-nav { display: flex; }
  .site-cta .cta-full { display: inline; }
  .site-cta .cta-short { display: none; }
  .site-cta { min-height: 48px; padding: 12px 18px; font-size: 0.85rem; }
  .site-head .brand img { width: 148px; }
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand img {
  width: min(188px, 62vw);
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}

.hero {
  padding: 32px 0 0;
  background-color: #05040a;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.32) 46%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(rgba(255, 45, 149, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.06) 1px, transparent 1px),
    radial-gradient(ellipse at 50% 0%, rgba(255, 45, 149, 0.16), transparent 52%);
  background-size: auto, 42px 42px, 42px 42px, 100% 70%;
}
.hero-layout { display: flex; flex-direction: column; max-width: 980px; margin-inline: auto; min-width: 0; }
.hero-copy { text-align: center; padding: 0 4px 8px; min-width: 0; max-width: 100%; }
.hero h1 {
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 0;
  color: #fff;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}
.hero-copy .lead {
  margin-top: 18px;
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 40rem;
  margin-inline: auto;
  padding-inline: 2px;
  color: #f3e9ff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}
.hero-facts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 18px auto 0;
  width: fit-content;
  max-width: 100%;
}
.hero-facts li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
}
.hero-facts .card-ico {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  box-shadow: 2px 2px 0 var(--yellow);
}
.hero-facts .card-ico svg { width: 16px; height: 16px; }
@media (min-width: 720px) {
  .hero-facts {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 16px;
    width: auto;
    max-width: 42rem;
  }
}

.hero-visual {
  position: relative;
  margin: 12px 0 0;
  padding: 0;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  text-align: center;
  border: 2px solid var(--yellow);
  border-bottom: 0;
  border-radius: 48px 48px 0 0;
  background: radial-gradient(ellipse at 50% 90%, rgba(255, 45, 149, 0.28), transparent 48%), #0a0a0e;
  box-shadow: 0 -8px 48px rgba(0, 200, 224, 0.18);
}
.hero-glow {
  position: absolute;
  inset: 12% 8% 28%;
  background: radial-gradient(circle, rgba(255, 225, 74, 0.32), transparent 70%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}
.hero-stage {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}
.hero-device {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  aspect-ratio: 1600 / 1067;
  object-fit: contain;
  object-position: center;
  mask-image: linear-gradient(180deg, #000 88%, transparent 100%);
}
.hero-product {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 2;
  width: min(58%, 280px);
  height: auto;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-6deg);
  transform-origin: 50% 58%;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.45));
  animation: hero-product-sway 2.8s ease-in-out infinite alternate;
}
@keyframes hero-product-sway {
  from { transform: translate(-50%, -50%) rotate(-7deg); }
  to { transform: translate(-50%, -50%) rotate(7deg); }
}
.hero-action-panel {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-top: clamp(-48px, -4vw, -20px);
  padding: clamp(32px, 5vw, 56px) 8px 96px;
  background: transparent;
}
.hero-action-panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -12px 4% 0;
  background: radial-gradient(ellipse at 50% 65%, rgba(255, 45, 149, 0.28), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}
.hero-vsl-btn { width: min(100%, 340px); color: #111; }
.hero-buy {
  display: grid;
  justify-items: center;
  gap: 8px;
  width: min(100%, 340px);
  text-align: center;
}
.hero-price-label,
.hero-micro {
  margin: 0;
  color: #ffd6ee;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
}
.hero-micro { font-size: 0.82rem; color: #d7d0e8; font-weight: 500; }
.hero-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  margin: 0;
  color: #fff;
  line-height: 1.05;
}
.hero-price span { font-size: 1.2rem; margin-top: 0.5rem; font-weight: 550; }
.hero-price strong { font-size: clamp(2.8rem, 10vw, 4.2rem); font-weight: 800; letter-spacing: -0.075em; }
.hero-price small { font-size: 1.25rem; margin-top: 0.5rem; font-weight: 550; }

.rating-badge {
  width: min(100%, 340px);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 10px;
  border: 1px solid rgba(255, 225, 74, 0.45);
  border-radius: 999px;
  background: #16081f;
  box-shadow: 0 10px 28px #0006;
}
.avatar-stack { display: flex; padding-left: 8px; flex-shrink: 0; }
.avatar-stack img {
  width: 34px;
  height: 34px;
  display: block;
  margin-left: -8px;
  border: 2px solid #16081f;
  border-radius: 50%;
  background: #2a2a33;
  object-fit: cover;
}
.rating-copy { flex: 1; min-width: 0; text-align: left; line-height: 1.15; }
.rating-copy p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #fff;
  font-size: clamp(0.95rem, 3.8vw, 1.05rem);
  font-weight: 800;
}
.rating-copy strong { font-weight: 800; flex-shrink: 0; }
.rating-stars {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  margin: 0 0 0 auto;
  color: var(--yellow);
}
.rating-stars svg {
  width: clamp(16px, 5vw, 22px);
  height: clamp(16px, 5vw, 22px);
  display: block;
  flex-shrink: 0;
}
.rating-copy small { display: block; margin-top: 4px; color: #ffd6ee; font-size: 0.8rem; font-weight: 500; }

.player {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 0 16px 16px;
  overflow: hidden;
  text-align: center;
  border: 2px solid #111;
  border-radius: 28px;
  background: #fffdf8;
  box-shadow: 0 0 0 2px var(--yellow), 0 10px 0 var(--magenta);
}
.player-brand {
  margin: 0 -16px 14px;
  padding: 14px 16px 12px;
  background: var(--magenta);
}
.player-logo {
  width: min(168px, 58%);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.28));
}
.player-platter {
  position: relative;
  width: min(78vw, 280px);
  aspect-ratio: 1;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
}
.player-platter::before {
  content: "";
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 225, 74, 0.16), transparent 62%);
  box-shadow:
    0 0 0 2px rgba(194, 24, 91, 0.22),
    0 10px 24px rgba(28, 11, 58, 0.12);
  pointer-events: none;
}
.player-disc {
  width: 100%;
  animation: vinyl 8s linear infinite;
  animation-play-state: paused;
}
.player.is-playing .player-disc { animation-play-state: running; }
.player-disc img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.55));
}
@keyframes vinyl { to { transform: rotate(1turn); } }
.player-decade {
  margin: 0 auto;
  max-width: 16em;
  color: #111111;
  font-weight: 800;
  font-size: clamp(1.05rem, 4.2vw, 1.28rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  text-wrap: balance;
}
.band-purple .player-decade { color: #111111; }
.player-hint { margin: 0.2rem 0 0.85rem; color: #5b6675; font-size: 0.88rem; }
.band-purple .player-hint { color: #5b6675; }
.player-wave {
  position: relative;
  height: 56px;
  margin: 0 2px 16px;
}
.player-wave canvas {
  display: block;
  width: 100%;
  height: 56px;
}
.player-wave input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}
.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ctrl { border: 0; background: transparent; color: #fff; cursor: pointer; padding: 0; }
.ctrl-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--yellow);
  color: #111;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 2px #111, 0 6px 0 var(--magenta);
}
.ctrl-play:active { transform: translateY(3px); box-shadow: 0 0 0 2px #111, 0 3px 0 var(--magenta); }
.ctrl-play svg { width: 30px; height: 30px; }
.ctrl-play .ico-play { margin-left: 3px; }
.ctrl-play .ico-pause,
.player.is-playing .ico-play { display: none; }
.player.is-playing .ico-pause { display: block; }

#ouvir { overflow: hidden; }
#recebe {
  overflow: hidden;
  padding-bottom: 0;
}
.hero::before,
.hero::after,
#ouvir::before,
#ouvir::after,
#recebe::before,
#recebe::after {
  height: 96px;
}
.vsl-person {
  position: relative;
  z-index: 0;
  width: min(100%, 980px);
  margin: 20px auto 0;
  line-height: 0;
}
.vsl-person img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
}
.receive-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}
.receive-list li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 4px 14px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  text-align: left;
}
.receive-list .card-ico { grid-row: 1 / span 2; }
.receive-list h3 { margin: 0; line-height: 1.25; }
.receive-list p { margin: 4px 0 0; font-size: 0.92rem; }
.band-yellow .receive-list li {
  background: #111;
  color: #fff;
  border: 0;
}
.band-yellow .receive-list p { color: #ddd; }
.band-yellow .receive-list h3 { color: var(--yellow); }
@media (min-width: 720px) {
  .receive-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.cards, .decades, .steps {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 12px;
}
.cards li, .decades article, .steps li {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  text-align: center;
}
.cards li { text-align: left; }
.card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.card-ico {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border: 2px solid #111;
  border-radius: 14px;
  background: var(--magenta);
  color: var(--yellow);
  box-shadow: 3px 3px 0 var(--yellow);
}
.card-ico svg { display: block; width: 24px; height: 24px; }
.card-head h3 { margin: 0; flex: 1; min-width: 0; line-height: 1.2; }
.cards p, .decades article > p:not(.dec-year), .steps p { margin-top: 6px; font-size: 0.92rem; }
.cards .card-head + p { margin-top: 10px; }
.decades article { padding: 22px 16px 20px; }
.dec-year {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: 0 0 10px;
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--yellow);
  line-height: 0.82;
  text-transform: uppercase;
}
.dec-anos {
  font-size: clamp(1.35rem, 4.8vw, 1.85rem);
  letter-spacing: 0.38em;
  text-indent: 0.38em;
  line-height: 1;
}
.dec-num {
  font-size: clamp(6.4rem, 28vw, 8.6rem);
  letter-spacing: 0.02em;
  text-shadow: 0 3px 0 #111, 4px 6px 0 rgba(0, 200, 224, 0.55);
}
.steps .card-ico { margin: 0 auto 10px; }
.compat-title {
  margin: 36px 0 4px;
  text-align: center;
  font-size: clamp(1.15rem, 3.2vw, 1.4rem);
}
.devices { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; list-style: none; padding: 0; margin: 16px 0 0; }
.devices li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}
.devices svg { width: 18px; height: 18px; flex-shrink: 0; }
.compat-note { margin: 16px auto 0; max-width: 34rem; text-align: center; font-size: 0.9rem; }

.proof-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 0 0 16px;
  color: var(--gold);
  filter: drop-shadow(0 1px 0 #6b5208) drop-shadow(1px 1px 0 #111);
}
.proof-stars .star { display: block; width: 42px; height: 42px; }
.reviews {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}
.review {
  min-width: 0;
  background: #fff;
  border: 2px solid #111;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 6px 6px 0 #c2185b;
}
.review-body { padding: 18px 18px 16px; }
.who-row { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.who-row > img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--magenta);
  flex-shrink: 0;
}
.who-row h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ink-text);
  margin: 0;
}
.who-row h3 > span:first-child { min-width: 0; }
.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #3897f0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}
.review-verified svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #3897f0;
}
.who-row small { display: block; color: #777784; font-size: 0.72rem; line-height: 1.35; }
.who-row .mini { display: flex; gap: 0; color: var(--gold); margin-top: 5px; filter: drop-shadow(0 0.6px 0 #6b5208) drop-shadow(0.5px 0.5px 0 #111); }
.who-row .mini .star { width: 16px; height: 16px; }
.review-body .review-text {
  font-size: 0.9rem;
  color: #4a4a55;
  line-height: 1.6;
}
.reviews-nav { display: none; }
.reviews-hint { color: #5a5a64; }
.reviews-source {
  max-width: 640px;
  margin: 24px auto 0;
  padding: 16px 20px;
  border: 1px solid #ead7e4;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 5px #172b4d08;
  text-align: left;
}
.reviews-source-heading { display: flex; align-items: center; gap: 12px; }
.reviews-source-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  color: #fff;
}
.reviews-source-icon svg { width: 24px; height: 24px; }
.reviews-source .reviews-source-title {
  font-size: 0.875rem;
  line-height: 1.3;
  font-weight: 700;
  color: #30343b;
  margin: 0;
}
.reviews-source-brand {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: #262626;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 4px;
}
.reviews-source-verified {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #3897f0;
}
.reviews-source .reviews-source-description {
  font-size: 0.8rem;
  line-height: 1.55;
  color: #656b75;
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid #eceef1;
}
@media (max-width: 399px) {
  .reviews-source { padding: 14px; }
}

.offer-panel {
  position: relative;
  max-width: 960px;
  margin: 28px auto 0;
  padding: 28px 24px;
  border: 2px solid #111;
  border-radius: 24px;
  background: #fff;
  box-shadow: 8px 8px 0 var(--yellow);
  display: grid;
  gap: 8px 28px;
  justify-items: center;
  overflow: visible;
  color: #111;
}
.offer-panel p { color: #3d3d46; }
.offer-tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 9px 18px;
  border: 2px solid #111;
  border-radius: 7px;
  background: var(--yellow);
  color: #111;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.offer-media { text-align: center; width: 100%; }
.offer-media h3 { color: #111; font-size: 1.4rem; margin-top: 8px; }
.offer-media img {
  width: 100%;
  max-width: 240px;
  margin: 8px auto 4px;
  filter: drop-shadow(0 12px 18px rgba(28, 11, 58, 0.28));
}
.offer-media p { font-size: 0.95rem; max-width: 34ch; margin: 8px auto 0; color: #5a5a64; }
.offer-buy {
  width: min(100%, 440px);
  text-align: center;
}
.offer-timer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  padding: 12px 0;
  border-bottom: 1px solid #ece8e0;
  color: #5a5a64;
  font-size: clamp(0.72rem, 2.8vw, 0.85rem);
}
.offer-timer strong {
  color: #c2185b;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.offer-price-label {
  margin: 8px 0 0;
  color: #5a5a64;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}
.offer-panel p.offer-micro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin: 10px 0 0;
  color: #147c4e;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
}
.offer-panel .offer-old {
  margin: 4px 0 0;
  color: #8a8a93;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.offer-old s {
  color: #8a8a93;
  text-decoration: line-through;
  text-decoration-color: #e106004d;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0;
  text-decoration-skip-ink: none;
}
.offer-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 7px;
  margin: 2px 0 0;
  color: #111;
  line-height: 1.05;
}
.offer-price span { font-size: 1.4rem; margin-top: 0.55rem; font-weight: 550; }
.offer-price strong { font-size: clamp(3.8rem, 12vw, 5.6rem); font-weight: 800; letter-spacing: -0.075em; }
.offer-price small { font-size: 1.5rem; margin-top: 0.55rem; font-weight: 550; }
.offer-panel .offer-ship {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin: 8px 0;
  color: #147c4e;
  font-size: 0.92rem;
  font-weight: 700;
}
.offer-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  animation: offer-check-pop 0.45s ease-out both, offer-check-glow 1.6s 0.7s ease-in-out infinite;
}
.offer-check circle { fill: var(--ok); }
.offer-check path {
  fill: none;
  stroke: #fff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16;
  stroke-dashoffset: 16;
  animation: offer-check-draw 0.55s 0.18s ease-out forwards;
}
@keyframes offer-check-pop {
  0% { transform: scale(0.45); opacity: 0; }
  72% { transform: scale(1.12); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes offer-check-draw { to { stroke-dashoffset: 0; } }
@keyframes offer-check-glow {
  0%, 100% { filter: none; }
  50% { filter: drop-shadow(0 0 6px #1fa86a); }
}
.offer-list { list-style: none; padding: 0; display: grid; gap: 10px; margin: 14px 0 16px; text-align: left; }
.offer-list li { display: grid; grid-template-columns: 24px 1fr; gap: 10px; align-items: start; }
.offer-list .check { color: #147c4e; font-weight: 800; }
.offer-list b { display: block; color: #1b2b3d; font-size: 0.92rem; }
.offer-cta {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  padding: 2px;
  isolation: isolate;
  background: #0f6a41;
}
.offer-cta::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent 0 68%, #7dffb8 76%, #fff 80%, #1fa86a 84%, transparent 92% 100%);
  animation: offer-border-spin 2.5s linear infinite;
  pointer-events: none;
}
.offer-cta .btn { position: relative; z-index: 1; width: 100%; border: 0; }
.offer-cta .btn-primary {
  background: #147c4e;
  color: #fff;
  box-shadow: 0 8px 0 #0c5a38;
}
.offer-cta .btn-primary:hover { background: #1a9060; }
@keyframes offer-border-spin { to { transform: rotate(1turn); } }
.offer-trust {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  gap: clamp(8px, 2vw, 18px);
  margin-top: 16px;
  font-size: 0.75rem;
  color: #5a5a64;
}

.guarantee {
  display: grid;
  justify-items: center;
  text-align: center;
}
.guarantee-body {
  display: grid;
  justify-items: center;
  gap: 20px;
  width: 100%;
  max-width: 720px;
}
.guarantee-copy { display: grid; gap: 12px; width: 100%; max-width: 36rem; }
.guarantee-seal {
  width: min(160px, 42vw);
  height: auto;
  display: block;
  margin: 4px auto 20px;
  filter: drop-shadow(0 12px 18px rgba(28, 11, 58, 0.28));
}
.guarantee .block-head { margin-bottom: 8px; }
.guarantee-lead {
  margin: 0;
  max-width: 36rem;
  font-size: 1.02rem;
}

.faq {
  display: grid;
  gap: 10px;
  text-align: left;
}
.faq details {
  background: #fff;
  border: 2px solid #111;
  border-radius: 14px;
  box-shadow: 4px 4px 0 var(--yellow);
  overflow: hidden;
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 16px 16px 16px 18px;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-size: 0.98rem;
  line-height: 1.3;
  color: #111;
  text-align: left;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::marker { content: ""; }
.faq summary::after {
  content: "";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 2px solid #111;
  border-radius: 8px;
  background: var(--yellow);
  background-image:
    linear-gradient(#111, #111),
    linear-gradient(#111, #111);
  background-size: 12px 2px, 2px 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.faq details[open] summary {
  background: var(--yellow);
}
.faq details[open] summary::after {
  background-image: linear-gradient(#111, #111);
  background-size: 12px 2px;
}
.faq p {
  margin: 0;
  padding: 0 18px 18px;
  color: #3d3d46;
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: left;
}

.site-foot {
  background: var(--foot);
  color: var(--muted);
  padding: 2rem 0 2.4rem;
  text-align: center;
  font-size: 0.95rem;
}
.brand-foot { justify-content: center; margin: 0 auto 0.65rem; }
.brand-foot img { width: min(168px, 58vw); }
.site-foot a { color: var(--yellow); font-weight: 700; }
.foot-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin: 16px 0 12px;
  font-size: 0.88rem;
}
.foot-copy { margin-top: 8px; font-size: 0.82rem; color: #8a8496; }

@media (max-width: 839px) {
  .reviews {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 88%;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding: 4px 2px 16px;
    scrollbar-width: thin;
  }
  .review { scroll-snap-align: start; }
  .reviews-nav { display: flex; align-items: center; justify-content: center; gap: 28px; margin-top: 14px; }
  .reviews-nav button {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 2px solid #111;
    border-radius: 50%;
    background: #fff;
    color: #c2185b;
    font-size: 1.25rem;
  }
  .reviews-nav button:disabled { opacity: 0.35; cursor: default; }
  .reviews-hint { text-align: center; font-size: 0.8rem; color: #5a5a64; }
  .hero-vsl-btn, .section-offer-btn, .hero-buy { width: 100%; }
  .hero-visual { border-radius: 28px 28px 0 0; }
}

@media (max-width: 639px) {
  .offer-panel { padding: 22px 18px; border-radius: 20px; }
  .offer-media img { max-width: 200px; }
  .hero-product { width: min(64%, 220px); }
  .proof-stars .star { width: 36px; height: 36px; }
}

@media (min-width: 720px) {
  .cards, .decades { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 960px) {
  .decades, .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .offer-panel { grid-template-columns: 1fr 1fr; align-items: center; gap: 12px 32px; }
  .offer-buy { width: 100%; }
}

#decadas,
#como,
#momentos,
#depoimentos,
#oferta,
#garantia,
#duvidas {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}

@media (prefers-reduced-motion: reduce) {
  .player-disc, .offer-cta::before, .hero-product, .offer-check, .offer-check path { animation: none; }
  .offer-check path { stroke-dashoffset: 0; }
  html { scroll-behavior: auto; }
}
