/* ==========================================================================
   LIPO MONSTER JUICE — Ecommerce
   Paleta: magenta/rosa neon sobre preto
   Todos os tokens de cor, fonte e espaçamento estão no :root abaixo.
   Para mudar a identidade inteira do site, mexa só no :root.
   ========================================================================== */

:root {
  /* --- Cores base --- */
  --ink:          #07060A;
  --ink-2:        #0E0C14;
  --surface:      #16121F;
  --surface-2:    #1F1930;
  --line:         rgba(255, 255, 255, .10);
  --line-strong:  rgba(255, 255, 255, .18);

  /* --- Marca --- */
  --pink:         #FF1F6D;
  --pink-hot:     #FF4D8D;
  --pink-soft:    #FF9CC2;
  --magenta:      #C2007A;
  --violet:       #7A1FFF;
  --gold:         #FFC24A;
  --green:        #29D086;

  /* --- Texto --- */
  --white:        #FFFFFF;
  --text:         #EDE9F2;
  --muted:        #A79FB6;
  --muted-2:      #7C7490;

  /* --- Gradientes --- */
  --grad-cta:     linear-gradient(100deg, #FF1F6D 0%, #FF4D8D 50%, #C2007A 100%);
  --grad-dark:    linear-gradient(180deg, #0E0C14 0%, #07060A 100%);
  --grad-glow:    radial-gradient(60% 60% at 50% 0%, rgba(255,31,109,.30) 0%, rgba(255,31,109,0) 70%);

  /* --- Tipografia --- */
  --font-display: 'Anton', 'Archivo Black', 'Impact', system-ui, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

  /* --- Layout --- */
  --max:          1180px;
  --gap:          24px;
  --radius:       18px;
  --radius-sm:    12px;
  --radius-lg:    28px;

  /* --- Sombras --- */
  --shadow:       0 18px 50px rgba(0, 0, 0, .55);
  --shadow-pink:  0 14px 40px rgba(255, 31, 109, .35);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: .98;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin: 0 0 .5em;
  color: var(--white);
}
h1 { font-size: clamp(2.2rem, 5.6vw, 4.1rem); }
h2 { font-size: clamp(1.85rem, 4.6vw, 3.15rem); }
h3 { font-size: clamp(1.15rem, 2.4vw, 1.55rem); }
p  { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--pink); color: #fff; }

/* ============================ UTILITÁRIOS ============================ */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding: clamp(56px, 9vw, 104px) 0; position: relative; }
.section--alt { background: var(--grad-dark); }
.section--surface { background: var(--ink-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pink-hot);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 2px;
  background: var(--pink);
  border-radius: 2px;
}

.center { text-align: center; }
.center .eyebrow::before { display: none; }

.lead { font-size: clamp(1rem, 1.9vw, 1.15rem); color: var(--muted); max-width: 62ch; }
.center .lead { margin-inline: auto; }

.pink { color: var(--pink-hot); }
.hl {
  background: var(--grad-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ============================ BOTÕES ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  will-change: transform;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--pink-soft); outline-offset: 3px; }

.btn--primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.btn--primary:hover { box-shadow: 0 18px 48px rgba(255, 31, 109, .5); }

.btn--ghost {
  border: 1.5px solid var(--line-strong);
  color: var(--white);
  background: rgba(255, 255, 255, .04);
}
.btn--ghost:hover { border-color: var(--pink); background: rgba(255, 31, 109, .10); }

.btn--block { width: 100%; }
.btn--lg { padding: 19px 34px; font-size: 1.02rem; }
.btn--sm { padding: 11px 20px; font-size: .8rem; }

/* pulso discreto só no CTA principal */
.btn--pulse { animation: pulse 2.6s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 14px 40px rgba(255,31,109,.35); }
  50%      { box-shadow: 0 14px 40px rgba(255,31,109,.65); }
}

/* ============================ BARRA DE AVISO ============================ */
.topbar {
  background: var(--grad-cta);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
  z-index: 60;
}
.topbar__track {
  display: flex;
  gap: 44px;
  padding: 9px 0;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
  width: max-content;
}
.topbar__track span { display: inline-flex; align-items: center; gap: 10px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================ HEADER ============================ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 6, 10, .72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.32rem;
  letter-spacing: .04em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}
