/* ═══════════════════════════════════════════════
   COMO CRIAR E VENDER eBOOKS COM IA — 2026
   Design Premium · Alta Conversão
═══════════════════════════════════════════════ */

:root {
  --bg:       #08080d;
  --surface:  #0f0f18;
  --card:     #13131e;
  --border:   #1c1c2e;
  --border2:  #252538;
  --accent:   #f0c040;
  --accent2:  #e8a020;
  --accent3:  #ff6b35;
  --text:     #eeeae0;
  --muted:    #7a7a99;
  --muted2:   #b0b0cc;
  --green:    #22c55e;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── TIPOGRAFIA GLOBAL ─── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.1;
}
h1 em, h2 em { font-style: italic; color: var(--accent); }

h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted2);
  margin-top: 12px;
  line-height: 1.7;
}

/* ─── BOTÕES ─── */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: #08080d;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 20px 52px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: .02em;
  transition: transform .2s, box-shadow .2s, background .2s;
  box-shadow: 0 0 50px rgba(240,192,64,.35), 0 4px 24px rgba(0,0,0,.4);
  position: relative;
  overflow: hidden;
}
.btn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 60%);
  pointer-events: none;
}
.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 80px rgba(240,192,64,.5), 0 8px 32px rgba(0,0,0,.5);
  background: #f5ca50;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #08080d;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: .02em;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 40px rgba(240,192,64,.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 60px rgba(240,192,64,.4);
}

.btn-pricing {
  display: block;
  width: 100%;
  background: var(--accent);
  color: #08080d;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 20px 32px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  letter-spacing: .02em;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 50px rgba(240,192,64,.3);
  margin-bottom: 20px;
}
.btn-pricing:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 70px rgba(240,192,64,.5);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px 24px 80px;
  overflow: hidden;
}
.hero-glow-top {
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(240,192,64,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-bottom {
  position: absolute;
  bottom: -80px; right: -100px;
  width: 600px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,107,53,.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 960px;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,192,64,.08);
  border: 1px solid rgba(240,192,64,.25);
  color: var(--accent);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 36px;
  animation: fadeUp .6s ease both;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero h1 {
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 700;
  line-height: 1.0;
  max-width: 820px;
  animation: fadeUp .7s .1s ease both;
  letter-spacing: -.01em;
}

.hero-sub {
  margin-top: 24px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted2);
  max-width: 540px;
  animation: fadeUp .7s .2s ease both;
  line-height: 1.7;
}

.hero-cta-wrap {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: fadeUp .7s .3s ease both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats {
  margin-top: 72px;
  display: flex;
  align-items: center;
  gap: 0;
  animation: fadeUp .7s .45s ease both;
}
.stat {
  text-align: center;
  padding: 0 48px;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px;
  display: block;
}
.stat-sep {
  width: 1px;
  height: 48px;
  background: var(--border2);
}

/* Hero image */
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 72px auto 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(240,192,64,.15), 0 40px 80px rgba(0,0,0,.6);
  animation: fadeUp .8s .5s ease both;
}
.hero-img-wrap img {
  width: 100%; display: block;
  filter: brightness(.96) contrast(1.06) saturate(1.1);
}
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(8,8,13,1) 100%);
}

/* ─── PLATAFORMAS ─── */
.platforms-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  background: var(--surface);
}
.platforms-label {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  font-family: 'DM Mono', monospace;
}
.platforms-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.platform-pill {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted2);
  padding: 6px 16px;
  border: 1px solid var(--border2);
  border-radius: 100px;
  background: rgba(255,255,255,.03);
  letter-spacing: .03em;
}
.platform-dot { color: var(--border2); font-size: 20px; }

