/* ============================================================
   DESAFIO MINI-APP NO AR — Landing Page
   Design System: LP-DESIGN-SYSTEM.md (Fábrica de Ofertas)
   Accent 1: #3EC878 (verde) | Accent 2: #F4845F (coral)
   ============================================================ */

/* ── Tokens CSS ────────────────────────────────────────────── */
:root {
  /* Accents */
  --a1:           #3EC878;
  --a1-dim:       #2EA862;
  --a1-glow:      rgba(62, 200, 120, 0.18);
  --a2:           #F4845F;
  --a2-dim:       #E0684A;
  --a2-glow:      rgba(244, 132, 95, 0.15);

  /* Dark */
  --dark-base:    #0B1F16;
  --dark-surface: #0F2319;
  --dark-card:    #152B1E;
  --dark-card-2:  #1B3324;
  --dark-border:  rgba(255,255,255,0.07);
  --dark-border-accent: rgba(62,200,120,0.22);

  /* Light */
  --light-base:   #F5FAF7;
  --light-surface:#EBF5EF;
  --light-card:   #FFFFFF;
  --light-border: rgba(0,0,0,0.08);
  --light-border-accent: rgba(46,168,98,0.30);

  /* Text — dark sections */
  --t-dk:         #FFFFFF;
  --t-dk-body:    #C2DACA;
  --t-dk-muted:   #7BAD90;

  /* Text — light sections */
  --t-lt:         #0D2418;
  --t-lt-body:    #1D4230;
  --t-lt-muted:   #4E7A5E;

  /* Spacing */
  --section-pad:  56px;
  --container:    1100px;
  --gap-cards:    16px;
  --pad-card:     20px;
  --pad-container:16px;
}

@media (min-width: 640px) {
  :root {
    --section-pad:  72px;
    --gap-cards:    20px;
    --pad-card:     28px;
    --pad-container:20px;
  }
}
@media (min-width: 860px) {
  :root {
    --section-pad:  88px;
    --pad-card:     32px;
    --pad-container:24px;
  }
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--t-lt);
  background: var(--dark-base);
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: auto; }
ul  { list-style: none; }
a   { text-decoration: none; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-container);
}

/* ── Typography tokens ─────────────────────────────────────── */
.t-subhead {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
@media (min-width: 480px) {
  .t-subhead { font-size: 1.1rem; }
}

/* ── Colour helpers ────────────────────────────────────────── */
.c-a1  { color: var(--a1); }
.c-a2  { color: var(--a2); }
.c-a1d { color: var(--a1-dim); }

/* ── Icon Box ──────────────────────────────────────────────── */
.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 12px;
}
.icon-box--lg { width: 48px; height: 48px; border-radius: 12px; }
.icon-box--md { width: 40px; height: 40px; }
.icon-box svg { width: 20px; height: 20px; }
.icon-box--lg svg { width: 24px; height: 24px; }

.icon-box--a1 { background: rgba(62,200,120,0.12); color: var(--a1); }
.icon-box--a2 { background: rgba(244,132,95,0.12); color: var(--a2); }

/* ── Badges ────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.badge--product {
  color: var(--a1);
  background: rgba(62,200,120,0.10);
  border: 1px solid rgba(62,200,120,0.30);
}
.badge--bonus {
  color: var(--a2);
  background: rgba(244,132,95,0.08);
  border: 1px solid rgba(244,132,95,0.25);
}
.badge--live {
  color: var(--a2);
  background: rgba(244,132,95,0.10);
  border: 1px solid rgba(244,132,95,0.30);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.badge--live::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--a2);
  border-radius: 50%;
  animation: pulse-dot 1.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
}
.btn__icon { display: flex; align-items: center; }
.btn__icon svg { width: 16px; height: 16px; }

/* Nav button */
.btn--nav {
  background: var(--a1-glow);
  color: var(--a1);
  border: 1px solid rgba(62,200,120,0.25);
  padding: 8px 20px;
  font-size: 0.82rem;
}
.btn--nav:hover { background: rgba(62,200,120,0.25); transform: translateY(-2px); }