.logo__mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--grad-cta);
  display: grid; place-items: center;
  font-size: 1.05rem;
  box-shadow: var(--shadow-pink);
}
.logo small { display: block; font-family: var(--font-body); font-size: .58rem; letter-spacing: .28em; color: var(--pink-soft); font-weight: 700; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: .86rem;
  font-weight: 600;
  color: var(--muted);
  transition: color .16s ease;
}
.nav a:hover { color: var(--white); }
/* o CTA dentro do nav existe só para o menu mobile aberto */
.nav .btn { display: none; }

.burger { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line-strong); align-items: center; justify-content: center; }
.burger span { display: block; width: 18px; height: 2px; background: var(--white); box-shadow: 0 -6px 0 var(--white), 0 6px 0 var(--white); }

/* ============================ CARROSSEL DE BANNERS ============================ */
.carousel {
  position: relative;
  background: var(--ink-2);
  overflow: hidden;
  --carousel-h: 420px;
  --carousel-h-mob: 300px;
}
.carousel__viewport { overflow: hidden; }
.carousel__track {
  display: flex;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  height: var(--carousel-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.slide__bg { position: absolute; inset: 0; }
.slide__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide__bg--vazio {
  display: block;
  background:
    radial-gradient(70% 120% at 12% 50%, rgba(255, 31, 109, .42) 0%, transparent 62%),
    radial-gradient(60% 120% at 88% 20%, rgba(122, 31, 255, .34) 0%, transparent 65%),
    var(--surface-2);
}
/* véu escuro só do lado do texto, pra legibilidade sem apagar a foto */
.slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7, 6, 10, .86) 0%, rgba(7, 6, 10, .55) 42%, rgba(7, 6, 10, .10) 75%);
  pointer-events: none;
}
.slide--direita::after {
  background: linear-gradient(270deg, rgba(7, 6, 10, .86) 0%, rgba(7, 6, 10, .55) 42%, rgba(7, 6, 10, .10) 75%);
}
.slide--centro::after {
  background: linear-gradient(180deg, rgba(7, 6, 10, .55) 0%, rgba(7, 6, 10, .80) 100%);
}

.slide__conteudo {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding: 0 clamp(20px, 5vw, 64px);
}
.slide--direita .slide__conteudo { text-align: right; }
.slide--centro  .slide__conteudo { text-align: center; }

.slide__titulo {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.4vw, 3.1rem);
  line-height: .98;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 10px;
  max-width: 20ch;
  text-shadow: 0 4px 26px rgba(0, 0, 0, .6);
}
.slide--direita .slide__titulo,
.slide--centro  .slide__titulo { max-width: none; }

.slide__sub {
  font-size: clamp(.9rem, 1.7vw, 1.08rem);
  color: var(--text);
  max-width: 44ch;
  margin: 0 0 18px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .7);
}
.slide--direita .slide__sub { margin-left: auto; }
.slide--centro  .slide__sub { margin-inline: auto; }
.slide__cta { pointer-events: none; }

/* setas */
.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.7rem;
  line-height: 1;
  padding-bottom: 4px;
  color: var(--white);
  background: rgba(7, 6, 10, .55);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(6px);
  transition: background .16s ease, border-color .16s ease;
}
.carousel__nav:hover { background: var(--pink); border-color: var(--pink); }
.carousel__nav:focus-visible { outline: 3px solid var(--pink-soft); outline-offset: 2px; }
.carousel__nav--prev { left: 14px; }
.carousel__nav--next { right: 14px; }

/* pontos */
.carousel__dots {
  position: absolute;
  bottom: 16px; left: 0; right: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.dot-nav {
  width: 30px; height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .32);
  transition: background .2s ease, width .2s ease;
}
.dot-nav[aria-selected="true"] { background: var(--pink); width: 46px; }
.dot-nav:focus-visible { outline: 2px solid var(--pink-soft); outline-offset: 3px; }

@media (max-width: 720px) {
  .slide { height: var(--carousel-h-mob); }
  .carousel__nav { width: 36px; height: 36px; font-size: 1.4rem; }
  .carousel__nav--prev { left: 8px; }
  .carousel__nav--next { right: 8px; }
  .slide::after {
    background: linear-gradient(180deg, rgba(7, 6, 10, .45) 0%, rgba(7, 6, 10, .88) 100%);
  }
  .slide__sub { display: none; }
  .slide__conteudo { padding-bottom: 26px; align-self: flex-end; }
  .slide { align-items: flex-end; }
}

