/* ==========================================================================
   Kit Productivo 2.0 — Landing page (reconstrução sem Lovable)
   CSS único, sem dependências. Tudo editável à mão.

   Índice:
      1. Tokens (cores, sombras, raios)
      2. Reset
      3. Barra fixa de lançamento
      4. Fundos e textos com gradiente
      5. Layout (seções e containers)
      6. Tipografia
      7. Botões
      8. Badges e pills (inclui o selo de formato)
      9. Janela de navegador (mockups)
     10. Hero
     11. Marquee de logos
     12. Metodologias
     13. Cards
     14. Depoimentos (carrossel)
     15. Garantia
     16. Oferta / pricing (inclui a barra de escassez)
     17. FAQ
     18. Rodapé
     19. Utilitários
   ========================================================================== */

/* ---------------------------------------------------- 1. Tokens ---------- */
:root {
  /* Marca — mude aqui para trocar as cores de todo o site */
  --background:       0 0% 100%;
  --foreground:       0 0% 0%;
  --muted-foreground: 0 0% 35%;
  --accent:          18 100% 57%;   /* laranja  #ff6524 */
  --cta:            351 86% 59%;    /* vermelho #f03d58 */
  --border:           0 0% 90%;

  /* Altura da barra fixa do topo (o main.js ajusta ao valor real) */
  --topbar: 2.5rem;

  --gradient-orange: linear-gradient(135deg, hsl(18 100% 57%) 0%, hsl(40 100% 50%) 100%);
  --gradient-light:  linear-gradient(135deg, #ffecb3, #ffe6cc, #ffe699);

  /* Fundo pontilhado */
  --dot-color:   0 0% 90%;
  --dot-size:    1px;
  --dot-spacing: 24px;

  /* Cinzas */
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Sombras */
  --shadow-sm:  0 1px 2px 0 rgb(0 0 0 / .05);
  --shadow-lg:  0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
  --shadow-xl:  0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / .25);

  /* Raios */
  --r-md:  .375rem;
  --r-lg:  .5rem;
  --r-xl:  .75rem;
  --r-2xl: 1rem;
  --r-3xl: 1.5rem;
}

/* ----------------------------------------------------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  padding-top: var(--topbar);   /* espaço para a barra fixa do topo */
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, p { margin: 0; }
a { color: inherit; text-decoration: none; }

/* Regra-chave contra imagens esticadas: a proporção natural sempre manda.
   Nunca definimos largura E altura fixas na mesma imagem. */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg { display: block; }

[hidden] { display: none !important; }

main { overflow-x: clip; }

/* âncoras (#oferta, #depoimentos...) não param escondidas embaixo da barra */
section[id] { scroll-margin-top: calc(var(--topbar) + .5rem); }

/* ------------------------------------- 3. Barra fixa de lançamento ------- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: linear-gradient(90deg, #ff6524 0%, #ff8c1a 55%, #ff6a00 100%);
  color: #fff;
  box-shadow: 0 1px 12px rgb(0 0 0 / .18);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .375rem;
  margin: 0;
  padding: .5rem 1rem;
  font-size: .8125rem;
  line-height: 1.25rem;
  font-weight: 600;
  text-align: center;
}
.topbar__clock {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  background: rgb(0 0 0 / .18);
  border-radius: 9999px;
  padding: .0625rem .5rem;
}
@media (min-width: 768px) {
  .topbar__inner { font-size: .875rem; gap: .5rem; }
}

/* ------------------------------------- 4. Fundos e textos com gradiente -- */
.dot-grid-bg {
  background-color: hsl(var(--background));
  background-image: radial-gradient(circle, hsl(var(--dot-color)) var(--dot-size), transparent var(--dot-size));
  background-size: var(--dot-spacing) var(--dot-spacing);
}

