/* =========================================================
   Blocos SketchUp — Landing Page
   Arquitetura: mobile-first, BEM, variáveis de tema.
   ========================================================= */

/* ---------- 1. Tokens de design ---------- */
:root {
  /* Paleta */
  --c-dark: #111111;
  --c-dark-2: #1a1a1a;
  --c-dark-3: #222222;
  --c-gold: #e2c197;
  --c-gold-2: #c09155;
  --c-gold-soft: #f0dcc0;
  --c-white: #ffffff;
  --c-ink: #1c1c1c;
  --c-muted: #6b6b6b;
  --c-accent: #ff7828;

  /* Gradientes */
  --grad-gold: radial-gradient(circle at 30% 20%, var(--c-gold) 0%, var(--c-gold-2) 100%);
  --grad-gold-line: linear-gradient(90deg, var(--c-gold) 0%, var(--c-gold-2) 100%);

  /* Tipografia */
  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Espaçamento / layout */
  --container: 1200px;
  --gutter: 20px;
  --radius: 14px;
  --radius-lg: 22px;
  --section-pad-y: 64px;

  /* Sombras */
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, .18);
  --shadow-md: 0 14px 40px rgba(0, 0, 0, .28);
  --shadow-gold: 0 14px 38px rgba(192, 145, 85, .38);

  /* Transições */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. Reset enxuto ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font);
  background: var(--c-dark);
  color: var(--c-white);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---------- 3. Utilitários ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.text-gold { color: var(--c-gold); }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 14px;
}
.eyebrow--center { display: block; text-align: center; }

/* ---------- 4. Seções e títulos ---------- */
.section { padding-block: var(--section-pad-y); position: relative; }
.section--dark { background: var(--c-dark); color: var(--c-white); }
.section--light { background: var(--c-white); color: var(--c-ink); }
.section--gold {
  background: var(--c-gold);
  color: var(--c-ink);
}
.section--gold-dark {
  background: linear-gradient(160deg, var(--c-gold-2) 0%, #a87b44 100%);
  color: var(--c-ink);
}

.section__title {
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.01em;
  margin-bottom: 32px;
}
.section__title--center { text-align: center; }
.section__title--dark { color: var(--c-ink); }
.section--gold .section__title,
.section--gold-dark .section__title { color: var(--c-ink); }

/* ---------- 5. Botões ---------- */
.btn {
  --btn-pad-y: 16px;
  --btn-pad-x: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.1;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border: 2px solid transparent;
  border-radius: 10px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
  will-change: transform;
}
.btn--primary {
  background: var(--grad-gold);
  color: var(--c-white);
  border-color: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover { transform: translateY(-3px) scale(1.02); filter: brightness(1.05); }
.btn--primary:active { transform: translateY(-1px) scale(.99); }
.btn--ghost {
  background: transparent;
  color: var(--c-white);
  border-color: var(--c-gold);
}
.btn--ghost:hover { background: var(--c-gold); color: var(--c-dark); }
.btn--sm { --btn-pad-y: 10px; --btn-pad-x: 18px; font-size: .85rem; border-radius: 8px; }
.btn--lg { --btn-pad-y: 18px; --btn-pad-x: 36px; font-size: 1.05rem; }
.btn--xl { --btn-pad-y: 20px; --btn-pad-x: 44px; font-size: 1.15rem; width: 100%; }

/* CTA pulsante para chamar atenção (animado também via JS) */
.btn--primary { position: relative; }
.btn--primary::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(226, 193, 151, .55);
  animation: cta-pulse 2.4s var(--ease) infinite;
  pointer-events: none;
}
@keyframes cta-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(226, 193, 151, .5); }
  70%  { box-shadow: 0 0 0 18px rgba(226, 193, 151, 0); }
  100% { box-shadow: 0 0 0 0 rgba(226, 193, 151, 0); }
}