/* Hero button (accent 1) */
.btn--hero {
  background: var(--a1);
  color: var(--dark-base);
  padding: 14px 28px;
  font-size: clamp(0.88rem, 2.5vw, 1rem);
  width: 100%;
  max-width: 360px;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(62,200,120,0.30);
}
.btn--hero:hover {
  background: var(--a1-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(62,200,120,0.40);
}
.btn--hero:active { transform: translateY(0); }
@media (min-width: 480px) {
  .btn--hero { width: auto; }
}

/* CTA button (accent 2 — pulsante) */
.btn--cta {
  background: var(--a2);
  color: #fff;
  padding: 16px 32px;
  font-size: clamp(0.88rem, 2.5vw, 1.05rem);
  width: 100%;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(244,132,95,0.35);
  animation: cta-pulse 2.4s ease-in-out infinite;
}
.btn--cta:hover {
  background: var(--a2-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(244,132,95,0.50);
  animation: none;
}
.btn--cta:active { transform: translateY(0); }
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(244,132,95,0.35); }
  50%       { box-shadow: 0 6px 32px rgba(244,132,95,0.60); }
}

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,31,22,0.90);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dark-border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-header__logo { display: flex; align-items: center; }

/* ── Sections ──────────────────────────────────────────────── */
.section {
  padding: var(--section-pad) 0;
}
.section--dk   { background: var(--dark-base);    color: var(--t-dk); }
.section--dk-s { background: var(--dark-surface);  color: var(--t-dk); }
.section--lt   { background: var(--light-base);    color: var(--t-lt); }
.section--lt-s { background: var(--light-surface); color: var(--t-lt); }

.section__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  text-align: center;
  margin-bottom: 16px;
}
.section--dk   .section__title,
.section--dk-s .section__title { color: var(--t-dk); }
.section--lt   .section__title,
.section--lt-s .section__title { color: var(--t-lt); }

.section__sub {
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}
.section--dk   .section__sub,
.section--dk-s .section__sub { color: var(--t-dk-body); }
.section--lt   .section__sub,
.section--lt-s .section__sub { color: var(--t-lt-body); }

/* ── Cards ─────────────────────────────────────────────────── */
.card-dk {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  padding: var(--pad-card);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card-dk:hover {
  border-color: var(--dark-border-accent);
  transform: translateY(-2px);
}

.card-lt {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  padding: var(--pad-card);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.card-lt:hover {
  border-color: var(--light-border-accent);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  background: var(--dark-base);
  color: var(--t-dk);
  padding-top: calc(var(--section-pad) + 8px);
  padding-bottom: var(--section-pad);
}
.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  text-align: center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero__headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--t-dk);
}

.hero__sub {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  line-height: 1.75;
  color: var(--t-dk-body);
  max-width: 520px;
}

.hero__date-block {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--t-dk-muted);
}
.hero__date-block svg { width: 16px; height: 16px; color: var(--a1); }
.hero__date-block strong { color: var(--a1); }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--t-dk-muted);
}
.hero__trust-item svg { width: 14px; height: 14px; color: var(--a1); }

