/* ============================================================
   +150 BRINCADEIRAS SEM TELA — v2
   ============================================================ */

:root {
  --bg: #fffaf6;
  --cream: #fff4eb;
  --peach: #ffe9dc;
  --soft: #ffeef0;
  --pink: #ff7a8a;
  --pink-dark: #e25b6b;
  --coral: #ff9b7a;
  --ink: #2a1f2c;
  --ink-soft: #5a4b5a;
  --muted: #8a7a8a;
  --line: #f1dcd0;
  --green: #2ec26b;
  --green-dark: #1ea357;
  --gold: #f5b400;
  --shadow-sm: 0 4px 14px rgba(80, 30, 50, .08);
  --shadow-md: 0 14px 40px rgba(80, 30, 50, .12);
  --shadow-lg: 0 30px 80px rgba(80, 30, 50, .14);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --max: 1100px;
  --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: 'Fraunces', 'Inter', serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }

.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: 14px; }
.big { font-size: 17px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.u-strike {
  text-decoration: line-through;
  text-decoration-color: #ff3b5b;
  text-decoration-thickness: 6px;
  text-decoration-skip-ink: none;
  -webkit-text-decoration-color: #ff3b5b;
  -webkit-text-decoration-thickness: 6px;
}

/* ============== TOP BAR ============== */
.topbar {
  background: linear-gradient(90deg, #ff5b6f, #ff8a5b);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .4px;
  padding: 9px 0;
  text-align: center;
}
.topbar .container {
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
}
.topbar__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,.25);
  animation: pulse 1.4s ease-in-out infinite;
}
.topbar__timer {
  font-variant-numeric: tabular-nums;
  background: rgba(0,0,0,.22);
  padding: 4px 11px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: .6; }
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 800;
  letter-spacing: .2px;
  border: none;
  cursor: pointer;
  padding: 16px 28px;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center;
  line-height: 1.15;
  position: relative;
  overflow: hidden;
}
.btn--cta {
  background: linear-gradient(180deg, #34d678 0%, #1ea357 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(46, 194, 107, .42), inset 0 1px 0 rgba(255,255,255,.3);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
  animation: ctaPulse 1.8s ease-in-out infinite, ctaWiggle 6s ease-in-out infinite;
}
.btn--cta:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 44px rgba(46, 194, 107, .6); }
.btn--cta:active { transform: translateY(0); }
.btn--lg { padding: 19px 30px; font-size: 16px; }
.btn--xl { padding: 22px 36px; font-size: 18px; }
.btn--block { display: flex; width: 100%; }
.btn--ghost {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--line);
  font-size: 15px;
}
.btn--ghost:hover { border-color: var(--pink); color: var(--pink-dark); }
.btn__rocket { font-size: 18px; display: inline-block; animation: btnRocket 1.6s ease-in-out infinite; }
.btn__arrow { font-size: 18px; display: inline-block; transition: transform .2s ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--shine::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.45) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: btnShine 2.6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(46, 194, 107, .42), inset 0 1px 0 rgba(255,255,255,.3); }
  50% { box-shadow: 0 10px 30px rgba(46, 194, 107, .65), 0 0 0 8px rgba(46, 194, 107, .12), inset 0 1px 0 rgba(255,255,255,.3); }
}
@keyframes ctaWiggle {
  0%, 92%, 100% { transform: rotate(0); }
  94% { transform: rotate(-1.2deg); }
  96% { transform: rotate(1.2deg); }
  98% { transform: rotate(-.6deg); }
}
@keyframes btnRocket {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes btnShine {
  0%   { left: -75%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 28px 0 48px;
  background:
    radial-gradient(900px 500px at 80% -10%, #ffe1da 0%, transparent 60%),
    radial-gradient(700px 500px at 0% 110%, #ffe9f0 0%, transparent 60%),
    var(--bg);
  text-align: center;
}
.hero__inner { max-width: 720px; margin: 0 auto; }
.hero__pill {
  display: inline-block;
  background: #fff;
  color: var(--pink-dark);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 4.6vw, 40px);
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 14px;
}
.hero__title em { color: var(--pink-dark); font-style: italic; }
.hero__big {
  background: linear-gradient(135deg, #ff3b5b 0%, #ff7a8a 60%, #ff9a6b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--ink-soft);
  margin-bottom: 26px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.hero__trust {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
}

/* ============== LIVE BADGE ============== */
.liveBadge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 18px 10px 14px;
  margin: 18px auto 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
  position: relative;
  animation: badgeFloat 3s ease-in-out infinite;
}
.liveBadge__pulse {
  width: 10px; height: 10px; border-radius: 50%;
  background: #ff3b5c;
  position: relative;
  flex-shrink: 0;
}
.liveBadge__pulse::before,
.liveBadge__pulse::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #ff3b5c;
  animation: livePing 1.6s cubic-bezier(0,0,0.2,1) infinite;
}
.liveBadge__pulse::after { animation-delay: .7s; }
.liveBadge__count {
  font-weight: 800;
  color: var(--pink-dark);
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  display: inline-block;
  animation: countShake 5s ease-in-out infinite;
}
@keyframes livePing {
  0%   { transform: scale(1);   opacity: .65; }
  80%  { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}
@keyframes countShake {
  0%, 95%, 100% { transform: translateY(0); }
  96% { transform: translateY(-2px); }
  98% { transform: translateY(1px); }
}

/* ============== VIDEO 9:16 ============== */
.video {
  position: relative;
  width: 100%;
  max-width: 330px;
  margin: 0 auto 26px;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lg);
  user-select: none;
}
.video video { width: 100%; height: 100%; object-fit: contain; display: block; background: #000; }
.video__cover {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 3;
  background: rgba(0,0,0,.25);
}
.video__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; z-index: -1;
}
.video__cover::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}
.video__playBtn {
  position: relative;
  width: 84px; height: 84px;
  border-radius: 50%;
  background: linear-gradient(180deg, #34d678, #1ea357);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 40px rgba(46, 194, 107, .55), 0 0 0 6px rgba(255,255,255,.18);
  transition: transform .15s ease;
  animation: playPulse 1.8s ease-in-out infinite;
  z-index: 1;
}
.video__playBtn svg { transform: translateX(2px); }
.video__playBtn:hover { transform: scale(1.06); }
@keyframes playPulse {
  0%, 100% { box-shadow: 0 12px 40px rgba(46, 194, 107, .55), 0 0 0 6px rgba(255,255,255,.18); }
  50% { box-shadow: 0 12px 40px rgba(46, 194, 107, .7), 0 0 0 14px rgba(255,255,255,.08); }
}
.video__soundHint {
  position: relative;
  margin-top: 16px;
  color: #fff;
  background: rgba(0,0,0,.55);
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
  display: inline-flex; align-items: center; gap: 6px;
}
.video__controls {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 8px 12px 10px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.6));
}
.video.is-playing .video__controls,
.video.is-paused  .video__controls { display: flex; }
.video__pauseBtn {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  transition: background .15s ease;
}
.video__pauseBtn:hover { background: rgba(255,255,255,.3); }
.video__progress {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,.25);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.video__progressFill {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, #34d678, #1ea357);
  border-radius: 999px;
  transition: width .25s linear;
}
.video__time {
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  min-width: 36px;
  text-align: right;
}

/* ============== SECTIONS ============== */
.section { padding: 72px 0; position: relative; }
.section--cream { background: var(--cream); }
.section--peach { background: var(--peach); }
.section--soft  { background: linear-gradient(180deg, var(--soft), var(--cream)); }
.section--final {
  background: linear-gradient(135deg, #ff5b6f 0%, #ff8a5b 100%);
  color: #fff;
  padding: 80px 0;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pink-dark);
  margin-bottom: 14px;
}
.eyebrow.center { text-align: center; }

.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 4.5vw, 40px);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 24px;
  text-align: center;
}
.h2.center { text-align: center; }
.h2--left { text-align: left; }
.h2__accent { color: var(--pink-dark); font-style: italic; }