.liquid-gradient-bg {
  background: linear-gradient(135deg, #ff6524, #ff8c1a, #ee2b4b, #ff6a00, #ff6524, #fa0);
  background-size: 400% 400%;
  animation: liquid-flow 15s ease infinite;
  will-change: background-position;
}

.liquid-gradient-bg-card {
  background: linear-gradient(135deg, #ff6524, #ff700a, #e8304f, #ff8c1a, #ff6524);
  background-size: 300% 300%;
  animation: liquid-flow 10s ease infinite;
  will-change: background-position;
}

@keyframes liquid-flow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.gradient-text {
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.gradient-text-light {
  background: var(--gradient-light);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .liquid-gradient-bg,
  .liquid-gradient-bg-card,
  .marquee__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------------------------------------------------- 5. Layout ---------- */
.section       { padding: 5rem 1rem; }
.section--hero { padding: 1rem 1rem 3rem; min-height: calc(100vh - var(--topbar)); }
.section--final{ padding: 8rem 1rem 5rem; }

.container      { width: 100%; max-width: 72rem; margin-inline: auto; }
.container--lg  { max-width: 32rem; }
.container--3xl { max-width: 48rem; }
.container--4xl { max-width: 56rem; }

.center { text-align: center; }

/* ------------------------------------------------ 6. Tipografia ----------
   Os pares tamanho/altura-de-linha são os mesmos da página original,
   para que cada texto quebre exatamente nas mesmas linhas.
   ------------------------------------------------------------------------ */
.h1 {
  font-size: 1.875rem;
  line-height: 1.25;
  font-weight: 700;
  max-width: 56rem;
  margin-bottom: 1.5rem;
}
.h2 { font-size: 1.875rem; line-height: 2.25rem; font-weight: 700; }
.h2--sm { font-size: 1.5rem; line-height: 2rem; }          /* garantia */
.h2--narrow { max-width: 56rem; margin-inline: auto; }
.h3 { font-size: 1.5rem;   line-height: 2rem;    font-weight: 700; }
.h4 { font-size: 1.125rem; line-height: 1.75rem; font-weight: 700; }

.lead { font-size: 1.125rem; line-height: 1.75rem; color: hsl(var(--muted-foreground)); }
.lead--light { color: rgb(255 255 255 / .9); }

.muted   { color: hsl(var(--muted-foreground)); }
.text-xs { font-size: .75rem;   line-height: 1rem; }
.text-sm { font-size: .875rem;  line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem;  line-height: 1.75rem; }
.italic  { font-style: italic; }
.relaxed { line-height: 1.625; }   /* precisa vir depois dos tamanhos acima */

@media (min-width: 768px) {
  .h1     { font-size: 3rem;     line-height: 1; }
  .h2     { font-size: 2.25rem;  line-height: 2.5rem; }
  .h2--sm { font-size: 1.875rem; line-height: 2.25rem; }
  .h3     { font-size: 1.875rem; line-height: 2.25rem; }
  .lead--xl { font-size: 1.25rem; line-height: 1.75rem; }
}
@media (min-width: 1024px) {
  .h1     { font-size: 3.75rem; line-height: 1; }
  .h2--xl { font-size: 3rem;    line-height: 1; }
  .h2--sm { font-size: 2.25rem; line-height: 2.5rem; }
}

/* --------------------------------------------------- 7. Botões ----------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  white-space: nowrap;
  height: 2.5rem;
  padding-inline: 3rem;
  border: 1px solid transparent;
  border-radius: var(--r-md);
  font-size: .875rem;
  font-family: inherit;
  cursor: pointer;
  transition: all .2s ease;
}
.btn:focus-visible {
  outline: 2px solid hsl(var(--accent));
  outline-offset: 2px;
}

.btn--cta {
  background: hsl(var(--cta));
  color: #fff;
  border-color: hsl(var(--accent));
  box-shadow: var(--shadow-lg);
  font-weight: 700;
}
.btn--cta:hover {
  background: hsl(var(--cta) / .9);
  box-shadow: var(--shadow-xl);
  transform: scale(1.02);
}

.btn--outline {
  background: hsl(var(--background));
  border-color: hsl(var(--foreground) / .2);
  font-weight: 500;
}
.btn--outline:hover {
  background: hsl(var(--accent));
  color: #fff;
  border-color: hsl(var(--accent));
}

.btn--lg    { height: 3rem; padding-inline: 2rem; border-radius: var(--r-lg); font-size: 1rem; }
.btn--block { width: 100%; padding-inline: 2rem; height: 3rem; border-radius: var(--r-lg); font-size: 1.125rem; }

/* ------------------------------------------ 8. Badges e pills ------------ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 9999px;
  font-size: .875rem;
  line-height: 1.25rem;
  font-weight: 500;
}
.badge--award {
  background: #fff;
  border: 1px solid hsl(var(--accent) / .5);
  box-shadow: var(--shadow-sm);
}
.badge--award .badge__kicker,
.badge--award .badge__title { display: block; }
.badge--award .badge__kicker {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .1em;
  line-height: 1.25;
  color: hsl(var(--muted-foreground));
}
.badge--award .badge__title {
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.25;
  color: hsl(var(--foreground));
}
.badge--award .badge__emoji { font-size: 1.125rem; }

.badge--glass {
  border: 1px solid hsl(var(--accent) / .3);
  background: hsl(var(--accent) / .1);
  color: #fff;
  backdrop-filter: blur(8px);
}
.badge--gray {
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
  color: var(--gray-700);
}
/* Selo de formato — fica acima da headline */
.badge--format {
  border: 1px solid hsl(var(--accent) / .35);
  background: hsl(var(--accent) / .08);
  color: hsl(18 85% 36%);
  font-size: .75rem;
  line-height: 1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.badge__label {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .75rem;
  line-height: 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: .875rem;
  line-height: 1.25rem;
  font-weight: 500;
  text-align: left;
}
@media (min-width: 640px) { .pill { white-space: nowrap; } }

/* Círculo laranja com check */
.check {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: hsl(var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
}
.check svg { width: .75rem; height: .75rem; color: #fff; }

/* ------------------------------- 9. Janela de navegador (mockups) -------- */
.browser {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}
.browser__bar {
  background: var(--gray-800);
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.browser__dot { width: .75rem; height: .75rem; border-radius: 9999px; }
.browser__dot--r { background: #ef4444; }
.browser__dot--y { background: #eab308; }
.browser__dot--g { background: #22c55e; }
.browser__shot { display: block; width: 100%; height: auto; }

.feature-shot { max-width: 64rem; margin-inline: auto; }

/* ----------------------------------------------------- 10. Hero ----------- */
.hero { display: flex; flex-direction: column; align-items: center; text-align: center; }

/* Logo: só a altura é fixa; a largura acompanha a proporção real (367×59) */
.logo       { height: 2rem;   width: auto; }
.logo--card { height: 2.5rem; width: auto; }
.logo--foot { height: 3rem;   width: auto; filter: brightness(0) invert(1); }
@media (min-width: 768px) { .logo { height: 2.5rem; } }

.hero__logo    { margin-bottom: .5rem; }
.hero__format  { margin: .25rem 0 1.25rem; }
.hero__badge   { margin-bottom: 2rem; }
.hero__sub     { max-width: 42rem; margin-bottom: 1.5rem; }
.hero__mockup  { width: 100%; max-width: 56rem; margin-bottom: 2.5rem; }
.hero__mockup img { width: 100%; height: auto; }
.hero__actions { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 3rem; }
@media (min-width: 640px) { .hero__actions { flex-direction: row; justify-content: center; } }

/* Selo de avaliações: idem — altura fixa, largura proporcional (301×47) */
.reviews-badge {
  height: 3rem;
  width: auto;
  margin: 0 auto 1.5rem;
}
@media (min-width: 768px) { .reviews-badge { height: 4rem; } }

.hero__proof { width: 100%; }
.hero__proof-label { color: hsl(var(--muted-foreground)); margin-bottom: 2rem; }

/* --------------------------------------- 11. Marquee de logos ------------ */
.marquee { overflow: hidden; }
.marquee__track {
  display: flex;
  width: max-content;
  padding-block: 1rem;
  animation: marquee 30s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
  flex-shrink: 0;
}
.marquee__group img {
  height: 2rem;
  width: auto;
  flex-shrink: 0;
  filter: grayscale(1);
  opacity: .6;
  transition: filter .2s ease, opacity .2s ease;
}
.marquee__group img:hover { filter: grayscale(0); opacity: 1; }
@media (min-width: 768px) { .marquee__group img { height: 2.5rem; } }

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* -------------------------------------------- 12. Metodologias ----------- */
.methods { display: flex; flex-direction: column; gap: 5rem; }
@media (min-width: 768px) { .methods { gap: 8rem; } }

.method { display: grid; gap: 2rem; align-items: center; }
.method__text { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.method__text .pill { align-self: flex-start; }

@media (min-width: 768px) {
  .method { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .method--reverse .method__text  { order: 2; }
  .method--reverse .method__media { order: 1; }
}

.method__frame {
  border-radius: var(--r-2xl);
  padding: 1rem;
  overflow: hidden;
}
@media (min-width: 768px) { .method__frame { padding: 1.5rem; } }

.section__head { text-align: center; margin-bottom: 4rem; }
.section__head .badge { margin-bottom: 1.5rem; }
.section__head .h2    { margin-bottom: 1rem; }
.section__head .lead  { max-width: 42rem; margin-inline: auto; }

/* ---------------------------------------------------- 13. Cards ---------- */
.card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease;
  overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-xl); }
.card__body { padding: 1.5rem; }
.card__body .h4 { margin-bottom: .5rem; }
.card__media { padding: 1.5rem; }
.card--pad { padding: 1.5rem; }
.card__media img { width: 100%; height: auto; border-radius: var(--r-lg); }
.card__media--dark { background: var(--gray-900); position: relative; }

.card__apps { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.card__apps img { width: 1.5rem; height: 1.5rem; }
.card__title { font-size: 1.25rem; line-height: 1.75rem; font-weight: 700; margin-bottom: .5rem; }

.grid-2 { display: grid; gap: 1.5rem; }
.grid-3 { display: grid; gap: 1.5rem; }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Botão de play sobre o mockup da área de membros */
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.play-overlay__circle {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: rgb(255 255 255 / .2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-overlay__triangle {
  width: 0;
  height: 0;
  margin-left: .25rem;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 16px solid #fff;
}

/* Bônus: altura uniforme SEM distorcer — a largura acompanha a proporção */
.bonus__img {
  height: 12rem;
  width: auto;
  max-width: 100%;
  margin: 0 auto 1rem;
  object-fit: contain;
}

/* --------------------------------- 14. Depoimentos (carrossel) ----------- */
.testimonials {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
  cursor: grab;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.testimonials::-webkit-scrollbar { display: none; }
.testimonials.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.testimonials__item { flex: 0 0 auto; width: 16rem; }
.testimonials__item img {
  width: 100%;
  height: auto;
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-lg);
  user-select: none;
}
@media (min-width: 768px) { .testimonials__item { width: 18rem; } }

.review { padding: 1.5rem; }
.review__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.review__avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  object-fit: cover;
  flex-shrink: 0;
}
.review__name { font-weight: 700; }
.review__stars { color: #fbbf24; font-size: 1.125rem; line-height: 1.75rem; margin-bottom: .75rem; }

/* -------------------------------------------------- 15. Garantia -------- */
.guarantee {
  position: relative;
  background: rgb(255 255 255 / .1);
  backdrop-filter: blur(16px);
  border: 1px solid rgb(255 255 255 / .2);
  border-radius: var(--r-3xl);
  box-shadow: var(--shadow-2xl);
  padding: 2rem;
}
.guarantee__shield { position: absolute; top: 1rem; right: 1rem; width: 2rem; height: 2rem; color: #fff; }
.guarantee__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.guarantee__seal { width: 10rem; height: auto; flex-shrink: 0; filter: drop-shadow(0 25px 25px rgb(0 0 0 / .15)); }
.guarantee h2 { color: #fff; margin-bottom: 1rem; }
.guarantee p  { color: rgb(255 255 255 / .8); }

@media (min-width: 768px) {
  .guarantee { padding: 3rem; }
  .guarantee__shield { top: 1.5rem; right: 1.5rem; }
  .guarantee__inner { flex-direction: row; gap: 3rem; text-align: left; }
  .guarantee__seal { width: 13rem; }
}

/* ------------------------------------------- 16. Oferta / pricing ------- */
.offer-banner {
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  text-align: center;
  padding: .75rem 1rem;
  margin: 0 -1rem 3rem;
}
.offer-banner p {
  font-size: .875rem;
  line-height: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .025em;
}
@media (min-width: 768px) { .offer-banner p { font-size: 1rem; line-height: 1.5rem; } }

.pricing {
  position: relative;
  background: #fff;
  border: 2px solid hsl(var(--accent));
  border-radius: var(--r-3xl);
  box-shadow: 0 20px 25px -5px hsl(var(--accent) / .2), 0 8px 10px -6px hsl(var(--accent) / .2);
  margin-top: 6rem;
}
.pricing__product {
  position: absolute;
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 16rem;
  z-index: 10;
}
.pricing__product img { width: 100%; height: auto; }
/* O topo é generoso porque a imagem do produto invade o cartão.
   Folga da base da imagem até as estrelas: 18,8px no celular
   e 45,5px no desktop — metade do que era antes. */
.pricing__body { padding: 6.825rem 1.5rem 1.5rem; text-align: center; }
@media (min-width: 768px) {
  .pricing__product { width: 20rem; }
  .pricing__body { padding: 11.156rem 2rem 2rem; }
}

.pricing__stars { font-size: 1.5rem; line-height: 2rem; margin-bottom: .25rem; }
.pricing__logo  { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.divider { border-top: 1px dashed var(--gray-200); margin-bottom: 1.5rem; }
.divider--tight { margin-bottom: 1rem; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  max-width: 20rem;
  margin: 0 auto 1rem;
}
.feature-list--last { margin-bottom: 1.5rem; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  line-height: 1.25rem;
  text-align: left;
}
.feature-list { list-style: none; padding: 0; }

.pricing__plus { font-size: 1.125rem; line-height: 1.75rem; font-weight: 700; margin-bottom: .5rem; }
.pricing__bonus-label { color: hsl(var(--accent)); font-weight: 700; margin-bottom: 1rem; }

.price { margin-bottom: 1.5rem; }
.price__old-row { display: flex; align-items: center; justify-content: center; gap: .75rem; margin-bottom: .25rem; }
.price__old { color: var(--gray-400); text-decoration: line-through; font-size: 1.125rem; }
.price__off {
  background: #fee2e2;
  color: hsl(var(--cta));
  padding: .125rem .5rem;
  border-radius: var(--r-md);
  font-size: .875rem;
  font-weight: 700;
}
.price__now { font-size: 2.25rem; line-height: 2.5rem; font-weight: 700; }
@media (min-width: 768px) { .price__now { font-size: 3rem; line-height: 1; } }

/* Preço convertido para a moeda do visitante (preenchido pelo main.js) */
.price__local {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: center;
  gap: .375rem;
  margin-top: .625rem;
  padding: .25rem .75rem;
  border-radius: 9999px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}
.price__local-value {
  font-size: .875rem;
  line-height: 1.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}
.price__local-note {
  font-size: .6875rem;
  line-height: 1rem;
  color: hsl(var(--muted-foreground));
}

/* Escassez: barra de "descargas completadas" */
.scarcity { margin-bottom: 1.25rem; }
.scarcity__label {
  font-size: .8125rem;
  line-height: 1.25rem;
  color: hsl(var(--foreground));
  margin-bottom: .375rem;
}
.scarcity__label strong { font-weight: 800; }
.scarcity__track {
  height: .5rem;
  border-radius: 9999px;
  background: var(--gray-200);
  overflow: hidden;
}
.scarcity__fill {
  display: block;
  height: 100%;
  width: var(--progress, 78%);
  border-radius: 9999px;
  background: var(--gradient-orange);
}
.scarcity__note {
  margin-top: .375rem;
  font-size: .6875rem;
  line-height: 1rem;
  font-style: italic;
  color: hsl(var(--muted-foreground));
}

.pricing__fineprint {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  color: hsl(var(--muted-foreground));
  margin-top: 1rem;
}
.pricing__fineprint p,
.pricing__fineprint div { font-size: .75rem; line-height: 1rem; font-style: italic; }
.pricing__secure { display: flex; align-items: center; justify-content: center; gap: .25rem; }
.pricing__secure svg { width: .75rem; height: .75rem; color: #16a34a; flex-shrink: 0; }

/* ------------------------------------------------------ 17. FAQ --------- */
.faq { display: flex; flex-direction: column; gap: 1rem; }
.faq__item {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  padding-inline: 1.5rem;
}
.faq__trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: .25rem;
  padding: 1rem 0;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 600;
  color: hsl(var(--foreground));
  text-align: left;
  cursor: pointer;
}
.faq__trigger svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faq__trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.faq__panel {
  overflow: hidden;
  height: 0;
  transition: height .2s ease-out;
}
.faq__panel > div {
  padding-bottom: 1rem;
  font-size: .875rem;
  line-height: 1.625;
  color: hsl(var(--muted-foreground));
}

/* --------------------------------------------------- 18. Rodapé --------- */
.footer {
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  padding: 3rem 1rem;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  text-align: center;
}
.footer__meta { display: flex; flex-direction: column; gap: .5rem; }
.footer__meta p { font-size: .875rem; line-height: 1.25rem; }
.footer__copy    { color: rgb(255 255 255 / .6); }
.footer__support { padding-top: 1rem; color: rgb(255 255 255 / .8); }
.footer a { transition: color .2s ease; }
.footer a:hover { color: hsl(var(--accent)); }
@media (min-width: 768px) {
  .footer__inner { flex-direction: row; text-align: left; }
}

/* ----------------------------------------------- 19. Utilitários -------- */
.mb-2  { margin-bottom: .5rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-32 { margin-bottom: 8rem; }
.mt-4  { margin-top: 1rem; }
.white { color: #fff; }
.max-w-2xl { max-width: 42rem; margin-inline: auto; }
.max-w-3xl { max-width: 48rem; margin-inline: auto; }
