@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 {
  --cafe: #3A2118;
  --leather: #5C3420;
  --gold: #D99A3E;
  --sand: #F3E2C0;
  --cream: #FFF7E8;
  --night: #2B160E;
  --purple: #2B160E;
  --magenta: #3A2118;
  --cyan: #5C3420;
  --yellow: #F5C45B;
  --navy: #2B160E;
  --paper: #FFF7E8;
  --foot: #221109;
  --panel: #3A2118;
  --line: rgba(217, 154, 62, 0.32);
  --text: #FFF7E8;
  --muted: #E9C787;
  --ink: #2B1B12;
  --ink-text: #2B1B12;
  --accent: #D99A3E;
  --accent-bright: #F5C45B;
  --accent-deep: #D9362B;
  --ok: #20B83A;
  --cta: #20B83A;
  --cta-hover: #1A9930;
  --cherry: #D9362B;
  --radius: 10px;
  --btn-radius: 8px;
  --max: 1180px;
  --pad: 20px;
  --font: Inter, system-ui, "Segoe UI", sans-serif;
  --hill-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M0 52C180 14 300 14 460 52C620 84 760 84 920 52C1080 18 1240 18 1440 50V80H0Z'/%3E%3C/svg%3E");
  --hill-mask-b: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath fill='%23000' d='M0 46C140 78 260 78 400 40C560 6 740 8 900 48C1060 84 1220 80 1440 44V80H0Z'/%3E%3C/svg%3E");
}

*,
*::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: 17px;
  line-height: 1.65;
  -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.02em; line-height: 1.16; overflow-wrap: break-word; }
h1 { font-size: clamp(1.5rem, 5.2vw, 3.2rem); }
h2 { font-size: clamp(1.48rem, 4.4vw, 2.55rem); text-wrap: balance; }
h3 { font-size: 1.16rem; font-weight: 750; }
em {
  font-style: normal;
  color: var(--gold);
}
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: 56px 0; }
/* Only two organic transitions; each stays inside its section's bottom padding. */
.hero::after,
#depoimentos::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 30px;
  background: var(--wave-to);
  -webkit-mask: var(--hill-mask) center / 100% 100% no-repeat;
  mask: var(--hill-mask) center / 100% 100% no-repeat;
  pointer-events: none;
}

.band-purple { background: var(--purple); color: var(--text); }
.band-yellow { background: var(--sand); color: var(--ink); }
.band-magenta { background: var(--magenta); color: var(--text); }
.band-cyan { background: var(--leather); color: var(--text); }
.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-cream { background: var(--cream); color: var(--ink); }
.band-sand { background: var(--sand); color: var(--ink); }

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