/* ============== DORES ============== */
.pains {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  max-width: 880px;
  margin: 32px auto 40px;
}
.pains li {
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-sm);
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pains li:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pains__icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: var(--soft);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.solution {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 2px solid var(--pink);
  box-shadow: var(--shadow-md);
  max-width: 760px;
  margin: 0 auto;
}
.solution__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.2vw, 30px);
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 12px;
}
.solution__sub { color: var(--ink-soft); font-size: 17px; }

/* ============== KIT MOCKUP (imagem ChatGPT) ============== */
.kitMockup {
  max-width: 880px;
  margin: 32px auto 8px;
  text-align: center;
  position: relative;
}
.kitMockup img {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(80, 30, 50, .18);
  display: block;
  animation: kitFloat 5s ease-in-out infinite;
}
@keyframes kitFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ============== AUTORIDADE ============== */
.authority {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 960px;
}
.authority__photoWrap { position: relative; text-align: center; }
.authority__photo {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: var(--shadow-md);
  margin: 0 auto;
}
.authority__badge {
  position: absolute;
  bottom: 8px; right: 8px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(46, 194, 107, .4);
}
.authority__role {
  color: var(--pink-dark);
  font-weight: 600;
  margin-bottom: 18px;
  font-size: 15px;
}
.authority__quote {
  font-style: italic;
  color: var(--ink-soft);
  border-left: 4px solid var(--pink);
  padding: 8px 0 8px 18px;
  margin-bottom: 22px;
  font-size: 17px;
  line-height: 1.6;
}
.authority__creds {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  color: var(--ink);
  font-weight: 500;
}