/* ============================ HERO ============================ */
.hero {
  position: relative;
  padding: clamp(44px, 7vw, 84px) 0 clamp(56px, 8vw, 96px);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-glow);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 620px; height: 620px;
  right: -220px; top: -180px;
  background: radial-gradient(circle, rgba(122,31,255,.22) 0%, transparent 68%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(28px, 5vw, 60px);
}
.hero h1 { margin-bottom: 18px; }
.hero h1 em { font-style: normal; display: block; }
.hero__sub { font-size: clamp(1rem, 2vw, 1.18rem); color: var(--muted); max-width: 46ch; margin-bottom: 26px; }

.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }

.hero__pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.04);
  font-size: .78rem; font-weight: 700;
  color: var(--text);
}
.pill--pink { border-color: rgba(255,31,109,.45); background: rgba(255,31,109,.12); color: var(--pink-soft); }

.hero__proof { display: flex; align-items: center; gap: 14px; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }
.hero__proof p { font-size: .84rem; color: var(--muted); }
.hero__proof strong { color: var(--white); }

.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 30px 60px rgba(255,31,109,.28));
}
.hero__media .ph { aspect-ratio: 1 / 1; }

.hero__badge {
  position: absolute;
  bottom: 18px; left: -10px;
  background: var(--white);
  color: #0b0910;
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
  font-weight: 800;
  font-size: .82rem;
  line-height: 1.2;
}
.hero__badge b { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--magenta); }

/* ============================ SELOS ============================ */
.seals { border-block: 1px solid var(--line); background: var(--ink-2); }
.seals__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 22px 0;
}
.seal { text-align: center; font-size: .76rem; font-weight: 700; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.seal i { display: block; font-size: 1.4rem; font-style: normal; margin-bottom: 6px; }

/* ============================ SELETOR / FILTROS ============================ */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 30px 0 38px;
}
.filter {
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: all .16s ease;
}
.filter:hover { color: var(--white); border-color: var(--pink-soft); }
.filter[aria-selected="true"] {
  background: var(--grad-cta);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-pink);
}

/* ============================ GRID DE OFERTAS ============================ */
.offers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--gap);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-5px); border-color: rgba(255,31,109,.45); box-shadow: var(--shadow); }
.card[hidden] { display: none; }

.card--featured {
  border-color: var(--pink);
  box-shadow: 0 0 0 1px var(--pink), 0 24px 60px rgba(255,31,109,.24);
}
.card--featured::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(80% 50% at 50% 0%, rgba(255,31,109,.16), transparent 70%);
  pointer-events: none;
}

.card__tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  background: var(--grad-cta);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.card__off {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  background: var(--white);
  color: #0b0910;
  font-size: .74rem;
  font-weight: 900;
  padding: 6px 11px;
  border-radius: 999px;
}

.card__media {
  position: relative;
  background: radial-gradient(70% 70% at 50% 40%, rgba(255,31,109,.20), transparent 70%), var(--surface-2);
  padding: 26px;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
}
.card__media img { max-height: 100%; width: auto; object-fit: contain; }

.card__body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.card__title { font-size: 1.22rem; margin-bottom: 6px; }
.card__desc { font-size: .86rem; color: var(--muted); margin-bottom: 14px; }

.card__list { display: grid; gap: 6px; margin-bottom: 16px; }
.card__list li { font-size: .82rem; color: var(--text); display: flex; gap: 8px; align-items: flex-start; }
.card__list li::before { content: '✓'; color: var(--green); font-weight: 900; flex: 0 0 auto; }

.flavors { display: grid; gap: 6px; margin-bottom: 16px; }
.flavors__label { font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); }
.flavors__opts { display: flex; flex-wrap: wrap; gap: 6px; }
.flavor {
  padding: 8px 13px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  font-size: .78rem;
  font-weight: 700;
  color: var(--muted);
  transition: all .15s ease;
}
.flavor:hover { color: var(--white); border-color: var(--pink-soft); }
.flavor[aria-pressed="true"] { background: rgba(255,31,109,.16); border-color: var(--pink); color: var(--white); }