/* ---------- 6. Cabeçalho ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 12px var(--gutter);
  background: rgba(17, 17, 17, .85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 193, 151, .14);
  transition: transform .4s var(--ease), background .3s var(--ease);
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--grad-gold);
  color: var(--c-white);
  box-shadow: var(--shadow-sm);
}
.brand__name { font-weight: 600; font-size: 1.05rem; letter-spacing: -.01em; color: var(--c-white); }
.brand__name strong { color: var(--c-gold); font-weight: 800; }
/* CTA do cabeçalho fica oculta em telas muito pequenas (hero + sticky cobrem) */
.header__cta { flex-shrink: 0; display: none; }
@media (min-width: 480px) { .header__cta { display: inline-flex; } }

/* ---------- 7. Hero ---------- */
.hero { padding-top: 48px; overflow: hidden; }
.hero__glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 120%; height: 70%;
  background: radial-gradient(ellipse at center, rgba(226, 193, 151, .22) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.hero__inner { position: relative; z-index: 1; display: grid; gap: 36px; }
.hero__title {
  font-size: clamp(1.9rem, 8.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.015em;
}
.hero__subtitle {
  margin-top: 18px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .82);
  max-width: 38ch;
}
.hero__actions { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.hero__actions .btn { width: 100%; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 16px 22px; font-size: .9rem; color: rgba(255, 255, 255, .75); }
.hero__trust li { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust svg { color: var(--c-gold); }
.hero__media { position: relative; }
.hero__media img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ---------- 8. Features ---------- */
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.feature-card {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.feature-card:hover { transform: translateY(-4px); background: var(--c-white); box-shadow: var(--shadow-sm); }
.feature-card__icon {
  flex-shrink: 0;
  display: grid; place-items: center;
  width: 54px; height: 54px;
  border-radius: 12px;
  background: var(--c-dark);
  color: var(--c-gold);
}
.feature-card__title { font-size: 1rem; font-weight: 600; line-height: 1.3; color: var(--c-ink); }
.features__media { margin-top: 36px; max-width: 420px; margin-inline: auto; }
.features__media img { filter: drop-shadow(0 22px 30px rgba(0, 0, 0, .28)); }

/* ---------- 9. Público-alvo ---------- */
.audience-list { display: grid; gap: 16px; }
.audience-item {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 22px;
  background: linear-gradient(135deg, rgba(226, 193, 151, .12), rgba(226, 193, 151, .04));
  border: 1px solid rgba(226, 193, 151, .25);
  border-radius: var(--radius);
}
.audience-item__icon {
  flex-shrink: 0;
  display: grid; place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--c-white);
}
.audience-item p { font-size: 1.02rem; font-weight: 500; color: rgba(255, 255, 255, .92); }
.audience__cta { margin-top: 34px; text-align: center; }
.audience__cta .btn { width: 100%; }

/* ---------- 10. Diferenciais ---------- */
.usp-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.usp-card {
  background: rgba(17, 17, 17, .06);
  border: 1px solid rgba(17, 17, 17, .12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.usp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.usp-card__media { aspect-ratio: 16 / 11; overflow: hidden; }
.usp-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.usp-card:hover .usp-card__media img { transform: scale(1.06); }
.usp-card__title { font-size: 1.3rem; font-weight: 800; margin: 20px 22px 8px; color: var(--c-dark); }
.usp-card__text { margin: 0 22px 24px; color: rgba(17, 17, 17, .78); font-weight: 500; }

/* ---------- 11. Galeria ---------- */
.gallery-grid { columns: 2; column-gap: 14px; }
.gallery-grid__item {
  break-inside: avoid; margin-bottom: 14px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226, 193, 151, .12);
}
.gallery-grid__item img { width: 100%; transition: transform .5s var(--ease); }
.gallery-grid__item:hover img { transform: scale(1.05); }

/* ---------- 12. Bônus ---------- */
.bonus-card {
  max-width: 560px; margin-inline: auto;
  position: relative;
  text-align: center;
  padding: 44px 28px 34px;
  background: linear-gradient(160deg, var(--c-dark-2), var(--c-dark-3));
  border: 1px solid rgba(226, 193, 151, .35);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.bonus-card__tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-gold); color: var(--c-white);
  font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 100px;
}
.bonus-card__icon {
  display: grid; place-items: center;
  width: 78px; height: 78px; margin: 4px auto 18px;
  border-radius: 20px;
  background: rgba(226, 193, 151, .12);
  color: var(--c-gold);
  border: 1px solid rgba(226, 193, 151, .3);
}
.bonus-card__title { font-size: 1.5rem; font-weight: 800; color: var(--c-gold); margin-bottom: 12px; }
.bonus-card__text { color: rgba(255, 255, 255, .8); }

/* ---------- 13. Sobre ---------- */
.about__inner { max-width: 760px; margin-inline: auto; text-align: center; }
.about__text { font-size: 1.08rem; font-weight: 500; color: rgba(17, 17, 17, .85); }
.about__text + .about__text { margin-top: 18px; }

/* ---------- 14. Oferta / Preço ---------- */
.offer-card {
  max-width: 560px; margin-inline: auto;
  background: linear-gradient(165deg, #1d1d1d, #141414);
  border: 1px solid rgba(226, 193, 151, .3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.offer-card__list { padding: 30px 28px; display: grid; gap: 14px; }
.offer-card__list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.05rem; font-weight: 600; color: rgba(255, 255, 255, .92);
}
.offer-card__list svg {
  flex-shrink: 0; color: var(--c-dark);
  background: var(--grad-gold); border-radius: 50%; padding: 4px;
  width: 26px; height: 26px;
}
.offer-card__price {
  background: var(--c-white);
  color: var(--c-ink);
  padding: 32px 28px 30px;
  text-align: center;
}
.offer-card__highlight {
  font-size: 1rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .02em; color: var(--c-gold-2); margin-bottom: 18px;
}
.price-old { font-size: 1rem; color: var(--c-muted); }
.price-old span { text-decoration: line-through; }
/* Bloco 12x — display principal do preço parcelado */
.price-installment {
  display: flex; align-items: baseline; justify-content: center; gap: 6px;
  margin: 14px 0 4px;
}
.price-inst__x {
  font-size: clamp(1.8rem, 8vw, 2.8rem);
  font-weight: 900; color: var(--c-ink);
}
.price-inst__amount {
  font-size: clamp(3rem, 15vw, 5rem);
  font-weight: 900; line-height: 1; color: var(--c-ink);
}
/* Preço à vista (secundário, abaixo do parcelamento) */
.price-cash {
  font-size: 1rem; color: var(--c-muted); margin: 10px 0 24px;
}
.price-cash strong { color: var(--c-ink); font-weight: 800; }
.offer-card__safe {
  margin-top: 16px; font-size: .85rem; color: var(--c-muted);
  display: inline-flex; align-items: center; gap: 7px;
}
.offer-card__safe svg { color: var(--c-gold-2); }

/* ---------- 15. Garantia ---------- */
.guarantee__inner { display: grid; gap: 24px; justify-items: center; text-align: center; max-width: 720px; margin-inline: auto; }
.guarantee__badge {
  position: relative;
  display: grid; place-items: center;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, rgba(226, 193, 151, .18), rgba(226, 193, 151, .04));
  border: 2px dashed rgba(226, 193, 151, .5);
  color: var(--c-gold);
}
.guarantee__days {
  position: absolute; bottom: 18px;
  font-size: 1.6rem; font-weight: 900; color: var(--c-white);
  display: flex; flex-direction: column; line-height: .9;
}
.guarantee__days small { font-size: .5rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--c-gold); }
.guarantee__text { color: rgba(255, 255, 255, .82); font-size: 1.05rem; }
.guarantee__text a { color: var(--c-gold); text-decoration: underline; }
.guarantee__seal { margin-top: 14px; font-weight: 800; color: var(--c-gold); font-size: 1.15rem; }

/* ---------- 16. FAQ ---------- */
.accordion { max-width: 760px; margin-inline: auto; display: grid; gap: 12px; }
.accordion__item {
  border: 1px solid rgba(17, 17, 17, .12);
  border-radius: var(--radius);
  overflow: hidden;
  background: #faf7f2;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.accordion__item.is-open { box-shadow: var(--shadow-sm); border-color: var(--c-gold-2); }
.accordion__trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px;
  background: transparent; border: 0;
  text-align: left;
  font-size: 1.05rem; font-weight: 700; color: var(--c-ink);
}
.accordion__chevron { flex-shrink: 0; color: var(--c-gold-2); transition: transform .35s var(--ease); }
.accordion__item.is-open .accordion__chevron { transform: rotate(135deg); }
.accordion__panel { overflow: hidden; height: 0; }
.accordion__panel p { padding: 0 22px 22px; color: var(--c-muted); font-weight: 500; }
.accordion__panel p a { color: var(--c-gold-2); text-decoration: underline; }
.faq__cta { margin-top: 36px; text-align: center; }

/* ---------- 17. Rodapé ---------- */
.site-footer { background: #0c0c0c; padding-block: 40px; border-top: 1px solid rgba(226, 193, 151, .12); }
.site-footer__inner { display: grid; gap: 18px; justify-items: center; text-align: center; }
.brand--footer .brand__name { font-size: .98rem; }
.site-footer__copy { color: rgba(255, 255, 255, .5); font-size: .85rem; }
.site-footer__links { display: inline-flex; gap: 12px; font-size: .85rem; color: rgba(255, 255, 255, .55); }
.site-footer__links a:hover { color: var(--c-gold); text-decoration: underline; }

/* ---------- 18. CTA fixa mobile ---------- */
.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 14px 20px;
  background: var(--grad-gold);
  color: var(--c-white);
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, .85);
  box-shadow: var(--shadow-md);
  font-weight: 800;
  transform: translateY(140%);
  transition: transform .45s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__label { font-size: .98rem; }
.sticky-cta__price {
  background: rgba(0, 0, 0, .25);
  padding: 6px 12px; border-radius: 8px; font-size: 1rem;
}

/* ---------- 19. Reveal on-scroll (CSS + IntersectionObserver) ----------
   Robusto: o conteúdo SEMPRE chega a opacity 1 mesmo sem rAF/GSAP.
   O estado inicial só é aplicado quando o JS está ativo (.js-ready). */
.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js-ready [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* Respeita usuários que preferem menos movimento */
@media (prefers-reduced-motion: reduce) {
  .js-ready [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn--primary::after { animation: none; }
  .hero__media img { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   20. Breakpoints (mobile-first → min-width)
   ========================================================= */

/* Telas ≥ 600px */
@media (min-width: 600px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 3; }
  .hero__actions { flex-direction: row; align-items: center; flex-wrap: wrap; }
  .hero__actions .btn { width: auto; }
  .audience__cta .btn, .offer-card__price .btn { width: auto; }
  .btn--xl { width: auto; }
}

/* Tablet ≥ 768px */
@media (min-width: 768px) {
  :root { --section-pad-y: 88px; }
  .audience-list { grid-template-columns: 1fr 1fr; }
  .sticky-cta { display: none; }
}

/* Desktop ≥ 1000px */
@media (min-width: 1000px) {
  :root { --section-pad-y: 104px; }
  .hero__inner { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 48px; }
  .hero__subtitle { font-size: 1.15rem; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .usp-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid { columns: 4; }
  .features { position: relative; }
  .features .container { display: grid; grid-template-columns: 1.4fr .8fr; gap: 40px; align-items: center; }
  .features .section__title { grid-column: 1 / -1; }
  .features__media { margin-top: 0; }
  .section__title { font-size: clamp(2rem, 3vw, 2.6rem); }
}

/* Larguras grandes ≥ 1280px */
@media (min-width: 1280px) {
  .hero__title { font-size: 3.5rem; }
}

/* =========================================================
   21. Componentes adicionais (melhorias)
   ========================================================= */

/* ---- Placeholders (conteúdo a preencher) ---- */
.ph {
  border-bottom: 1px dashed currentColor;
  opacity: .85;
}
.media-ph {
  display: grid; place-items: center;
  min-height: 160px;
  border: 2px dashed rgba(226, 193, 151, .5);
  border-radius: var(--radius);
  color: var(--c-gold);
  font-size: .85rem; text-align: center; padding: 20px;
}

/* ---- Barra de confiança ---- */
.trust { background: #0d0d0d; border-block: 1px solid rgba(226, 193, 151, .14); padding-block: 22px; }
.trust__list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 12px; }
.trust__item { display: flex; align-items: center; justify-content: center; gap: 12px; color: rgba(255, 255, 255, .8); font-size: .9rem; line-height: 1.25; }
.trust__item svg { flex-shrink: 0; color: var(--c-gold); }
.trust__item strong { color: var(--c-white); }

/* ---- Como funciona (passos) ---- */
.steps-grid { display: grid; gap: 22px; counter-reset: step; }
.step-card {
  position: relative;
  padding: 32px 24px 26px;
  background: linear-gradient(160deg, var(--c-dark-2), var(--c-dark-3));
  border: 1px solid rgba(226, 193, 151, .2);
  border-radius: var(--radius-lg);
  text-align: center;
}
.step-card__num {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad-gold); color: var(--c-white);
  font-weight: 800; font-size: 1.1rem; box-shadow: var(--shadow-gold);
}
.step-card__icon {
  display: grid; place-items: center; width: 64px; height: 64px;
  margin: 6px auto 16px; border-radius: 16px;
  background: rgba(226, 193, 151, .1); color: var(--c-gold);
  border: 1px solid rgba(226, 193, 151, .25);
}
.step-card__title { font-size: 1.2rem; font-weight: 800; margin-bottom: 10px; color: var(--c-white); }
.step-card__text { color: rgba(255, 255, 255, .76); font-weight: 500; }

/* ---- Comparação ---- */
.compare-grid { display: grid; gap: 18px; }
.compare-card { padding: 26px 24px; border-radius: var(--radius-lg); border: 1px solid; }
.compare-card--bad { background: rgba(255, 90, 90, .06); border-color: rgba(255, 120, 120, .3); }
.compare-card--good { background: rgba(226, 193, 151, .08); border-color: rgba(226, 193, 151, .4); }
.compare-card__title { display: flex; align-items: center; gap: 10px; font-size: 1.15rem; font-weight: 800; margin-bottom: 16px; }
.compare-card--bad .compare-card__title { color: #ff8b8b; }
.compare-card--good .compare-card__title { color: var(--c-gold); }
.compare-card__list { display: grid; gap: 12px; }
.compare-card__list li { position: relative; padding-left: 26px; color: rgba(255, 255, 255, .85); font-weight: 500; }
.compare-card__list li::before { content: ""; position: absolute; left: 8px; top: 9px; width: 7px; height: 7px; border-radius: 50%; }
.compare-card--bad .compare-card__list li::before { background: #ff8b8b; }
.compare-card--good .compare-card__list li::before { background: var(--c-gold); }
.compare__stat { text-align: center; margin-top: 28px; color: rgba(255, 255, 255, .8); font-size: 1.05rem; }
.compare__stat strong { color: var(--c-gold); }

/* ---- Depoimentos ---- */
.testimonials-grid { display: grid; gap: 18px; }
.testimonial-card {
  background: var(--c-white); color: var(--c-ink);
  border-radius: var(--radius-lg); padding: 26px 24px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(17, 17, 17, .06);
}
.testimonial-card__stars { display: flex; gap: 3px; color: #f5a623; margin-bottom: 14px; }
.testimonial-card__quote { font-size: 1.02rem; font-weight: 500; line-height: 1.5; color: #2a2a2a; font-style: italic; margin-bottom: 20px; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  display: grid; place-items: center; width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%; background: var(--grad-gold); color: var(--c-white);
  font-weight: 800; font-size: .9rem;
}
.testimonial-card__meta { display: flex; flex-direction: column; line-height: 1.3; }
.testimonial-card__meta strong { color: var(--c-ink); }
.testimonial-card__meta small { color: var(--c-muted); }
.testimonials__note { text-align: center; margin-top: 22px; font-size: .82rem; color: rgba(17, 17, 17, .55); }

/* ---- Detalhes da oferta ---- */
.offer-card__specs {
  display: grid; gap: 1px; background: rgba(226, 193, 151, .14);
  border-block: 1px solid rgba(226, 193, 151, .14);
}
.offer-card__specs li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 13px 28px; background: #161616;
  font-size: .92rem;
}
.offer-card__specs span { color: rgba(255, 255, 255, .6); }
.offer-card__specs strong { color: var(--c-white); text-align: right; font-weight: 600; }

/* ---- Rodapé multi-coluna ---- */
.site-footer__inner { display: grid; gap: 30px; text-align: left; justify-items: start; }
.site-footer__col p { color: rgba(255, 255, 255, .6); font-size: .88rem; margin-bottom: 4px; }
.site-footer__col a { color: rgba(255, 255, 255, .72); display: inline-flex; align-items: center; gap: 6px; }
.site-footer__col a:hover { color: var(--c-gold); }
.site-footer__tagline { max-width: 34ch; margin-top: 12px; }
.site-footer__heading { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--c-gold); margin-bottom: 12px; font-weight: 800; }
.site-footer__links { display: flex; flex-direction: column; gap: 8px; }
.site-footer__links a { color: rgba(255, 255, 255, .72); font-size: .88rem; }
.site-footer__bottom {
  margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .08);
  display: grid; gap: 8px;
}
.site-footer__payments { color: rgba(255, 255, 255, .55); font-size: .82rem; display: inline-flex; align-items: center; gap: 7px; }
.site-footer__payments svg { color: var(--c-gold); }

/* ---- Banner de cookies (LGPD) ---- */
.cookie-bar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 70;
  display: flex; flex-direction: column; gap: 14px;
  padding: 18px 20px;
  background: #15151a; color: rgba(255, 255, 255, .9);
  border: 1px solid rgba(226, 193, 151, .3);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transform: translateY(160%); transition: transform .5s var(--ease);
}
.cookie-bar.is-visible { transform: translateY(0); }
.cookie-bar[hidden] { display: none; }
.cookie-bar__text { font-size: .85rem; line-height: 1.45; }
.cookie-bar__text a { color: var(--c-gold); text-decoration: underline; }
.cookie-bar__actions { display: flex; gap: 10px; justify-content: flex-end; }

/* Quando há sticky-cta + cookie no mobile, empilha o cookie acima */
.cookie-bar.is-visible ~ .sticky-cta.is-visible { bottom: 104px; }

/* ---- Responsivo dos novos componentes ---- */
@media (min-width: 600px) {
  .trust__list { grid-template-columns: repeat(4, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .compare-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .cookie-bar { flex-direction: row; align-items: center; justify-content: space-between; left: 50%; right: auto; transform: translate(-50%, 160%); width: min(880px, calc(100% - 24px)); }
  .cookie-bar.is-visible { transform: translate(-50%, 0); }
  .cookie-bar__actions { flex-shrink: 0; }
}
@media (min-width: 768px) {
  .site-footer__inner { grid-template-columns: 1.6fr 1fr 1.2fr 1fr; }
  .site-footer__bottom { grid-template-columns: 1fr auto; align-items: center; }
  .site-footer__bottom .site-footer__copy { text-align: right; }
}
@media (min-width: 1000px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================================
   22. Páginas legais (termos / privacidade / reembolso)
   ========================================================= */
.legal { background: var(--c-white); color: #2a2a2a; min-height: 100vh; }
.legal__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--gutter); background: var(--c-dark);
  position: sticky; top: 0; z-index: 10;
}
.legal__back { color: var(--c-gold); font-size: .9rem; font-weight: 600; }
.legal__back:hover { text-decoration: underline; }
.legal__wrap { max-width: 760px; margin-inline: auto; padding: 48px var(--gutter) 80px; }
.legal__wrap h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); font-weight: 800; color: var(--c-ink); margin-bottom: 8px; }
.legal__updated { color: var(--c-muted); font-size: .85rem; margin-bottom: 32px; }
.legal__wrap h2 { font-size: 1.25rem; font-weight: 800; color: var(--c-ink); margin: 34px 0 12px; }
.legal__wrap p, .legal__wrap li { color: #3a3a3a; line-height: 1.7; margin-bottom: 12px; }
.legal__wrap ul { list-style: disc; padding-left: 22px; margin-bottom: 12px; }
.legal__wrap a { color: var(--c-gold-2); text-decoration: underline; }
.legal__note {
  background: #faf3e8; border: 1px solid rgba(192, 145, 85, .35);
  border-radius: var(--radius); padding: 16px 18px; font-size: .9rem; color: #5b4a30;
}