/* ============== FEATURES ============== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin: 40px 0;
}
.feature {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 24px 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
  text-align: left;
  overflow: hidden;
}
.feature::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255, 122, 138, .18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature__iconBox {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.feature__emoji {
  font-size: 32px;
  width: 60px; height: 60px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #fff4eb, #ffe1da);
  border-radius: 18px;
  box-shadow: inset 0 -3px 0 rgba(255, 122, 138, .15);
  animation: emojiBob 3s ease-in-out infinite;
}
.feature:nth-child(2) .feature__emoji { animation-delay: .4s; }
.feature:nth-child(3) .feature__emoji { animation-delay: .8s; }
.feature:nth-child(4) .feature__emoji { animation-delay: 1.2s; }
.feature__count {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--pink-dark);
  background: var(--soft);
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: -.02em;
}
.feature h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
  line-height: 1.25;
}
.feature p { color: var(--ink-soft); font-size: 14.5px; }
.feature__check {
  display: inline-block;
  margin-top: 16px;
  color: var(--green-dark);
  background: rgba(46, 194, 107, .12);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .5px;
  padding: 5px 12px;
  border-radius: 999px;
}
@keyframes emojiBob {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-6px) rotate(3deg); }
}

.feature--rise {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.feature--rise.is-visible { opacity: 1; transform: translateY(0); }
.feature--rise:nth-child(2) { transition-delay: .1s; }
.feature--rise:nth-child(3) { transition-delay: .2s; }
.feature--rise:nth-child(4) { transition-delay: .3s; }

/* ============== TESTIMONIALS ============== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin: 32px 0 0;
}
.testimonial {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  position: relative;
  opacity: 0;
  transform: translateY(30px) scale(.96);
  transition: opacity .6s ease, transform .6s ease, box-shadow .25s ease;
}
.testimonial.is-visible { opacity: 1; transform: translateY(0) scale(1); }
.testimonial:nth-child(2) { transition-delay: .15s; }
.testimonial:nth-child(3) { transition-delay: .3s; }
.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 8px; right: 18px;
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--pink);
  opacity: .18;
  line-height: 1;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial__stars {
  color: #ffb800;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial__text {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.testimonial__author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testimonial__author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial__author strong { display: block; font-size: 15px; }
.testimonial__author span { font-size: 13px; color: var(--muted); }

.prints {
  max-width: 820px;
  margin: 20px auto 0;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.prints.is-visible { opacity: 1; transform: translateY(0); }
.prints__img { width: 100%; border-radius: var(--radius); }

/* ============== BÔNUS ============== */
.bonuses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.bonus {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
  opacity: 0;
  transform: translateY(30px) rotate(-2deg);
}
.bonus.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(0);
  transition: opacity .6s ease, transform .7s cubic-bezier(.34, 1.56, .64, 1);
}
.bonus:nth-child(2) { transition-delay: .1s; }
.bonus:nth-child(3) { transition-delay: .2s; }
.bonus:nth-child(4) { transition-delay: .3s; }
.bonus:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.bonus:hover .bonus__imageWrap img { animation-play-state: paused; transform: scale(1.08) rotate(-2deg); }