.price { margin-top: auto; }
.price__from { font-size: .82rem; color: var(--muted-2); text-decoration: line-through; }
.price__now {
  font-family: var(--font-display);
  font-size: 2.15rem;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.price__now small { font-family: var(--font-body); font-size: .9rem; font-weight: 700; color: var(--muted); }
.price__terms { font-size: .8rem; color: var(--pink-soft); font-weight: 600; margin-top: 4px; }
.price__unit { font-size: .76rem; color: var(--muted-2); margin-top: 2px; }
.card .btn { margin-top: 16px; }
.card__ship { font-size: .74rem; color: var(--green); font-weight: 700; text-align: center; margin-top: 10px; }

/* ============================ COMO FUNCIONA ============================ */
.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
}
.tile__n {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,31,109,.55);
  margin-bottom: 12px;
}
.tile h3 { margin-bottom: 10px; }
.tile p { font-size: .9rem; color: var(--muted); }

/* ============================ COMPOSIÇÃO ============================ */
.compo { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.compo__col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.compo__col h3 { display: flex; align-items: center; gap: 10px; }
.dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.dot--pink { background: var(--pink); }
.dot--red { background: #E63757; }
.compo__col ul { display: grid; gap: 10px; margin-top: 16px; }
.compo__col li {
  display: flex; justify-content: space-between; gap: 14px;
  font-size: .88rem;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}
.compo__col li span:last-child { color: var(--muted); font-weight: 600; white-space: nowrap; }
.compo__note { font-size: .78rem; color: var(--muted-2); margin-top: 16px; }

/* ============================ COMPARATIVO ============================ */
.versus {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 18px;
  max-width: 900px;
  margin-inline: auto;
}
.versus__side {
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.versus__side--win { border-color: var(--pink); background: linear-gradient(180deg, rgba(255,31,109,.14), var(--surface)); }
.versus__side h3 { font-size: 1.1rem; }
.versus__price { font-family: var(--font-display); font-size: 2.4rem; color: var(--white); line-height: 1; margin: 8px 0 16px; }
.versus__side ul { display: grid; gap: 9px; font-size: .86rem; }
.versus__side li { display: flex; gap: 9px; }
.versus__side li i { font-style: normal; }
.versus__mid { display: grid; place-items: center; font-family: var(--font-display); color: var(--muted-2); font-size: 1.4rem; }

/* ============================ COMO USAR ============================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); counter-reset: s; }
.step { text-align: center; padding: 26px 18px; }
.step__ico {
  width: 62px; height: 62px;
  margin: 0 auto 16px;
  border-radius: 20px;
  display: grid; place-items: center;
  font-size: 1.6rem;
  background: rgba(255,31,109,.12);
  border: 1px solid rgba(255,31,109,.35);
}
.step h3 { font-size: 1.05rem; }
.step p { font-size: .88rem; color: var(--muted); }

/* ============================ DEPOIMENTOS ============================ */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review__stars { color: var(--gold); letter-spacing: 2px; }
.review p { font-size: .92rem; }
.review__who { display: flex; align-items: center; gap: 11px; margin-top: auto; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad-cta);
  display: grid; place-items: center;
  font-weight: 800; color: #fff; font-size: .9rem;
  flex: 0 0 auto;
}
.review__who b { display: block; font-size: .88rem; color: var(--white); }
.review__who small { color: var(--muted-2); font-size: .76rem; }

/* ============================ GARANTIA ============================ */
.guarantee {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
  background: var(--surface);
  border: 1px solid rgba(255,31,109,.35);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px);
}
.guarantee__seal {
  width: 138px; height: 138px;
  border-radius: 50%;
  background: var(--grad-cta);
  display: grid; place-items: center;
  text-align: center;
  color: #fff;
  font-family: var(--font-display);
  line-height: .95;
  box-shadow: var(--shadow-pink);
  flex: 0 0 auto;
}
.guarantee__seal b { font-size: 2.6rem; display: block; }
.guarantee__seal span { font-size: .72rem; letter-spacing: .12em; }

/* ============================ FAQ ============================ */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.qa {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qa__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  font-weight: 700;
  font-size: .98rem;
  color: var(--white);
}
.qa__q i { font-style: normal; color: var(--pink); font-size: 1.4rem; line-height: 1; transition: transform .2s ease; flex: 0 0 auto; }
.qa[open] .qa__q i, .qa.is-open .qa__q i { transform: rotate(45deg); }
.qa__a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .28s ease, padding .28s ease; }
.qa.is-open .qa__a { padding: 0 20px 20px; max-height: 520px; }
.qa__a p { font-size: .92rem; color: var(--muted); }