/* ── Hero Screen Mock ──────────────────────────────────────── */
.hero__visual {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__screen-mock {
  position: relative;
  background: var(--dark-card);
  border: 1px solid var(--dark-border-accent);
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
  overflow: hidden;
}
.screen-mock__bar {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: var(--dark-card-2);
  border-bottom: 1px solid var(--dark-border);
}
.screen-mock__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dark-border);
}
.screen-mock__dot:first-child { background: #F4845F; }
.screen-mock__dot:nth-child(2) { background: #F4D45F; }
.screen-mock__dot:nth-child(3) { background: #3EC878; }

.screen-mock__body {
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.screen-mock__line {
  height: 12px;
  border-radius: 12px;
  background: var(--dark-border);
}
.screen-mock__line--title { width: 70%; height: 18px; background: rgba(62,200,120,0.18); }
.screen-mock__line--sub   { width: 90%; }
.screen-mock__line--short { width: 55%; }
.screen-mock__divider {
  height: 1px;
  background: var(--dark-border);
  margin: 4px 0;
}
.screen-mock__btn {
  height: 40px;
  border-radius: 20px;
  background: rgba(244,132,95,0.25);
  border: 1px solid rgba(244,132,95,0.4);
}
.screen-mock__chips {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.screen-mock__chip {
  height: 24px;
  width: 72px;
  border-radius: 12px;
  background: rgba(62,200,120,0.12);
  border: 1px solid rgba(62,200,120,0.2);
}
.screen-mock__chip--a2 {
  background: rgba(244,132,95,0.10);
  border-color: rgba(244,132,95,0.20);
  width: 56px;
}

.screen-mock__live-badge {
  position: absolute;
  top: 52px;
  right: 16px;
  background: rgba(244,132,95,0.15);
  border: 1px solid rgba(244,132,95,0.35);
  border-radius: 50px;
  padding: 4px 10px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--a2);
  display: flex;
  align-items: center;
  gap: 5px;
}
.live-dot {
  width: 6px;
  height: 6px;
  background: var(--a2);
  border-radius: 50%;
  animation: pulse-dot 1.4s ease-in-out infinite;
}

/* ── Proposta de Valor ─────────────────────────────────────── */
.value__list {
  display: flex;
  flex-direction: column;
  gap: var(--gap-cards);
  margin-top: 40px;
}
.value__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.value__text h3 { margin-bottom: 4px; color: var(--t-lt); }
.value__text p  { font-size: 0.95rem; color: var(--t-lt-body); }

@media (min-width: 640px) {
  .value__list { display: grid; grid-template-columns: 1fr 1fr; }
  .value__list li:last-child:nth-child(odd) { grid-column: span 2; }
}

/* ── Para Quem É ───────────────────────────────────────────── */
.avatar__grid {
  display: grid;
  gap: var(--gap-cards);
  margin-top: 40px;
}
@media (min-width: 640px) { .avatar__grid { grid-template-columns: 1fr 1fr; } }

.avatar__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.avatar__card h3 { color: var(--t-dk); }
.avatar__card p  { font-size: 0.95rem; color: var(--t-dk-body); }

/* ── Como Funciona — Steps ─────────────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}
.step__num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--a1-glow);
  border: 2px solid rgba(62,200,120,0.35);
  color: var(--a1);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step__body { flex: 1; }
.step__title { color: var(--t-lt); margin-bottom: 4px; }
.step__desc  { font-size: 0.95rem; color: var(--t-lt-body); }

.step__connector {
  width: 2px;
  height: 24px;
  background: rgba(62,200,120,0.20);
  margin-left: 19px;
}

@media (min-width: 640px) {
  .steps {
    flex-direction: row;
    gap: 0;
    align-items: flex-start;
  }
  .step { flex-direction: column; flex: 1; align-items: flex-start; }
  .step__num { margin-bottom: 12px; }
  .step__connector {
    width: 100%;
    height: 2px;
    margin-left: 0;
    margin-top: 19px;
    flex: 1;
  }
}

/* ── FAQ ───────────────────────────────────────────────────── */
.section--dk .section__title { margin-bottom: 40px; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}
.faq__item {
  border-radius: 16px;
  overflow: hidden;
}
.faq__item details {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  overflow: hidden;
}
.faq__item details[open] { border-color: var(--dark-border-accent); }

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px var(--pad-card);
  font-size: 1rem;
  font-weight: 700;
  color: var(--t-dk);
  cursor: pointer;
  user-select: none;
  list-style: none;
  line-height: 1.4;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__icon {
  flex-shrink: 0;
  color: var(--t-dk-muted);
  transition: transform 0.2s ease;
}
.faq__icon svg { width: 18px; height: 18px; }
details[open] .faq__icon { transform: rotate(180deg); }

.faq__answer {
  padding: 0 var(--pad-card) 20px;
  font-size: 0.95rem;
  color: var(--t-dk-body);
  line-height: 1.75;
}

/* ── Offer Card ────────────────────────────────────────────── */
.section--offer { background: var(--light-base); }

.offer__card {
  background: var(--light-card);
  border: 1px solid var(--light-border);
  border-radius: 20px;
  padding: 40px 32px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.offer__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--t-lt);
}
.offer__desc {
  font-size: 1rem;
  color: var(--t-lt-body);
  max-width: 480px;
}
.offer__includes {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.offer__includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--t-lt-body);
  font-weight: 600;
}
.offer__includes svg {
  width: 18px;
  height: 18px;
  color: var(--a1);
  flex-shrink: 0;
}

.offer__pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.offer__price-main {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  color: var(--t-lt);
}
.offer__currency {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 8px;
}
.offer__amount {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--a1-dim);
}
.offer__cents {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 8px;
  color: var(--t-lt-muted);
}
.offer__installments {
  font-size: 0.82rem;
  color: var(--t-lt-muted);
  font-weight: 600;
}
.offer__from {
  font-size: 0.82rem;
  color: var(--t-lt-muted);
}

.offer__urgency {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--a2);
}
.offer__urgency svg { width: 14px; height: 14px; }