/* ─── SEÇÕES BASE ─── */
section {
  padding: 100px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

/* ─── VÍDEO ─── */
.video-section { text-align: center; }
.video-wrap {
  max-width: 400px;
  margin: 0 auto;
}
.video-border {
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(240,192,64,.2),
    0 0 80px rgba(240,192,64,.08),
    0 40px 80px rgba(0,0,0,.6);
  background: #000;
}
.video-border video {
  width: 100%; display: block;
  aspect-ratio: 9/16;
  object-fit: cover;
}
.video-cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* ─── PROBLEMA ─── */
.problema-section { max-width: 1000px; }
.problema-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 0;
}
.problema-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,.06), 0 32px 64px rgba(0,0,0,.5);
}
.problema-img-wrap img { width: 100%; display: block; filter: brightness(.85) saturate(.8); }
.problema-img-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(8,8,13,.9) 100%);
}
.problem-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.problem-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color .2s;
}
.problem-card:hover { border-color: rgba(240,192,64,.3); }
.problem-icon { flex-shrink: 0; margin-top: 2px; }
.problem-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.problem-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ─── PARA QUEM ─── */
.forwho-section { max-width: 800px; text-align: center; }
.forwho-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-top: 0;
}
.forwho-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  transition: border-color .2s, transform .2s;
}
.forwho-item:hover {
  border-color: rgba(240,192,64,.25);
  transform: translateX(4px);
}
.fw-check { flex-shrink: 0; margin-top: 3px; }
.forwho-item strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.forwho-item p { font-size: 14px; color: var(--muted); }

/* ─── CONTEÚDO ─── */
.conteudo-section { text-align: center; }
.ia-img-wrap {
  width: 100%;
  max-width: 820px;
  margin: 0 auto 56px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 1px rgba(240,192,64,.12), 0 32px 64px rgba(0,0,0,.5);
}
.ia-img-wrap img { width: 100%; display: block; filter: brightness(.95) saturate(1.05); }
.ia-img-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(8,8,13,1) 100%);
}
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  text-align: left;
}
.module-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.module-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(240,192,64,.3), transparent);
  opacity: 0;
  transition: opacity .2s;
}
.module-card:hover {
  border-color: rgba(240,192,64,.35);
  transform: translateY(-4px);
}
.module-card:hover::before { opacity: 1; }
.module-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: rgba(240,192,64,.1);
  position: absolute;
  top: 10px; right: 18px;
  line-height: 1;
  pointer-events: none;
}
.module-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.module-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ─── BÔNUS ─── */
.bonus-section { max-width: 800px; text-align: center; }
.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}
.bonus-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid rgba(240,192,64,.18);
  border-radius: 14px;
  padding: 22px 26px;
  transition: border-color .2s;
}
.bonus-item:hover { border-color: rgba(240,192,64,.4); }
.bonus-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(240,192,64,.4);
  color: var(--accent);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: .08em;
  background: rgba(240,192,64,.05);
  margin-top: 2px;
}
.bonus-item h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.bonus-item p { font-size: 14px; color: var(--muted); }

/* ─── DEPOIMENTOS ─── */
.testi-section { text-align: center; max-width: 1000px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  text-align: left;
}
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px 26px;
  position: relative;
  transition: border-color .2s, transform .2s;
}
.testi-card:hover {
  border-color: rgba(240,192,64,.25);
  transform: translateY(-4px);
}
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(240,192,64,.15);
  line-height: .8;
  margin-bottom: 8px;
}
.stars { margin-bottom: 16px; }
.testi-text {
  font-size: 15px;
  color: var(--muted2);
  margin-bottom: 24px;
  line-height: 1.7;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(240,192,64,.35);
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.testi-name { font-weight: 700; font-size: .95rem; }
.testi-role { font-size: 13px; color: var(--muted); margin-top: 2px; }
.testi-role strong { color: var(--accent); }

/* ─── RESULTADO ─── */
.resultado-section {
  background:
    radial-gradient(ellipse 90% 60% at 70% 50%, rgba(240,192,64,.06) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(255,107,53,.04) 0%, transparent 65%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.resultado-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 560px;
}
.resultado-texto { padding: 80px 56px 80px 24px; }
.resultado-texto .section-label { margin-bottom: 12px; }
.resultado-texto h2 { margin-bottom: 20px; }
.resultado-texto p { color: var(--muted2); font-size: 1.05rem; margin-bottom: 36px; line-height: 1.75; max-width: 400px; }
.resultado-img-wrap {
  position: relative;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
}
.resultado-img-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,8,13,1) 0%, rgba(8,8,13,.4) 30%, transparent 55%);
  z-index: 2; pointer-events: none;
}
.resultado-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(8,8,13,.7) 80%, rgba(8,8,13,1) 100%);
  z-index: 2; pointer-events: none;
}
.resultado-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  filter: brightness(.9) contrast(1.08) saturate(1.1);
}