.bonus__imageWrap {
  position: relative;
  background: linear-gradient(135deg, #fff4eb 0%, #ffe1da 100%);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.bonus__imageWrap::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.4) 0%, transparent 50%);
  pointer-events: none;
}
.bonus__imageWrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 14px;
  transition: transform .5s cubic-bezier(.34, 1.56, .64, 1);
  animation: bonusFloat 4s ease-in-out infinite;
}
.bonus:nth-child(2) .bonus__imageWrap img { animation-delay: .5s; }
.bonus:nth-child(3) .bonus__imageWrap img { animation-delay: 1s; }
.bonus:nth-child(4) .bonus__imageWrap img { animation-delay: 1.5s; }
@keyframes bonusFloat {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-6px) rotate(1.5deg); }
}
.bonus__tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .8px;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(255, 122, 138, .35);
  z-index: 2;
}
.bonus__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.bonus__body h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 10px;
}
.bonus__body p { color: var(--ink-soft); font-size: 14px; flex: 1; }
.bonus__price {
  display: flex; align-items: center; gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.bonus__price s { color: var(--muted); font-size: 14px; }
.bonus__free {
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .5px;
  box-shadow: 0 4px 12px rgba(46, 194, 107, .35);
  animation: freePulse 2s ease-in-out infinite;
}
@keyframes freePulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}

/* ============== PLANS ============== */
.plans {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  margin-top: 40px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}
.plan {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 34px 28px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--line);
  position: relative;
  display: flex; flex-direction: column;
}
.plan--basic {
  background: #faf6f3;
  border-color: #ead7c8;
}
.plan__sub {
  color: var(--muted);
  font-size: 13px;
  margin: -8px 0 14px;
  font-weight: 600;
}
.plan--full {
  border: none;
  background: linear-gradient(180deg, #ffffff 0%, #fff7f3 100%);
  box-shadow:
    0 30px 70px rgba(255, 91, 111, .28),
    0 0 0 3px rgba(255, 122, 138, .45);
  transform: scale(1.03);
  overflow: hidden;
  padding-top: 0;
}
.plan--full::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, #ff5b6f, #ff8a5b, #f5b400, #ff5b6f);
  background-size: 300% 100%;
  animation: barShift 4s linear infinite;
  z-index: 1;
}
@keyframes barShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
/* Wrapper que segura o badge "MAIS VENDIDO" acima do card sem alterar layout do grid */
.plan-wrap--featured {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
}
.plan-wrap--featured .plan--full {
  width: 100%;
}
.plan__topBadge {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  margin: 0 auto -14px;
  background: linear-gradient(135deg, #ff5b6f 0%, #ff8a5b 50%, #f5b400 100%);
  background-size: 200% 200%;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(255, 91, 111, .45), 0 0 0 3px rgba(255, 255, 255, .85);
  position: relative;
  z-index: 3;
  animation: topBadgePulse 2.4s ease-in-out infinite, topBadgeShine 5s linear infinite;
  white-space: nowrap;
}
.plan__topBadge span {
  display: inline-block;
  animation: topBadgeSpin 3s ease-in-out infinite;
}
@keyframes topBadgePulse {
  0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 12px 28px rgba(255, 91, 111, .45), 0 0 0 3px rgba(255, 255, 255, .85); }
  50%      { transform: translateY(-4px) scale(1.05); box-shadow: 0 18px 36px rgba(255, 91, 111, .55), 0 0 0 3px rgba(255, 255, 255, .95); }
}
@keyframes topBadgeShine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes topBadgeSpin {
  0%, 100% { transform: rotate(-12deg) scale(1); }
  50%      { transform: rotate(12deg) scale(1.2); }
}