/* ============================ CTA FINAL ============================ */
.final {
  position: relative;
  text-align: center;
  background: linear-gradient(160deg, #1B0A18 0%, #07060A 70%);
  overflow: hidden;
}
.final::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 50% 100%, rgba(255,31,109,.28), transparent 70%);
}
.final .wrap { position: relative; }

/* ============================ RODAPÉ ============================ */
.footer { background: var(--ink-2); border-top: 1px solid var(--line); padding: 54px 0 100px; font-size: .86rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; margin-bottom: 34px; }
.footer h4 { font-family: var(--font-body); font-size: .74rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 14px; }
.footer ul { display: grid; gap: 9px; }
.footer a:hover { color: var(--pink-hot); }
.footer p { color: var(--muted); }
.footer__bottom { border-top: 1px solid var(--line); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; color: var(--muted-2); font-size: .78rem; }
.footer__legal { font-size: .74rem; color: var(--muted-2); line-height: 1.7; margin-top: 18px; }
.paybar { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.paybar span { border: 1px solid var(--line); border-radius: 7px; padding: 5px 10px; font-size: .7rem; font-weight: 700; color: var(--muted); }

/* ============================ BARRA FIXA MOBILE ============================ */
.stickybar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(11, 9, 16, .94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-strong);
}
.stickybar__info { flex: 1; min-width: 0; }
.stickybar__info b { display: block; font-size: .95rem; color: var(--white); line-height: 1.2; }
.stickybar__info small { font-size: .74rem; color: var(--muted); }
.stickybar .btn { flex: 0 0 auto; }

/* ============================ PLACEHOLDER DE IMAGEM ============================ */
.ph {
  width: 100%;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,31,109,.30), rgba(122,31,255,.22)),
    var(--surface-2);
  border: 1px dashed rgba(255,255,255,.22);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  color: var(--pink-soft);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  aspect-ratio: 4 / 3;
}

/* ============================ PÁGINAS DE TEXTO (legais) ============================ */
.doc { max-width: 780px; margin-inline: auto; padding: 60px 0 90px; }
.doc h1 { font-size: clamp(1.9rem, 4.4vw, 2.8rem); margin-bottom: 8px; }
.doc h2 { font-size: 1.25rem; margin: 36px 0 12px; }
.doc p, .doc li { color: var(--muted); font-size: .95rem; }
.doc ul { list-style: disc; padding-left: 22px; display: grid; gap: 8px; margin-bottom: 18px; }
.doc__date { font-size: .82rem; color: var(--muted-2); margin-bottom: 30px; }

/* ============================ ANIMAÇÃO DE ENTRADA ============================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================ RESPONSIVO ============================ */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 460px; margin-inline: auto; }
  .hero__badge { left: 6px; }
  .trio, .steps, .reviews { grid-template-columns: 1fr 1fr; }
  .compo { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .seals__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .versus { grid-template-columns: 1fr; }
  .versus__mid { padding: 4px 0; }
}

@media (max-width: 720px) {
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(11,9,16,.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-strong);
    padding: 8px 20px 18px;
  }
  .nav.is-open a { width: 100%; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
  .nav.is-open .btn { display: inline-flex; margin-top: 14px; width: 100%; }
  .burger { display: inline-flex; }
  .header__inner { position: relative; }
  .header .header__cta { display: none; }

  .trio, .steps, .reviews, .offers { grid-template-columns: 1fr; }
  .guarantee { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .guarantee__seal { margin-inline: auto; }
  .stickybar { display: flex; }
  body { padding-bottom: 74px; }
  .hero__ctas .btn { width: 100%; }
  .footer { padding-bottom: 120px; }
}

@media (max-width: 420px) {
  .seals__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
}