/* ─── OFERTA ─── */
.oferta-section { text-align: center; max-width: 680px; }
.pricing-wrap {
  background: var(--card);
  border: 1px solid rgba(240,192,64,.3);
  border-radius: 24px;
  padding: 48px 44px;
  position: relative;
  box-shadow: 0 0 100px rgba(240,192,64,.07), 0 40px 80px rgba(0,0,0,.4);
}
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #08080d;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  padding: 8px 24px;
  border-radius: 100px;
  margin-bottom: 36px;
}
.pricing-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  text-align: left;
  margin-bottom: 40px;
  padding: 28px;
  background: rgba(255,255,255,.025);
  border-radius: 14px;
  border: 1px solid var(--border2);
}
.pi-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted2);
  font-weight: 500;
}
.pricing-price-wrap { margin-bottom: 32px; }
.price-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.price-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.price-main sup { font-size: 2rem; vertical-align: top; margin-top: 14px; display: inline-block; }
.price-sub { font-size: 13px; color: var(--muted); margin-top: 8px; }
.pricing-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

/* ─── GARANTIA ─── */
.garantia-section { max-width: 800px; }
.garantia-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 44px;
  display: flex;
  gap: 36px;
  align-items: flex-start;
}
.garantia-icon { flex-shrink: 0; padding-top: 4px; }
.garantia-content h2 { margin-bottom: 14px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.garantia-content p { color: var(--muted2); font-size: 15px; line-height: 1.75; }

/* ─── FAQ ─── */
.faq-section { max-width: 760px; text-align: center; }
.faq-list { margin-top: 0; display: flex; flex-direction: column; gap: 10px; text-align: left; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--border2); }
.faq-q {
  width: 100%; background: none; border: none;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 500;
  padding: 22px 26px;
  text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .arrow { display: inline-flex; align-items: center; transition: transform .25s; flex-shrink: 0; }
.faq-item.open .arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: 15px; color: var(--muted2);
  padding: 0 26px; line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 260px; padding: 0 26px 22px; }

/* ─── FINAL CTA ─── */
.final-cta {
  text-align: center;
  padding: 120px 24px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.final-cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(240,192,64,.08) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta .section-label { margin-bottom: 16px; }
.final-cta h2 { margin-bottom: 20px; }
.final-cta p {
  color: var(--muted2);
  margin-bottom: 48px;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
footer a { color: var(--muted); text-decoration: underline; }

/* ─── STICKY BAR ─── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(8,8,13,.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border2);
  padding: 14px 32px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  z-index: 100;
  transform: translateY(100%);
  transition: transform .4s ease;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-text { font-size: 14px; color: var(--muted); }
.sticky-bar-text strong { color: var(--text); }
.btn-sticky {
  display: inline-block;
  background: var(--accent);
  color: #08080d;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem; font-weight: 700;
  padding: 12px 28px; border-radius: 6px;
  text-decoration: none; white-space: nowrap;
  transition: transform .2s; flex-shrink: 0;
  letter-spacing: .02em;
}
.btn-sticky:hover { transform: translateY(-1px); }

/* ─── DIVIDER ─── */
.divider { height: 1px; background: var(--border); max-width: 900px; margin: 0 auto; }

/* ─── REVEAL ANIMATION ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .hero h1 { font-size: clamp(2.6rem, 10vw, 4rem); }
  .hero-stats { gap: 0; }
  .stat { padding: 0 24px; }
  .stat-num { font-size: 2.2rem; }

  .problema-layout { grid-template-columns: 1fr; }
  .problema-img-wrap { max-height: 300px; }
  .problema-img-fade { background: linear-gradient(to bottom, transparent 50%, rgba(8,8,13,1) 100%); }

  .resultado-inner { grid-template-columns: 1fr; min-height: auto; }
  .resultado-img-wrap { min-height: 360px; order: -1; }
  .resultado-img-wrap::before { background: linear-gradient(to bottom, transparent 40%, rgba(8,8,13,.9) 80%, rgba(8,8,13,1) 100%); }
  .resultado-texto { padding: 40px 24px 60px; }

  .pricing-includes { grid-template-columns: 1fr; }
  .garantia-box { flex-direction: column; gap: 24px; padding: 32px 24px; }
  .pricing-wrap { padding: 36px 24px; }
  .sticky-bar { flex-direction: column; text-align: center; padding: 16px; }

  section { padding: 72px 20px; }
}

@media (max-width: 480px) {
  .btn-hero { padding: 18px 32px; font-size: 1rem; }
  .platforms-list { gap: 8px; }
  .platform-dot { display: none; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .stat-sep { display: none; }
  .stat { padding: 0 20px 16px; }
}