.band-cream p,
.band-sand p,
.band-yellow p { color: #4A3728; }
.band-cream h2,
.band-cream h3,
.band-sand h2,
.band-sand h3,
.band-yellow h2,
.band-yellow h3 { color: var(--ink); }
.band-cream .eyebrow,
.band-sand .eyebrow,
.band-yellow .eyebrow { color: #8A3F24; }
.band-magenta p,
.band-purple p,
.band-navy p,
.band-night p,
.band-cyan p { color: rgba(245, 234, 216, 0.92); }
.band-magenta p.dec-year,
.band-magenta p.dec-year span {
  color: #3A2518;
}

.band-navy .cards li,
.band-cyan .cards li {
  background: #FFF9EF;
  color: var(--ink);
  border: 1px solid rgba(208, 164, 92, 0.45);
}
.band-navy .cards p,
.band-cyan .cards p { color: #4A3728; }
.band-navy .cards h3,
.band-cyan .cards h3 { color: #3A2518; }
.band-magenta .decades article {
  background: #FFF9EF;
  border-color: rgba(208, 164, 92, 0.5);
  color: var(--ink);
}
.band-magenta .decades article > p:not(.dec-year) { color: #4A3728; }
.band-cream .steps li {
  background: #FFF9EF;
  border-color: rgba(87, 56, 34, 0.18);
  color: var(--ink);
}
.band-cream .steps p { color: #4A3728; }
.band-purple .steps li {
  background: rgba(0, 0, 0, 0.22);
  border-color: rgba(208, 164, 92, 0.35);
}

.block-head { max-width: 640px; margin: 0 auto 28px; text-align: center; }
.block-head > p:not(.eyebrow) { margin-top: 12px; font-size: 1.08rem; line-height: 1.65; }
.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: 58px;
  padding: 15px 26px;
  border-radius: var(--btn-radius);
  font-weight: 800;
  font-size: 1.02rem;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--yellow);
  color: #1E1712;
  box-shadow: 0 0 0 2px #21150F, 0 8px 0 #8A3F24;
}
.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(--cherry); }
.urgency-inner { display: flex; align-items: center; justify-content: center; min-height: 34px; padding: 7px 0; text-align: center; }
.urgency-inner p {
  color: #fff;
  font-size: clamp(0.7rem, 2.8vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.site-head {
  background: #21150F;
  border-bottom: 1px solid rgba(208, 164, 92, 0.22);
}
.site-head-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 64px;
}
.site-head .brand { min-width: 0; }
.site-head .brand img { width: min(148px, 52vw); }
.site-nav {
  display: none;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #F5EAD8;
}
.site-nav a:hover { color: var(--yellow); }
.site-cta {
  display: none;
  flex-shrink: 0;
  min-height: 50px;
  padding: 10px 14px;
  font-size: 0.82rem;
  white-space: nowrap;
}
.site-cta .cta-full { display: none; }
.site-cta .cta-short { display: inline; }
@media (min-width: 840px) {
  .site-head-inner { justify-content: space-between; }
  .site-nav { display: flex; }
  .site-cta { display: inline-flex; }
  .site-cta .cta-full { display: inline; }
  .site-cta .cta-short { display: none; }
  .site-cta { min-height: 50px; padding: 12px 18px; font-size: 0.9rem; }
  .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: #21150F;
  background-image:
    linear-gradient(180deg, rgba(33, 21, 15, 0.35) 0%, rgba(33, 21, 15, 0.12) 100%),
    radial-gradient(ellipse at 50% 0%, rgba(208, 164, 92, 0.14), transparent 58%);
}
.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.12rem;
  line-height: 1.7;
  max-width: 40rem;
  margin-inline: auto;
  padding-inline: 2px;
  color: #F5EAD8;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
  text-wrap: pretty;
  hyphens: none;
}
.hero-copy .lead strong {
  color: #FFF9EF;
  font-weight: 800;
}
.hero-copy .lead .hero-name { white-space: nowrap; }
.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.98rem;
  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(--gold);
  border-bottom: 0;
  border-radius: 48px 48px 0 0;
  background: radial-gradient(ellipse at 50% 90%, rgba(87, 56, 34, 0.55), transparent 48%), #21150F;
  box-shadow: 0 -8px 36px rgba(33, 21, 15, 0.45);
}
.hero-glow {
  position: absolute;
  inset: 12% 8% 28%;
  background: radial-gradient(circle, rgba(208, 164, 92, 0.18), 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: 50%;
  right: auto;
  bottom: auto;
  z-index: 3;
  width: min(52%, 220px);
  max-width: 220px;
  height: auto;
  display: block;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-6deg);
  transform-origin: 50% 50%;
  filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.5));
  animation: hero-product-sway 2.8s ease-in-out infinite alternate;
}
@keyframes hero-product-sway {
  from { transform: translate(-50%, -50%) rotate(-8deg); }
  to { transform: translate(-50%, -50%) rotate(8deg); }
}
.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(87, 56, 34, 0.4), 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 {
  margin: 0;
  color: #E7C98F;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}
.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; }
.hero-micro-note {
  margin: 2px 0 0;
  color: #C9B89A;
  font-size: 0.7rem;
  line-height: 1.4;
  text-align: center;
}