.plan__ribbon {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  background: linear-gradient(90deg, #ff5b6f, #ff8a5b);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .8px;
  text-align: center;
  padding: 12px 14px;
  margin: 6px -28px 0;
  text-transform: uppercase;
}
.plan__ribbon span { font-size: 16px; }

.plan__hero {
  position: relative;
  margin: 22px -4px 18px;
  background: radial-gradient(circle at center, #fff4eb 0%, transparent 75%);
  padding: 10px;
  border-radius: 24px;
}
.plan__cover {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(80, 30, 50, .22));
  animation: coverFloat 3.5s ease-in-out infinite;
}
@keyframes coverFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-8px) rotate(1deg); }
}
.plan__heroBadges { position: absolute; inset: 0; pointer-events: none; }
.plan__heroBadge {
  position: absolute;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .8px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}
.plan__heroBadge--bonus {
  top: 8px; left: 4px;
  background: linear-gradient(135deg, #2ec26b, #1ea357);
  animation: badgeBounceL 2.4s ease-in-out infinite;
}
.plan__heroBadge--save {
  top: 6px; right: 4px;
  background: linear-gradient(135deg, #f5b400, #e07c00);
  font-size: 18px;
  padding: 10px 14px;
  animation: badgeBounceR 2.4s ease-in-out infinite;
  animation-delay: .6s;
}
@keyframes badgeBounceL {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50%      { transform: rotate(-8deg) translateY(-5px); }
}
@keyframes badgeBounceR {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50%      { transform: rotate(8deg) translateY(-5px); }
}

.plan__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}
.plan__title--big { font-size: 28px; text-align: center; }
.plan--full .plan__sub { text-align: center; }

.plan__from {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 4px;
  text-align: center;
}
.plan__from s { color: var(--muted); }
.plan__price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 18px;
  color: var(--ink);
}
.plan__currency { font-size: 22px; font-weight: 700; }
.plan__value {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
}
.plan__price--big { justify-content: center; margin-bottom: 12px; }
.plan__price--big .plan__value {
  font-size: 76px;
  background: linear-gradient(135deg, #ff5b6f, #e25b6b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.plan__once {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  align-self: flex-end;
  margin-bottom: 8px;
}
.plan__saving {
  display: block;
  background: rgba(46, 194, 107, .14);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  margin: 0 auto 22px;
  text-align: center;
  border: 1px dashed rgba(46, 194, 107, .35);
}
.plan__list {
  list-style: none;
  display: flex; flex-direction: column; gap: 9px;
  margin-bottom: 22px;
  flex: 1;
}
.plan__list li {
  font-size: 14.5px;
  color: var(--ink);
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap;
  line-height: 1.35;
}
.plan__list--full {
  gap: 5px;
}
.plan__list--full li {
  background: rgba(255, 122, 138, .07);
  padding: 7px 10px;
  border-radius: 8px;
  border-left: 3px solid var(--pink);
  font-size: 14px;
}
.plan__b {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
}
.plan__off { color: var(--muted) !important; opacity: .7; }
.plan__safe {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

/* ============== GUARANTEE + SEAL (limpo/profissional) ============== */
.guarantee {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
  max-width: 880px;
  padding: 20px 8px;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.seal {
  width: 180px;
  margin: 0 auto;
  text-align: center;
}
.seal img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .25));
  animation: sealFloat 4s ease-in-out infinite;
}
@keyframes sealFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-5px) rotate(2deg); }
}
.guarantee__copy {
  color: var(--ink-soft);
  font-size: 17px;
  margin-bottom: 18px;
  line-height: 1.6;
}
.guarantee__list {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
}