.offer__sub {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.offer__sub-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--t-lt-muted);
}
.offer__sub-item svg { width: 13px; height: 13px; color: var(--a1); }

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--dark-base);
  color: var(--t-dk-muted);
  padding: 32px 0;
  text-align: center;
  font-size: 0.82rem;
  border-top: 1px solid var(--dark-border);
}

/* ── Reveal animation ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ═══ BÔNUS ═══ */
.section--bonus {
  background: #0d0d0d;
  border-top: 2px solid var(--a1);
  border-bottom: 2px solid var(--a1);
  text-align: center;
}

.bonus__badge {
  display: inline-block;
  background: var(--a1);
  color: #0a1f12;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.section--bonus .section__title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 16px;
  color: #ffffff;
}

.section--bonus .section__sub {
  max-width: 560px;
  margin: 0 auto 40px;
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.7;
}

.bonus__card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: start;
  background: rgba(255, 255, 255, 0.04);
  border: 2.5px dashed rgba(244, 132, 95, 0.7);
  border-radius: 16px;
  padding: 32px;
  margin: 0 auto 40px;
  max-width: 680px;
  text-align: left;
  position: relative;
  box-shadow: 0 0 0 6px rgba(244, 132, 95, 0.06);
}

.bonus__card::before {
  content: '🎁 BÔNUS INCLUÍDO';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--a2);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.bonus__icon {
  width: 72px;
  height: 72px;
  background: rgba(62, 200, 120, 0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--a1);
  flex-shrink: 0;
}

.bonus__content {
  min-width: 0;
}

.bonus__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--a1);
  margin-bottom: 10px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.bonus__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.7;
  margin-bottom: 20px;
}

.bonus__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bonus__list li {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  text-align: left;
}

.bonus__list li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--a1);
  stroke-width: 2.5;
}

.bonus__closing {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-style: italic;
  color: #ffffff;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.5;
}

@media (max-width: 560px) {
  .bonus__card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px;
  }
  .bonus__icon {
    margin: 0 auto;
  }
  .bonus__list li {
    justify-content: center;
  }
}


/* ═══ BENEFÍCIOS ═══ */
.benefits__list {
  list-style: none;
  padding: 0;
  margin: var(--sp-10) auto 0;
  max-width: 860px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

#beneficios .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefits__item {
  display: flex;
  gap: 16px;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.2s ease;
}

.benefits__item:hover {
  border-color: rgba(62, 200, 120, 0.3);
}

.benefits__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(62, 200, 120, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--a1);
}

.benefits__text {
  min-width: 0;
  text-align: left;
}

.benefits__text h3 {
  margin-bottom: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}

.benefits__text p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 640px) {
  .benefits__list {
    grid-template-columns: 1fr;
  }
}

.pac__note {
  margin-top: 48px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--tl-2);
}
.pac__note strong { color: var(--a2); }

/* ═══ HIGHLIGHT MARKER ═══ */
.highlight-marker {
  background: #FFE234;
  color: #0d0d0d;
  padding: 2px 6px 3px;
  border-radius: 3px;
  font-style: normal;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  line-height: 1.6;
}

/* ═══ LEAD VALOR ═══ */
.valor__lead {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--tl-2);
  max-width: 600px;
  margin: 0 auto var(--sp-10);
  text-align: left;
}
.valor__lead strong {
  color: var(--tl-1);
  display: block;
  margin-top: 4px;
}