.rating-badge {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px 9px 10px;
  border: 1px solid rgba(208, 164, 92, 0.38);
  border-radius: 999px;
  background: #FFF9EF;
  color: #1E1712;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}
.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 #FFF9EF;
  border-radius: 50%;
  background: #E8DDCB;
  object-fit: cover;
}
.rating-copy { text-align: left; }
.rating-copy p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}
.rating-copy strong { font-size: 1rem; font-weight: 800; color: #1E1712; }
.stars { color: #C8963A; font-size: 0.72rem; letter-spacing: 0.06em; line-height: 1; }
.rating-copy small {
  display: block;
  margin-top: 3px;
  color: #573822;
  font-size: 0.75rem;
  font-weight: 500;
}

.player {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 0 16px 16px;
  overflow: hidden;
  text-align: center;
  border: 2px solid #21150F;
  border-radius: 28px;
  background: #FFF9EF;
  box-shadow: 0 0 0 2px var(--gold), 0 10px 0 #573822;
}
.player-brand {
  margin: 0 -16px 14px;
  padding: 14px 16px 12px;
  background: #3A2518;
}
.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(208, 164, 92, 0.18), transparent 62%);
  box-shadow:
    0 0 0 2px rgba(87, 56, 34, 0.28),
    0 10px 24px rgba(33, 21, 15, 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));
}
@media (max-width: 839px) {
  .player-platter::before { display: none; }
  .player-disc img { filter: none; }
}
@keyframes vinyl { to { transform: rotate(1turn); } }
.player-decade {
  margin: 0 auto;
  max-width: 18em;
  color: #1E1712;
  font-weight: 800;
  font-size: clamp(1.12rem, 4.2vw, 1.32rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-wrap: balance;
}
.band-cream .player-decade,
.band-purple .player-decade { color: #1E1712; }
.player-hint { margin: 0.2rem 0 0.85rem; color: #573822; font-size: 0.98rem; }
.band-cream .player-hint,
.band-purple .player-hint { color: #573822; }
.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: #1E1712;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 2px #21150F, 0 6px 0 #8A3F24;
}
.ctrl-play:active { transform: translateY(3px); box-shadow: 0 0 0 2px #21150F, 0 3px 0 #8A3F24; }
.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; }

.video-showcase {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  background: #1E1712;
  box-shadow: 0 16px 40px rgba(58, 33, 24, 0.28);
  border: 3px solid var(--gold);
}
.video-showcase-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 640px) {
  .video-showcase { max-width: 560px; aspect-ratio: 16 / 9; }
}

#ouvir {
  overflow: hidden;
  padding-bottom: 0;
}
#recebe {
  overflow: hidden;
}
.vsl-person {
  position: relative;
  z-index: 1;
  width: min(92%, 520px);
  margin: 12px auto 0;
  line-height: 0;
}
.vsl-person img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  object-position: center 30%;
}
.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: 1rem; line-height: 1.5; }
.band-sand .receive-list li,
.band-yellow .receive-list li {
  background: #FFF9EF;
  color: var(--ink);
  border: 1px solid rgba(87, 56, 34, 0.16);
}
.band-sand .receive-list p,
.band-yellow .receive-list p { color: #4A3728; }
.band-sand .receive-list h3,
.band-yellow .receive-list h3 { color: #3A2518; }
@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: #3A2518;
  color: var(--gold);
  box-shadow: 3px 3px 0 var(--gold);
}
.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: 1rem; line-height: 1.55; }
.cards .card-head + p { margin-top: 10px; }
.decades article { padding: 22px 16px 20px; }
.dec-year {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 0 0 10px;
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #3A2518;
  line-height: 0.95;
  text-transform: uppercase;
}
.dec-anos {
  font-size: clamp(1.15rem, 3.6vw, 1.45rem);
  letter-spacing: 0.16em;
  text-indent: 0.16em;
  line-height: 1.1;
}
.dec-num {
  font-size: clamp(2.15rem, 7.5vw, 2.85rem);
  letter-spacing: 0.04em;
  line-height: 1;
  text-shadow: none;
}
.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-panel {
  width: 100%;
  max-width: 560px;
  margin: 16px auto 0;
  padding: 4px;
  border-radius: 18px;
  background: #3A2518;
  border: 1px solid rgba(208, 164, 92, 0.4);
  box-shadow: 0 10px 0 rgba(33, 21, 15, 0.22);
  overflow: hidden;
}
.devices {
  display: grid;
  grid-template-columns: 1fr;
  list-style: none;
  padding: 0;
  margin: 0;
}
.devices li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 10px 14px;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(208, 164, 92, 0.22);
  font-weight: 700;
  font-size: 1rem;
  color: #FFF9EF;
  background: transparent;
}
.devices li:last-child { border-bottom: 0; }
.devices-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--yellow);
  color: #111;
}
.devices svg { width: 18px; height: 18px; display: block; }
.compat-note { margin: 16px auto 0; max-width: 34rem; text-align: center; font-size: 0.9rem; }
@media (min-width: 560px) {
  .devices { grid-template-columns: 1fr 1fr; }
  .devices li {
    border-right: 1px solid rgba(208, 164, 92, 0.22);
  }
  .devices li:nth-child(2n) { border-right: 0; }
  .devices li:nth-last-child(1):nth-child(odd) {
    grid-column: 1 / -1;
    justify-content: center;
    border-right: 0;
  }
}
@media (min-width: 840px) {
  .devices-panel { max-width: 920px; }
  .devices {
    grid-template-columns: repeat(5, 1fr);
  }
  .devices li {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-height: 108px;
    padding: 16px 10px;
    text-align: center;
    border-right: 1px solid rgba(208, 164, 92, 0.22);
    border-bottom: 0;
  }
  .devices li:last-child { border-right: 0; }
  .devices li:nth-last-child(1):nth-child(odd) {
    grid-column: auto;
    justify-content: center;
  }
}

.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: #FFF9EF;
  border: 2px solid #3A2518;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 6px 6px 0 #573822;
}
.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(--gold);
  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: #6B5848; font-size: 0.82rem; 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: 1rem;
  color: #3A2A20;
  line-height: 1.65;
}
.reviews-nav { display: none; }
.reviews-hint { color: #5a5a64; }
.reviews-source {
  max-width: 640px;
  margin: 24px auto 0;
  padding: 16px 20px;
  border: 1px solid #E7C98F;
  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(--gold);
  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: #8A3F24;
  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: #1E1712; font-size: 1rem; }
.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));
}
@media (max-width: 839px) {
  .guarantee-seal { filter: none; }
}
.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: #FFF9EF;
  border: 2px solid #21150F;
  border-radius: 14px;
  box-shadow: 4px 4px 0 var(--gold);
  overflow: hidden;
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 56px;
  padding: 18px 16px 18px 18px;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-size: 1.06rem;
  line-height: 1.35;
  color: #1E1712;
  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: #3A2A20;
  font-size: 1.04rem;
  line-height: 1.6;
  text-align: left;
}