/* ============== FAQ ============== */
.faq {
  max-width: 760px;
  margin: 36px auto 0;
  display: flex; flex-direction: column; gap: 12px;
}
.faq__item {
  background: #fff;
  border-radius: var(--radius);
  padding: 4px 0;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .15s ease;
}
.faq__item[open] { box-shadow: var(--shadow-md); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 26px;
  color: var(--pink);
  font-weight: 400;
  line-height: 1;
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  padding: 0 22px 20px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ============== FINAL CTA ============== */
.final { text-align: center; max-width: 720px; margin: 0 auto; }
.final__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}
.final__sub {
  font-size: clamp(16px, 2vw, 19px);
  opacity: .95;
  margin-bottom: 32px;
}
.final__trust {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 22px;
  justify-content: center;
  margin-top: 24px;
  font-size: 14px;
  opacity: .9;
}

/* ============== FOOTER ============== */
.footer {
  background: #fff;
  padding: 32px 0 40px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
}
.footer p + p { margin-top: 8px; }
.footer__small { font-size: 12px; opacity: .8; }

/* ============== RESPONSIVE ============== */
@media (max-width: 800px) {
  .authority {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .h2--left { text-align: center; }
  .authority__quote {
    text-align: left;
    border-left: 0;
    border-top: 3px solid var(--pink);
    padding: 16px 0 0;
    margin-bottom: 18px;
  }
  .authority__creds { align-items: center; }

  .plans { grid-template-columns: 1fr; gap: 36px; }
  .plan--full { transform: none; }

  .guarantee {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
    padding: 30px 22px;
  }
  .seal { width: 180px; }
  .guarantee__list { align-items: center; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .topbar { font-size: 12px; padding: 7px 0; }
  .topbar__timer { font-size: 13px; padding: 3px 9px; }
  .hero { padding: 22px 0 36px; }
  .video { max-width: 280px; }
  .video__playBtn { width: 72px; height: 72px; }
  .video__playBtn svg { width: 32px; height: 32px; }
  .btn--cta { font-size: 13px; padding: 16px 20px; gap: 6px; }
  .btn--xl { padding: 18px 22px; font-size: 14px; }
  .plan__price--big .plan__value { font-size: 64px; }
  .plan__title--big { font-size: 24px; }
}

@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .pains li { font-size: 14px; }
  .feature, .testimonial { padding: 22px 20px; }
  .plan { padding: 28px 22px; }
  .plan__ribbon { margin-left: -22px; margin-right: -22px; }
}

/* ============== CAROUSEL DEPOIMENTOS ============== */
.carousel {
  position: relative;
  max-width: 560px;
  margin: 32px auto 0;
  padding: 0 12px;
}
.carousel__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}
.carousel__slide .testimonial {
  opacity: 1;
  transform: none;
  margin: 8px 4px;
}
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--pink-dark);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  z-index: 2;
}
.carousel__btn:hover { background: var(--pink); color: #fff; transform: translateY(-50%) scale(1.08); }
.carousel__btn--prev { left: -8px; }
.carousel__btn--next { right: -8px; }
.carousel__dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 18px;
}
.carousel__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255, 122, 138, .25);
  border: none;
  cursor: pointer;
  transition: width .25s ease, background .15s ease;
}
.carousel__dot.is-active {
  width: 26px;
  border-radius: 999px;
  background: var(--pink);
}

@media (max-width: 540px) {
  .carousel__btn { display: none; }
  .carousel { padding: 0; }
}