/* ═══ CARTA DE VENDAS ═══ */
.carta-vendas {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 48px;
  max-width: 640px;
  width: 100%;
  margin: 0 auto 64px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  border-left: 4px solid var(--a1);
  display: block;
}

#valor .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carta-vendas .valor__lead {
  max-width: 100%;
  margin: 0 0 20px 0;
  color: #1a1a1a;
  font-size: 1.05rem;
  line-height: 1.65;
  text-align: left;
}

.carta-vendas .valor__lead:last-child {
  margin-bottom: 0;
}

.carta-vendas .valor__lead strong {
  color: #0d0d0d;
  font-size: 1.1rem;
}

.carta-vendas .highlight-marker {
  color: #0d0d0d;
}

@media (max-width: 600px) {
  .carta-vendas {
    padding: 28px 24px;
  }
}

.valor__subtitulo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--a1);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  text-align: center;
}

.carta-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #0d0d0d;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.carta-meme {
  display: block;
  width: 100%;
  max-width: 480px;
  margin: 0 auto 24px;
  border-radius: 12px;
}

/* ═══ SEÇÃO O QUE É ═══ */
.section--what-is {
  color: #FFFFFF;
  background: #0a0a0a;
  padding: 80px 0;
}

.what-is__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--a2);
  text-align: center;
  margin-bottom: 12px;
}

.miniapp-examples {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 48px 0 40px;
}

.miniapp-card {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}

.miniapp-card:hover {
  border-color: rgba(62, 200, 120, 0.3);
  transform: translateY(-3px);
}

.miniapp-card--highlight {
  background: linear-gradient(135deg, #0f2d1c 0%, #0d1f15 100%);
  border-color: var(--a1) !important;
  position: relative;
}

.miniapp-card--highlight::before {
  content: '★ AO VIVO';
  position: absolute;
  top: -11px;
  left: 20px;
  background: var(--a1);
  color: #000;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 3px 10px;
  border-radius: 20px;
}

.miniapp-card__emoji {
  font-size: 3.5rem;
  margin-bottom: 12px;
  line-height: 1;
}

.miniapp-card__niche {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--a2);
  margin-bottom: 8px;
}

.miniapp-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
}

.miniapp-card__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.what-is__bottom {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto;
}

.what-is__bottom strong {
  color: #fff;
}

@media (max-width: 600px) {
  .miniapp-examples {
    grid-template-columns: 1fr;
  }
}

.section--what-is .section__title { color: #FFFFFF; }
.section--what-is .section__title .c-a1 { color: var(--a1); }
.section--what-is .section__sub { color: rgba(255,255,255,0.6); }

/* ═══ CARD AO VIVO SEPARADO ═══ */
.miniapp-live-card {
  background: linear-gradient(135deg, #0f2d1c 0%, #0d1f15 100%);
  border: 1.5px solid var(--a1);
  border-radius: 20px;
  padding: 40px 36px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  position: relative;
}

.miniapp-live-card__top {
  margin-bottom: 20px;
}

.miniapp-live-card__badge {
  background: var(--a1);
  color: #000;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
}

.miniapp-live-card__emoji {
  font-size: 2.8rem;
  margin-bottom: 16px;
  line-height: 1;
}

.miniapp-live-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.miniapp-live-card__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.miniapp-live-card__desc strong {
  color: #fff;
}

/* ═══ DEPOIMENTOS ═══ */
.section--depo {
  background: #0d0d0d;
  padding: 56px 0;
}

.depo__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--a1);
  text-align: center;
  margin-bottom: 32px;
}

.depo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.depo__img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: transform 0.25s;
}

.depo__img:hover {
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .depo__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .site-header { display: none; }
}

.hero__sub--bonus {
  color: var(--a1);
  font-size: 1.05rem;
  margin-top: -8px;
}

/* ─── Metodologia 4 etapas ─── */
.hero__metodologia {
  margin-top: 40px;
  text-align: center;
}

.metodologia-img {
  max-width: 680px;
  width: 100%;
  display: block;
  margin: 0 auto;
  opacity: 0.92;
  filter: drop-shadow(0 2px 16px rgba(244,132,95,0.18));
}

@media (max-width: 767px) {
  .metodologia-img {
    max-width: 100%;
  }
}