.site-foot {
  background: var(--foot);
  color: var(--muted);
  padding: 1.4rem 0 1.6rem;
  text-align: center;
  font-size: 0.95rem;
}
.brand-foot { justify-content: center; margin: 0 auto 0.55rem; }
.brand-foot img { width: min(140px, 48vw); }
.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-legal {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.foot-legal p {
  margin: 0;
  font-size: 0.62rem;
  line-height: 1.4;
  color: #9a8568;
  text-align: center;
}
.foot-copy { margin-top: 10px; font-size: 0.72rem; color: #C4A574; }

@media (max-width: 839px) {
  .reviews {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .review-body { padding: 12px 12px 14px; }
  .who-row { gap: 8px; margin-bottom: 8px; }
  .who-row > img { width: 40px; height: 40px; }
  .who-row h3 { font-size: 0.8125rem; gap: 4px 6px; }
  .who-row small { font-size: 0.72rem; }
  .review-verified { font-size: 0.6rem; }
  .review-verified svg { width: 13px; height: 13px; }
  .review-body .review-text { font-size: 0.85rem; line-height: 1.5; }
  .hero-vsl-btn, .section-offer-btn, .hero-buy { width: 100%; }
  .hero-visual { border-radius: 28px 28px 0 0; }
}
@media (max-width: 400px) {
  .reviews { gap: 8px; }
  .review-body { padding: 10px 10px 12px; }
  .who-row > img { width: 34px; height: 34px; }
  .review-body .review-text { font-size: 0.8rem; }
}

@media (max-width: 639px) {
  .offer-panel { padding: 22px 18px; border-radius: 20px; }
  .offer-media img { max-width: 200px; }
  .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%; }
}

/* Keep section layout measurable so anchor navigation stays stable. */

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

/* Compact Waffle em Casa layout. Player and carousel interaction hooks are unchanged. */
.hero, .section { margin-bottom: 0; }
.btn { line-height: 1.35; text-align: center; }
.btn-primary,
.offer-cta .btn-primary {
  background: var(--cta);
  color: #fff;
  border: 1px solid #39C43C;
  box-shadow: 0 4px 0 #208622, 0 8px 22px rgba(45, 187, 47, 0.16);
}
.btn-primary:hover,
.offer-cta .btn-primary:hover { background: var(--cta-hover); }
.urgency-bar { background: var(--cherry); }
.urgency-inner { min-height: 38px; }
.urgency-inner p { color: #fff; font-size: 0.875rem; letter-spacing: 0.025em; }
.site-head-inner { justify-content: space-between; min-height: 76px; }
.site-head .brand img { width: 148px; }
.site-cta { display: inline-flex; min-height: 48px; font-size: 0.875rem; padding: 10px 14px; }
.hero { padding: 26px 0 64px; }
.hero-brand { display: flex; justify-content: center; margin-bottom: 32px; }
.hero-brand .brand img { width: clamp(200px, 22vw, 260px); }
.hero-layout {
  display: grid;
  grid-template-areas: "copy" "visual";
  gap: 28px;
  max-width: var(--max);
}
.hero-copy { grid-area: copy; padding: 0; }
.hero h1 { font-size: clamp(2rem, 5.4vw, 3.35rem); text-shadow: none; text-wrap: balance; }
.hero-copy .lead { margin-top: 20px; font-size: 1.0625rem; line-height: 1.7; text-shadow: none; padding: 0; }
.hero-visual {
  grid-area: visual;
  display: grid;
  margin: 0 auto;
  width: 100%;
  max-width: 420px;
  border: 1px solid rgba(208, 164, 92, 0.42);
  border-radius: 22px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  background: #21150F;
}
.hero-stage {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  max-height: none;
  min-height: 0;
}
.hero-stage::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 28%;
  background: linear-gradient(180deg, rgba(33, 21, 15, 0) 0%, rgba(33, 21, 15, 0.5) 55%, #21150F 100%);
  pointer-events: none;
}
.hero-action-panel .rating-badge {
  position: relative;
  z-index: 4;
  margin: -36px 0 14px;
  width: fit-content;
  max-width: calc(100% - 8px);
}
.hero-device {
  mask-image: none;
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 28%;
}
.hero-product {
  left: 50%;
  top: 50%;
  right: auto;
  bottom: auto;
  display: block;
  width: min(48%, 180px);
  max-width: 180px;
  z-index: 3;
  transform: translate(-50%, -50%) rotate(-6deg);
  transform-origin: 50% 50%;
  animation: hero-product-sway 2.8s ease-in-out infinite alternate;
}
.hero-action-panel {
  display: grid;
  justify-items: center;
  gap: 0;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 4px 18px 20px;
  z-index: 2;
  background: #21150F;
  border-top: 0;
}
.hero-action-panel::before { content: none; }
.hero-buy {
  width: 100%;
  max-width: none;
  gap: 8px;
  min-width: 0;
}
.hero-vsl-btn {
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
  padding-inline: 16px;
}
.hero-price { color: var(--gold); min-width: 0; flex-wrap: wrap; }
.hero-price strong { font-size: clamp(2.4rem, 9vw, 3.1rem); }
.hero-price span, .hero-price small { font-size: 1.05rem; font-weight: 700; }
.hero-price-label { font-size: 0.875rem; }
#ouvir { padding-bottom: 48px; }
.preview-note { text-align: center; font-size: 1.0625rem; margin-top: 26px; }
.contents-layout { display: grid; gap: 24px; max-width: 720px; }
.contents-copy { text-align: center; }
.contents-lead { margin-top: 16px; font-size: 1.125rem; }
.artists { list-style: none; padding: 0; margin: 24px 0 12px; display: grid; gap: 8px; }
.artists li { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: clamp(1.12rem, 3.5vw, 1.35rem); font-weight: 700; color: #3A2518; }
.artist-verified {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
  color: #3897f0;
  transform-origin: 50% 50%;
  animation: artist-check-pop 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) both, artist-check-live 2.4s ease-in-out 0.7s infinite;
}
.artists li:nth-child(2) .artist-verified { animation-delay: 0.12s, 0.82s; }
.artists li:nth-child(3) .artist-verified { animation-delay: 0.24s, 0.94s; }
.artists li:nth-child(4) .artist-verified { animation-delay: 0.36s, 1.06s; }
@keyframes artist-check-pop {
  0% { transform: scale(0.2) rotate(-22deg); opacity: 0; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
@keyframes artist-check-live {
  0%, 100% { transform: scale(1) rotate(0deg); }
  40% { transform: scale(1.14) rotate(-8deg); }
  70% { transform: scale(1.06) rotate(5deg); }
}
.artists-more { font-weight: 700; margin-bottom: 14px; }
.how-layout { display: grid; gap: 28px; align-items: end; }
.vsl-person {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  line-height: 0;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
}
.vsl-person::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(245, 234, 216, 0) 0%, var(--cream) 100%);
  pointer-events: none;
}
.vsl-person img {
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 18%;
}
.steps { grid-template-columns: 1fr; gap: 24px; }
.band-cream .steps li { padding: 0; border: 0; background: transparent; text-align: left; }
.steps h3 { font-size: 1.15rem; }
.steps p { font-size: 1.0625rem; margin-top: 4px; }
.compat-note {
  max-width: 520px;
  margin: 32px auto 0;
  padding: 20px 16px 16px;
  border: 1px solid #D0A45C55;
  border-radius: 16px;
  background: #FFF9EF;
}
.compat-note .compat-title {
  margin: 0 0 14px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 800;
  color: #3A2518;
}
.compat-note .devices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.compat-note .devices li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid #D8C6AA;
  border-radius: 12px;
  background: #fff;
  color: #3A2518;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.2;
}
.compat-note .devices li:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: calc((100% - 10px) / 2);
  justify-self: center;
}
.compat-note .devices-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--gold);
  color: #21150F;
}
.compat-note .devices svg { width: 18px; height: 18px; }
#depoimentos { padding-bottom: 72px; }
.proof-stars { filter: none; margin-bottom: 12px; }
.proof-stars .star { width: 28px; height: 28px; }
.review { border: 1px solid #D8C6AA; border-radius: 14px; box-shadow: none; height: 100%; }
.review-body { padding: 22px; }
.who-row { align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.who-row h3 { font-size: 1.125rem; gap: 8px; }
.who-row h3 > span:first-child { width: 100%; }
.who-row small { font-size: 0.9375rem; line-height: 1.5; }
.review-verified { color: #725324; font-size: 0.8125rem; white-space: normal; line-height: 1.4; }
.review-verified svg { color: #98753D; }
.who-row .mini { filter: none; }
.who-row .mini .star { width: 20px; height: 20px; }
.review-body .review-text { font-size: 1.0625rem; }
.reviews-hint { font-size: 0.9375rem; }
.reviews-source { background: transparent; box-shadow: none; border: 0; padding: 0; max-width: 680px; }
.reviews-source .reviews-source-description { font-size: 0.9375rem; color: #594733; border: 0; padding-top: 0; margin-top: 8px; }
.reviews-source .reviews-source-title { font-size: 1rem; }
.reviews-source-brand { font-size: 0.9375rem; }
.reviews-desktop-hint { display: none; }
.offer-panel { background: #FFF9EF; border: 1px solid #BFA16D; border-radius: 18px; box-shadow: none; padding: 28px; }
.offer-media img { max-width: 260px; }
.offer-media h3 { color: #3A2518; font-size: 1.25rem; }
.offer-list { margin-top: 12px; gap: 10px; }
.offer-list b { font-size: 1.0625rem; font-weight: 700; }
.offer-list .check { color: #896224; }
.offer-old { margin: 10px 0 0; color: #8A7460; font-size: 0.9375rem; }
.offer-old s { color: #8A7460; text-decoration-color: #C45A3A; }
.offer-price { color: #805A20; margin: 8px 0 20px; min-width: 0; }
.offer-price strong { font-size: clamp(3.2rem, 14vw, 4.6rem); }
.offer-price span, .offer-price small { font-size: 1.25rem; font-weight: 700; }
.offer-cta { overflow: visible; padding: 0; background: transparent; }
.offer-cta::before { content: none; }
.offer-panel p.offer-micro { color: #594733; font-size: 0.9375rem; line-height: 1.6; margin-top: 16px; font-weight: 400; }
.offer-price-label { font-size: 1rem; }
#garantia { padding-top: 28px; padding-bottom: 28px; }
#garantia .guarantee { margin-bottom: 0; border-bottom: 0; padding: 12px 0; }
#duvidas { padding-top: 56px; }
.guarantee { display: flex; align-items: center; gap: 22px; padding: 30px 0; margin-bottom: 44px; border-bottom: 1px solid #D0A45C40; text-align: left; }
.guarantee-seal { width: 84px; flex-shrink: 0; margin: 0; filter: none; }
.guarantee-copy { gap: 8px; max-width: none; }
.guarantee h2 { font-size: clamp(1.35rem, 3.5vw, 1.7rem); color: var(--gold); }
.guarantee-lead { font-size: 1rem; }
.faq details { background: transparent; border: 1px solid #D0A45C55; border-radius: 10px; box-shadow: none; }
.faq summary { color: #FFF9EF; padding: 20px; }
.faq summary::after { background-color: transparent; border: 0; background-image: linear-gradient(#D0A45C, #D0A45C), linear-gradient(#D0A45C, #D0A45C); }
.faq details[open] summary { background: transparent; color: var(--gold); }
.faq details[open] summary::after { background-image: linear-gradient(#D0A45C, #D0A45C); }
.faq p { padding: 0 20px 20px; color: #F5EAD8; }
.site-foot { border-top: 1px solid #D0A45C22; }
.player-wave:focus-within { outline: 3px solid #805A20; outline-offset: 4px; border-radius: 6px; }

@media (min-width: 840px) {
  .hero-layout { grid-template-columns: 1fr 1fr; grid-template-areas: "copy visual"; column-gap: 44px; row-gap: 24px; align-items: center; }
  .hero-copy { text-align: left; }
  .hero h1 { text-wrap: initial; }
  .hero-visual { align-self: start; max-width: 480px; }
  .hero-stage { min-height: 0; }
  .hero-device { height: auto; object-fit: cover; border-radius: 0; mask-image: none; }
  .hero-action-panel { padding: 0 22px 22px; }
  .how-layout { grid-template-columns: 1fr 1fr; max-width: 940px; margin: auto; gap: 48px; }
  .reviews { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
  .offer-panel { grid-template-columns: 1fr 1.15fr; gap: 32px; align-items: center; }
}
@media (max-width: 839px) {
  .hero-stage { max-height: none; }
  .hero-device { max-height: none; object-fit: cover; }
  .offer-panel { padding: 24px 18px; }
  .offer-media { display: flex; align-items: center; gap: 14px; text-align: left; }
  .offer-media img { width: 112px; height: auto; object-fit: contain; flex-shrink: 0; margin: 0; }
  .offer-media h3 { margin: 0; font-size: 1.1rem; }
  .offer-buy { width: 100%; }
  .offer-list { margin: 18px 0; }
}
@media (max-width: 380px) {
  :root { --pad: 16px; }
  .site-head .brand img { width: 118px; }
  .site-cta { padding-inline: 10px; font-size: 0.8125rem; }
  .btn:not(.site-cta) { padding-inline: 12px; font-size: 0.9375rem; }
  .hero h1 { font-size: 1.9rem; }
  .avatar-stack img { width: 30px; height: 30px; }
  .rating-copy strong { font-size: 0.9375rem; }
  .guarantee { gap: 14px; }
  .guarantee-seal { width: 64px; }
  .review-body { padding: 18px; }
}

/* ===== Tema Waffle claro (varejo de cozinha) ===== */
:root {
  --w-bg: #FFF8E8;
  --w-butter: #FFE8A8;
  --w-orange: #F39A32;
  --w-coral: #E34F3F;
  --w-text: #30201B;
  --w-muted: #6B5448;
  --w-card: #FFFCF7;
  --w-border: #E7B969;
  --gold: #F39A32;
  --cherry: #E34F3F;
  --cloud: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 40' preserveAspectRatio='none'%3E%3Cg fill='%23000'%3E%3Ccircle cx='0' cy='40' r='24'/%3E%3Ccircle cx='60' cy='40' r='32'/%3E%3Ccircle cx='120' cy='40' r='22'/%3E%3Ccircle cx='180' cy='40' r='30'/%3E%3Ccircle cx='240' cy='40' r='24'/%3E%3Crect y='30' width='240' height='10'/%3E%3C/g%3E%3C/svg%3E");
  --cloud-h: clamp(18px, 3.4vw, 36px);
}
body { background: var(--w-bg); color: var(--w-text); }

/* Fundos das seções (70% claro) */
.hero { background: var(--w-bg); background-image: radial-gradient(ellipse at 80% 0%, rgba(243,154,50,.12), transparent 55%); --wave-to: var(--w-card); }
#ouvir { background: var(--w-card); --wave-to: var(--w-butter); }
#recebe { background: var(--w-butter); --wave-to: var(--w-bg); }
#como { background: var(--w-bg); --wave-to: var(--w-card); }
#depoimentos { background: var(--w-card); --wave-to: var(--w-bg); }
#garantia { background: var(--w-bg); --wave-to: var(--w-butter); }
#oferta { background: var(--w-butter); --wave-to: var(--w-card); }
#duvidas { background: var(--w-card); --wave-to: var(--w-bg); }
.site-foot { background: var(--w-bg); border-top: 0; }

/* Divisor em nuvem com contorno caramelo, responsivo */
.hero, .section { padding-bottom: calc(56px + var(--cloud-h)); }
#duvidas { padding-bottom: calc(48px + var(--cloud-h)); }
.hero::after, .section::after,
.hero::before, .section::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: var(--cloud-h);
  pointer-events: none;
  -webkit-mask: var(--cloud) center bottom / clamp(150px, 20vw, 240px) 100% round;
  mask: var(--cloud) center bottom / clamp(150px, 20vw, 240px) 100% round;
}
.hero::before, .section::before { bottom: 3px; background: rgba(231,185,105,.55); z-index: 1; }
.hero::after, .section::after { bottom: -1px; background: var(--wave-to); z-index: 2; inset: auto 0 -1px; }

/* Tipografia */
h1, h2, h3,
.band-cream h2, .band-sand h2, .band-paper h2, .band-navy h2, .band-magenta h2,
.hero h1 { color: var(--w-text); text-shadow: none; }
.section p, .band-cream p, .band-sand p, .band-paper p,
.band-navy p, .band-magenta p, .hero-copy .lead { color: var(--w-muted); text-shadow: none; }
.hero-copy .lead strong { color: var(--w-text); }
.urgency-bar { background: var(--w-coral); }

/* Hero card */
.hero-visual { background: var(--w-card); border: 1px solid var(--w-border); box-shadow: 0 18px 40px rgba(227,79,63,.14); }
.hero-stage::after { background: linear-gradient(180deg, rgba(255,252,247,0) 0%, rgba(255,252,247,.6) 55%, var(--w-card) 100%); }
.hero-action-panel { background: var(--w-card); }
.hero-price-label { color: var(--w-text); }
.hero-price, .hero-price strong, .hero-price span, .hero-price small { color: var(--w-coral); }
.hero-micro-note { color: var(--w-muted); }
.rating-badge { background: #fff; border-color: var(--w-border); box-shadow: 0 6px 16px rgba(48,32,27,.12); }
.stars { color: var(--w-orange); }

/* Vídeo */
.video-showcase { border-color: var(--w-border); box-shadow: 0 16px 36px rgba(243,154,50,.2); background: #fff; }

/* Possibilidades + passos */
.artists li { color: var(--w-text); }
.artist-verified { color: var(--w-orange); }
.vsl-person::after { background: linear-gradient(180deg, rgba(255,248,232,0) 0%, var(--w-bg) 100%); }

/* Garantia */
#garantia .guarantee { border: 0; }
.guarantee h2 { color: var(--w-coral); }

/* Oferta */
.offer-panel { background: var(--w-card); border: 2px solid var(--w-border); box-shadow: 0 18px 40px rgba(227,79,63,.12); }
.offer-media h3 { color: var(--w-text); }
.offer-list b { color: var(--w-text); }
.offer-list .check { color: var(--w-orange); }
.offer-old, .offer-old s { color: #9A8578; }
.offer-price, .offer-price strong, .offer-price span, .offer-price small { color: var(--w-coral); }
.offer-price-label { color: var(--w-text); }
.offer-panel p.offer-micro { color: var(--w-muted); }

/* FAQ claro */
.faq details { background: #fff; border: 1px solid var(--w-border); }
.faq summary { color: var(--w-text); }
.faq details[open] summary { color: var(--w-coral); }
.faq summary::after { background-image: linear-gradient(var(--w-orange), var(--w-orange)), linear-gradient(var(--w-orange), var(--w-orange)); }
.faq details[open] summary::after { background-image: linear-gradient(var(--w-orange), var(--w-orange)); }
.faq p { color: var(--w-muted); }

/* Rodapé */
.foot-legal p { color: #9A8578; }
.foot-copy { color: var(--w-muted); }

/* ===== Depoimentos com foto ===== */
.reviews { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; overflow: visible; }
.review { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--w-border); border-radius: 18px; box-shadow: 0 8px 22px rgba(48,32,27,.08); overflow: hidden; height: 100%; }
.review-photo { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; background: var(--w-bg); }
.review-photo img { width: 100%; height: 100%; object-fit: cover; }
.review-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.who-row { display: flex; align-items: center; gap: 10px; margin: 0; }
.who-row > img { width: 44px; height: 44px; border: 2px solid var(--w-orange); flex-shrink: 0; }
.who-meta { min-width: 0; }
.who-row h3 { display: flex; align-items: center; gap: 6px; flex-wrap: nowrap; font-size: 1rem; margin: 0; color: var(--w-text); }
.who-row h3 > span:first-child { width: auto; }
.who-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.review-verified { display: inline-flex; align-items: center; gap: 3px; color: #1E9E4A; font-size: 0.72rem; font-weight: 700; white-space: nowrap; flex-shrink: 0; }
.review-verified svg { width: 15px; height: 15px; color: #1E9E4A; }
.who-row small { font-size: 0.82rem; color: var(--w-muted); line-height: 1.3; }
.who-row .mini { display: flex; color: var(--w-orange); filter: none; margin-top: 3px; }
.who-row .mini .star { width: 15px; height: 15px; }
.review-body .review-text { margin: 0; font-size: 0.98rem; line-height: 1.55; color: var(--w-text); }
.reviews-nav, .reviews-desktop-hint { display: none !important; }

@media (max-width: 839px) {
  .reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .review { border-radius: 14px; }
  .review-photo { aspect-ratio: 1 / 1; }
  .review-body { padding: 10px 10px 12px; gap: 7px; }
  .who-row { gap: 7px; }
  .who-row > img { width: 30px; height: 30px; border-width: 1.5px; }
  .who-row h3 { font-size: 0.8rem; gap: 3px; }
  .rv-label { display: none; }
  .review-verified svg { width: 13px; height: 13px; }
  .who-row small { font-size: 0.68rem; }
  .who-row .mini .star { width: 11px; height: 11px; }
  .review-body .review-text { font-size: 0.8rem; line-height: 1.45; }
}
@media (max-width: 360px) {
  .reviews { gap: 8px; }
  .review-body { padding: 8px 8px 10px; }
  .review-body .review-text { font-size: 0.76rem; }
}

/* ===== Header (não fixo — regra sem sticky CTA) ===== */
.w-head { background: #fff; border-bottom: 1px solid rgba(231,185,105,.5); box-shadow: 0 2px 10px rgba(48,32,27,.05); }
.w-head .site-head-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 64px; }
.w-head .brand img { width: clamp(112px, 30vw, 150px); filter: none; }
.w-head-right { display: flex; align-items: center; gap: 14px; }
.w-secure { display: inline-flex; align-items: center; gap: 7px; color: #1E9E4A; }
.w-secure svg { width: 24px; height: 24px; flex-shrink: 0; }
.w-secure span { display: grid; line-height: 1.15; }
.w-secure b { font-size: 0.8rem; color: var(--w-text); }
.w-secure small { font-size: 0.7rem; color: var(--w-muted); }
@media (max-width: 479px) {
  .w-head .site-head-inner { min-height: 56px; }
  .w-secure { gap: 5px; }
  .w-secure svg { width: 20px; height: 20px; }
  .w-secure b { font-size: 0.72rem; }
  .w-secure small { font-size: 0.62rem; }
}
.hero { padding-top: 28px; }
.hero-brand { display: none; }

/* ===== Animações leves (só transform/opacity, respeitam reduced-motion) ===== */
@media (prefers-reduced-motion: no-preference) {
  .js-reveal .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.2,1); }
  .js-reveal .reveal.is-in { opacity: 1; transform: none; }
  .hero-vsl-btn, #purchase-button { animation: w-pulse 2.6s ease-in-out infinite; }
  .btn-primary { transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
  .btn-primary:hover { transform: translateY(-2px); }
  .review { transition: transform .2s ease, box-shadow .2s ease; }
  .review:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(48,32,27,.12); }
}
@keyframes w-pulse {
  0%, 100% { box-shadow: 0 4px 0 #168a2b, 0 0 0 0 rgba(32,184,58,.45); }
  50% { box-shadow: 0 4px 0 #168a2b, 0 0 0 10px rgba(32,184,58,0); }
}