/* ============== DOWNSELL MODAL ============== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: modalIn .25s ease both;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(20, 8, 16, .75);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.modal__card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 22px 22px 20px;
  max-width: 420px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,.45);
  text-align: center;
  animation: modalCardIn .35s cubic-bezier(.34, 1.56, .64, 1) both;
  border-top: 5px solid #ff5b6f;
}
@keyframes modalIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes modalCardIn {
  from { opacity: 0; transform: translateY(30px) scale(.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal__close {
  position: absolute;
  top: 12px; right: 14px;
  background: transparent;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  width: 36px; height: 36px;
  border-radius: 50%;
  transition: background .15s ease, color .15s ease;
}
.modal__close:hover { background: var(--soft); color: var(--pink-dark); }

.modal__alert {
  display: inline-block;
  background: linear-gradient(90deg, #ff5b6f, #ff8a5b);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.4px;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
  animation: alertShake 1.2s ease-in-out infinite;
}
@keyframes alertShake {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-2deg); }
  75% { transform: rotate(2deg); }
}

.modal__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 10px;
}
.modal__title span { color: var(--pink-dark); font-style: italic; }

.modal__cover {
  width: 110px;
  margin: 2px auto 8px;
  filter: drop-shadow(0 10px 18px rgba(80, 30, 50, .25));
  border-radius: 12px;
  overflow: hidden;
}
.modal__cover img {
  width: 100%;
  animation: coverFloat 3.5s ease-in-out infinite;
}

.modal__sub {
  color: var(--ink-soft);
  font-size: 13px;
  margin-bottom: 8px;
  font-weight: 600;
}
.modal__list {
  list-style: none;
  text-align: left;
  margin: 0 auto 14px;
  display: flex; flex-direction: column; gap: 3px;
  font-size: 13px;
  color: var(--ink);
  background: #f0fbf5;
  border-radius: 12px;
  padding: 10px 12px;
  border: 1px solid #c8edd6;
  line-height: 1.35;
}
.modal__list li {
  display: flex; align-items: center; gap: 7px;
  padding: 3px 0;
}
.modal__list s { color: var(--muted); margin-left: auto; font-size: 11px; }
.modal__check {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(46, 194, 107, .35);
}

.modal__offer {
  background: linear-gradient(180deg, #fff7f3 0%, #ffefe6 100%);
  border: 2px dashed var(--pink);
  border-radius: 16px;
  padding: 14px 14px 14px;
  margin-bottom: 14px;
}
.modal__offerTag {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
  box-shadow: 0 4px 12px rgba(245, 180, 0, .35);
}
.modal__offerLabel {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 2px;
}
.modal__priceLine { margin-bottom: 0; }
.modal__priceOld {
  font-size: 12px;
  color: var(--muted);
}
.modal__priceOld s { color: var(--muted); }
.modal__priceBig {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  font-family: var(--font-display);
  margin: 2px 0 6px;
}
.modal__priceBig span:first-child { font-size: 20px; font-weight: 700; color: var(--ink); }
.modal__priceBig strong {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #ff5b6f, #e25b6b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -.02em;
}
.modal__priceOnce {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}
.modal__save {
  display: inline-block;
  background: rgba(46, 194, 107, .15);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 12px;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px dashed rgba(46, 194, 107, .35);
}

/* Botao cinza secundario (recusar a oferta) */
.modal__actions {
  position: sticky;
  bottom: -20px;
  z-index: 5;
  margin: 8px -22px -20px;
  padding: 14px 22px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 30%);
}
.modal__refuse {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding: 14px 18px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
  border: 2px solid #d9d2cf;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.modal__refuse:hover {
  background: #faf6f3;
  border-color: var(--pink);
  color: var(--pink-dark);
  transform: translateY(-1px);
}

.modal__safe {
  margin-top: 10px;
  font-size: 10px;
  color: var(--muted);
}

@media (max-width: 480px) {
  .modal__card { padding: 20px 18px 18px; border-radius: 18px; }
  .modal__title { font-size: 17px; }
  .modal__priceBig strong { font-size: 46px; }
  .modal__list { font-size: 12px; padding: 9px 11px; }
  .modal__cover { width: 120px; }
}
