/* ==========================================
   PROF ANA — LANDING PAGE STYLES
   Mobile-First | Nunito | Verde + Escuro + Branco
   ========================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green: #22c55e;
  --green-dark: #16a34a;
  --green-light: #4ade80;
  --green-bg: #f0fdf4;
  --dark: #0f172a;
  --dark-mid: #1e293b;
  --slate: #64748b;
  --slate-light: #94a3b8;
  --slate-lighter: #cbd5e1;
  --border: #e2e8f0;
  --gold: #fbbf24;
  --red: #ef4444;
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --orange: #f97316;
  --pink: #ec4899;
  --teal: #14b8a6;
}

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

body {
  font-family: 'Nunito', sans-serif;
  color: #1a1a2e;
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.txt-green { color: var(--green); }

/* === SECTION HEADERS === */
.section-header { text-align: center; margin-bottom: 32px; }

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(34,197,94,0.15), rgba(34,197,94,0.08));
  color: var(--green-dark);
  font-weight: 700; font-size: 0.75rem;
  padding: 6px 16px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
}

.section-header h2 { font-size: 1.6rem; font-weight: 900; color: #1a1a2e; margin-bottom: 8px; line-height: 1.3; }
.section-desc { font-size: 0.92rem; color: var(--slate); max-width: 500px; margin: 0 auto; line-height: 1.5; }

/* ==========================================
   1. BARRA DE URGÊNCIA (MARQUEE)
   ========================================== */
.urgency-bar {
  background: linear-gradient(90deg, var(--green-dark), var(--green), var(--green-dark));
  color: #fff; font-weight: 700; font-size: 0.78rem;
  padding: 8px 0; overflow: hidden;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.marquee { display: flex; overflow: hidden; }

.marquee-content {
  display: flex; gap: 18px; white-space: nowrap;
  animation: marqueeScroll 18s linear infinite; will-change: transform;
}

.marquee-content .dot { opacity: 0.5; font-size: 0.6rem; align-self: center; }

@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ==========================================
   STICKY COUNTDOWN BAR
   ========================================== */
.sticky-countdown-bar {
  background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
  color: #fff; padding: 6px 0; text-align: center;
  position: sticky; top: 36px; z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.scb-inner { display: flex; align-items: center; justify-content: center; gap: 8px; }
.scb-fire { font-size: 1rem; }
.scb-label { font-weight: 800; font-size: 0.8rem; letter-spacing: 0.5px; }
.scb-timer { display: flex; align-items: center; gap: 2px; }

.scb-num {
  background: rgba(0,0,0,0.3); padding: 2px 8px; border-radius: 6px;
  font-weight: 900; font-size: 0.9rem; min-width: 28px; text-align: center;
}

.scb-sep { font-weight: 900; font-size: 0.9rem; }

/* ==========================================
   2. HERO SECTION
   ========================================== */
.hero {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-mid) 100%);
  color: #fff; padding: 28px 16px 40px; text-align: center;
  position: relative; overflow: hidden;
}

.hero::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(34,197,94,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.trust-badges { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; position: relative; z-index: 1; }

.trust-badges .badge {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 10px; border-radius: 50px; font-size: 0.68rem; font-weight: 700;
  display: flex; align-items: center; gap: 4px; white-space: nowrap;
}

.badge-icon { font-size: 0.8rem; }
.hero-title-block { margin-bottom: 20px; position: relative; z-index: 1; }
.hero-method { font-size: 0.7rem; font-weight: 700; color: var(--green-light); letter-spacing: 2px; margin-bottom: 8px; }
.hero-title-block h1 { font-size: 1.6rem; font-weight: 900; line-height: 1.25; }
.hero-hook { margin-bottom: 20px; position: relative; z-index: 1; }
.hero-hook h2 { font-size: 1.15rem; font-weight: 800; color: var(--gold); margin-bottom: 8px; line-height: 1.35; }
.hero-desc { font-size: 0.92rem; color: var(--slate-lighter); line-height: 1.5; }

.benefits-list { margin-bottom: 20px; position: relative; z-index: 1; }
.benefits-list li { padding: 5px 0; font-size: 0.88rem; display: flex; align-items: center; justify-content: center; gap: 8px; color: #e2e8f0; }

.check-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; background: var(--green); color: #fff;
  border-radius: 50%; font-size: 0.7rem; font-weight: 900; flex-shrink: 0;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(34,197,94,0.05));
  border: 1.5px solid rgba(34,197,94,0.25); border-radius: 16px;
  padding: 16px; margin-bottom: 24px; position: relative; z-index: 1;
}

.highlight-box p { font-size: 0.88rem; color: #e2e8f0; line-height: 1.5; }
.highlight-box .big-number { font-size: 1.3rem; font-weight: 900; color: var(--green); }
.highlight-sub { margin-top: 6px; font-size: 0.8rem !important; color: var(--slate-light) !important; }

.hero-counters {
  display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 24px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 16px 12px; position: relative; z-index: 1;
}

.counter-item { flex: 1; text-align: center; }
.counter-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }
.counter-number { display: block; font-size: 1.4rem; font-weight: 900; color: var(--green); }
.counter-label { font-size: 0.7rem; color: var(--slate-light); text-transform: uppercase; letter-spacing: 0.5px; }

.price-block {
  background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(34,197,94,0.04));
  border: 2px solid rgba(34,197,94,0.25); border-radius: 20px;
  padding: 20px 16px; text-align: center; position: relative; z-index: 1; margin-bottom: 20px;
}

.discount-badge { background: var(--red); color: #fff; font-weight: 800; font-size: 0.75rem; padding: 5px 18px; border-radius: 50px; display: inline-block; margin-bottom: 8px; letter-spacing: 1px; }
.price-from { font-size: 0.88rem; color: var(--slate-light); }
.price-from s { color: var(--red); font-weight: 600; }
.price-label { font-size: 0.82rem; color: var(--slate-lighter); margin: 2px 0; }
.price-value { font-size: 3.2rem; font-weight: 900; color: var(--green); line-height: 1; }
.price-cents { font-size: 1.8rem; }
.price-info { font-size: 0.8rem; color: var(--slate-light); margin-top: 4px; }
.price-dot { opacity: 0.4; }

.new-badge {
  position: absolute; top: -8px; right: -4px; background: var(--gold); color: #1a1a2e;
  font-weight: 800; font-size: 0.65rem; padding: 3px 10px; border-radius: 50px;
  transform: rotate(10deg); box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.hero-kit-image { margin-bottom: 20px; position: relative; z-index: 1; }
.hero-kit-image img { border-radius: 12px; }

.included-items {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 16px; margin-bottom: 24px; position: relative; z-index: 1;
}

.included-items h4 { font-size: 0.92rem; font-weight: 800; color: var(--green); margin-bottom: 12px; text-align: center; }
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.inc-item { font-size: 0.78rem; color: var(--slate-lighter); display: flex; align-items: center; gap: 6px; }
.inc-icon { font-size: 0.9rem; }

.social-urgency { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-bottom: 20px; position: relative; z-index: 1; }
.su-item { font-size: 0.85rem; color: var(--red); font-weight: 700; display: flex; align-items: center; gap: 6px; }
.su-dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; animation: dotPulse 1.5s ease-in-out infinite; }

@keyframes dotPulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(0.7); } }

.cta-button {
  display: block; width: 100%; max-width: 400px; margin: 0 auto;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; font-family: 'Nunito', sans-serif; font-size: 1.05rem; font-weight: 800;
  padding: 16px 24px; border-radius: 60px; text-transform: uppercase; letter-spacing: 0.5px;
  text-align: center; box-shadow: 0 6px 24px rgba(34,197,94,0.4); transition: all 0.3s ease;
  position: relative; z-index: 1;
}

.cta-button:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(34,197,94,0.5); }
.cta-button:active { transform: translateY(0); }

.pulse-btn { animation: ctaPulse 2s ease-in-out infinite; }
@keyframes ctaPulse { 0%,100% { box-shadow: 0 6px 24px rgba(34,197,94,0.4); } 50% { box-shadow: 0 6px 40px rgba(34,197,94,0.7); } }

.cta-secondary { background: linear-gradient(135deg, #64748b, #475569); box-shadow: 0 6px 24px rgba(100,116,139,0.3); }
.cta-subtext { margin-top: 10px; font-size: 0.78rem; color: var(--slate-light); text-align: center; position: relative; z-index: 1; }

.payment-icons { display: flex; justify-content: center; gap: 10px; margin-top: 12px; position: relative; z-index: 1; }
.pay-icon { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); padding: 5px 14px; border-radius: 8px; }
.pay-label { font-size: 0.72rem; font-weight: 700; color: var(--slate-lighter); }

/* ==========================================
   3. COMO FUNCIONA — GRID 2x2 + Auto Highlight
   ========================================== */
.how-it-works { padding: 48px 0; background: #ffffff; }

.steps-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.step-card-grid {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 20px 14px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
}

/* Active / highlighted state (green border + shadow) */
.step-card-grid.active {
  border-color: var(--green);
  box-shadow: 0 8px 30px rgba(34,197,94,0.15);
  background: var(--green-bg);
}

.step-num-badge {
  position: absolute;
  top: -1px;
  left: -1px;
  background: var(--green);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 18px 0 12px 0;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.step-card-grid.active .step-num-badge {
  opacity: 1;
  background: var(--green-dark);
}

.step-icon-wrap {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 8px auto 10px;
}

.step-icon-wrap.green { background: var(--green); }
.step-icon-wrap.blue { background: var(--blue); }
.step-icon-wrap.orange { background: var(--orange); }
.step-icon-wrap.purple { background: var(--purple); }

.step-badge-sm {
  display: inline-block; font-weight: 700; font-size: 0.58rem;
  padding: 2px 8px; border-radius: 50px; text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 6px;
}

.step-badge-sm.green { background: rgba(34,197,94,0.12); color: var(--green-dark); }
.step-badge-sm.blue { background: rgba(59,130,246,0.12); color: var(--blue); }
.step-badge-sm.orange { background: rgba(249,115,22,0.12); color: var(--orange); }
.step-badge-sm.purple { background: rgba(139,92,246,0.12); color: var(--purple); }

.step-card-grid h3 { font-size: 0.92rem; font-weight: 800; color: #1a1a2e; margin-bottom: 4px; }
.step-card-grid p { font-size: 0.78rem; color: var(--slate); line-height: 1.4; display: none; }

/* Show description only on active card */
.step-card-grid.active p { display: block; }

/* Step dots */
.steps-dots { display: flex; justify-content: center; gap: 12px; margin: 16px 0; }

.step-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--border); color: var(--slate);
  font-size: 0.85rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}

.step-dot.active { background: var(--green); color: #fff; box-shadow: 0 4px 12px rgba(34,197,94,0.3); }

/* Steps progress bar */
.steps-progress-bar {
  width: 100%; max-width: 320px; margin: 4px auto 12px;
  height: 6px; background: var(--border); border-radius: 99px; overflow: hidden;
}
.steps-progress-fill {
  height: 100%; width: 25%;
  background: linear-gradient(90deg, var(--green), #4ade80);
  border-radius: 99px;
  transition: width 0.4s ease;
}

/* Checkmark icon between grid and app bonus */
.step-check-icon { text-align: center; margin: 8px 0; }

/* App Bonus */
.app-bonus { text-align: center; padding: 16px 0 0; }
.app-bonus-tag { display: inline-block; background: var(--gold); color: #1a1a2e; font-weight: 800; font-size: 0.78rem; padding: 5px 16px; border-radius: 50px; margin-bottom: 10px; }
.app-bonus-title { font-size: 1.5rem; font-weight: 900; font-style: italic; margin-bottom: 12px; }
.app-bonus-img { max-width: 360px; margin: 0 auto; }
.app-bonus-img img { border-radius: 16px; }

/* ==========================================
   4. APOSTILAS
   ========================================== */
.apostilas { padding: 48px 0; background: linear-gradient(180deg, #f8fafc, var(--green-bg)); }

.stats-bar {
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1.5px solid var(--green); border-radius: 16px;
  padding: 14px 12px; margin-bottom: 28px; box-shadow: 0 4px 16px rgba(34,197,94,0.08);
}

.stats-bar.dark { background: var(--dark); border-color: rgba(255,255,255,0.1); color: #fff; }
.stat-item { flex: 1; text-align: center; }
.stat-item strong { display: block; font-size: 1.3rem; font-weight: 900; color: var(--green); }
.stats-bar.dark .stat-item strong { color: var(--green-light); }
.stat-item span { font-size: 0.72rem; color: var(--slate); text-transform: uppercase; letter-spacing: 0.5px; }
.stats-bar.dark .stat-item span { color: var(--slate-light); }
.stat-divider { width: 1px; height: 32px; background: var(--border); }
.stats-bar.dark .stat-divider { background: rgba(255,255,255,0.15); }

.apostilas-carousel { position: relative; overflow: hidden; margin-bottom: 32px; }

.apostilas-track {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 8px 4px;
}

.apostilas-track::-webkit-scrollbar { display: none; }

.apostila-card {
  min-width: 260px; max-width: 280px; background: #fff;
  border: 1.5px solid var(--border); border-radius: 20px; padding: 20px 16px;
  text-align: center; transition: all 0.3s ease; position: relative;
  overflow: hidden; scroll-snap-align: center; flex-shrink: 0;
}

.apostila-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); border-color: var(--green); }
.apostila-card img { border-radius: 12px; margin-bottom: 8px; }

.apostila-badge {
  position: absolute; top: 12px; left: 12px; font-size: 0.65rem; font-weight: 800;
  padding: 3px 10px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px; z-index: 2;
}

.apostila-badge.best-seller { background: var(--gold); color: #1a1a2e; }
.apostila-badge.essential { background: var(--blue); color: #fff; }
.apostila-badge.popular { background: var(--purple); color: #fff; }
.apostila-badge.complete { background: var(--green); color: #fff; }
.apostila-badge.fundamental { background: var(--orange); color: #fff; }
.apostila-badge.base { background: var(--slate); color: #fff; }
.apostila-badge.advanced { background: var(--red); color: #fff; }
.apostila-badge.fun { background: var(--pink); color: #fff; }
.apostila-badge.practical { background: var(--teal); color: #fff; }

.apostila-card h3 { font-size: 0.95rem; font-weight: 800; margin: 6px 0 4px; color: #1a1a2e; }
.apostila-qty { display: inline-block; background: var(--green-bg); color: var(--green-dark); font-size: 0.7rem; font-weight: 700; padding: 2px 10px; border-radius: 50px; margin-bottom: 6px; }
.apostila-card p { font-size: 0.8rem; color: var(--slate); line-height: 1.45; }

.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; background: #fff; border: 1.5px solid var(--border);
  border-radius: 50%; font-size: 1.4rem; color: var(--slate);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1); z-index: 2; transition: all 0.2s;
}

.carousel-prev { left: 4px; }
.carousel-next { right: 4px; }
.carousel-arrow:hover { border-color: var(--green); color: var(--green); }

.apostilas-cta { text-align: center; }
.apostilas-cta p { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.apostilas-price { margin-bottom: 14px; }
.apostilas-price s { color: var(--slate-light); font-size: 1.1rem; margin-right: 8px; font-weight: 700; }
.apostilas-price span { color: var(--green); font-size: 1.8rem; font-weight: 900; }

/* ==========================================
   5. BÔNUS
   ========================================== */
.bonus { padding: 48px 0; background: var(--dark); color: #fff; }
.bonus .section-tag { background: rgba(34,197,94,0.2); color: var(--green-light); }
.bonus .section-header h2 { color: #fff; }
.bonus .section-desc { color: var(--slate-light); }
.bonus-total { margin-top: 12px; font-size: 1rem; color: var(--gold); font-weight: 700; }
.bonus-total s { color: var(--red); }

.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 24px; }

.bonus-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 18px 14px; text-align: center;
  transition: all 0.3s ease; position: relative;
}

.bonus-card:hover { transform: translateY(-4px); border-color: var(--green); background: rgba(255,255,255,0.08); }
.bonus-number { font-size: 1.6rem; font-weight: 900; color: var(--green); opacity: 0.25; margin-bottom: 4px; }
.bonus-value { display: inline-block; background: var(--red); color: #fff; font-weight: 800; font-size: 0.7rem; padding: 2px 8px; border-radius: 50px; margin-bottom: 8px; text-decoration: line-through; }
.bonus-card img { border-radius: 10px; margin-bottom: 8px; }
.bonus-card h3 { font-size: 0.92rem; font-weight: 800; margin: 4px 0 6px; }
.bonus-card p { font-size: 0.78rem; color: var(--slate-light); line-height: 1.4; }
.bonus-subtext { text-align: center; font-size: 0.85rem; color: var(--green-light); font-weight: 600; }

/* ==========================================
   6. DEPOIMENTOS
   ========================================== */
.testimonials { padding: 48px 0; background: #ffffff; }
.testimonials-grid { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }

.testimonial-card { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 18px; transition: all 0.3s ease; }
.testimonial-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.06); transform: translateY(-2px); }
.testimonial-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }

.testimonial-avatar {
  width: 40px; height: 40px; background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: #fff; flex-shrink: 0;
}

.testimonial-header h4 { font-size: 0.9rem; font-weight: 800; color: #1a1a2e; }
.testimonial-city { font-size: 0.72rem; color: var(--slate-light); }
.testimonial-stars { margin-left: auto; font-size: 0.7rem; }
.testimonial-card > p { font-size: 0.85rem; color: #475569; font-style: italic; line-height: 1.5; }
.depoimentos-img { max-width: 500px; margin: 0 auto; }
.depoimentos-img img { border-radius: 12px; }

/* ==========================================
   7. PRICING
   ========================================== */
.pricing { padding: 48px 0; background: linear-gradient(180deg, #f8fafc, var(--green-bg)); }

.pricing-grid { display: flex; flex-direction: column; gap: 20px; max-width: 420px; margin: 0 auto; }

.pricing-card { background: #fff; border: 2px solid var(--border); border-radius: 20px; padding: 28px 20px; text-align: center; transition: all 0.3s ease; }
.pricing-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.pricing-card.premium { border-color: var(--green); position: relative; box-shadow: 0 12px 40px rgba(34,197,94,0.15); overflow: hidden; }

.pricing-badge-top { display: flex; justify-content: center; gap: 8px; margin-bottom: 12px; }
.badge-best { background: var(--gold); color: #1a1a2e; font-weight: 800; font-size: 0.7rem; padding: 3px 12px; border-radius: 50px; }
.badge-discount { background: var(--red); color: #fff; font-weight: 800; font-size: 0.7rem; padding: 3px 12px; border-radius: 50px; }

.pricing-header h3 { font-size: 1.25rem; font-weight: 900; color: #1a1a2e; margin-bottom: 2px; }
.pricing-header p { color: var(--slate); font-size: 0.85rem; margin-bottom: 14px; }
.pricing-price { margin-bottom: 16px; }
.pricing-old { display: block; color: var(--slate-light); text-decoration: line-through; font-size: 0.95rem; }
.pricing-new { display: block; font-size: 2.4rem; font-weight: 900; color: var(--green); line-height: 1.1; }
.pricing-new.large { font-size: 3rem; }
.pricing-period { display: block; font-size: 0.8rem; color: var(--slate-light); }
.pricing-save { display: inline-block; background: #fef3c7; color: #b45309; font-weight: 700; font-size: 0.75rem; padding: 3px 12px; border-radius: 50px; margin-top: 6px; }

.pricing-kit-image { margin: 14px 0; }
.pricing-kit-image img { border-radius: 12px; }

.cta-premium {
  display: block; width: 100%; background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 800;
  padding: 16px 24px; border-radius: 60px; text-transform: uppercase; letter-spacing: 0.5px;
  text-align: center; box-shadow: 0 6px 24px rgba(34,197,94,0.4); transition: all 0.3s ease;
}

.pricing-trust { display: flex; justify-content: center; gap: 12px; margin: 12px 0; flex-wrap: wrap; }
.pricing-trust span { font-size: 0.72rem; color: var(--slate); font-weight: 600; }

.pricing-features { text-align: left; margin-top: 18px; }
.pricing-features li { padding: 5px 0; font-size: 0.82rem; color: #475569; border-bottom: 1px solid #f1f5f9; display: flex; align-items: center; gap: 8px; }
.pricing-features li:last-child { border-bottom: none; }
.feat-check { font-size: 0.75rem; flex-shrink: 0; }
.feat-check.green { color: var(--green); font-weight: 800; }
.pricing-features .bonus-item { color: #d97706; font-weight: 700; }
.pricing-guarantee { margin-top: 16px; font-size: 0.8rem; color: var(--green-dark); font-weight: 700; }

/* ==========================================
   8. GARANTIA
   ========================================== */
.guarantee { padding: 48px 0; background: var(--dark); color: #fff; }

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

.guarantee-badge { text-align: center; }
.guarantee-shield { font-size: 3.5rem; margin-bottom: 4px; }
.guarantee-days .big { display: block; font-size: 3.5rem; font-weight: 900; color: var(--green); line-height: 1; }
.guarantee-days span { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; color: var(--slate-light); }
.guarantee-title { font-size: 0.75rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-top: 4px; }

.guarantee-text h2 { font-size: 1.5rem; font-weight: 900; margin-bottom: 10px; }
.guarantee-text p { color: var(--slate-light); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.6; }
.guarantee-pillars { display: flex; flex-direction: column; gap: 12px; }

.pillar { text-align: center; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 16px; }
.pillar-icon { font-size: 1.3rem; display: block; margin-bottom: 6px; }
.pillar strong { display: block; font-size: 0.85rem; margin-bottom: 2px; }
.pillar span { font-size: 0.75rem; color: var(--slate-light); }

/* ==========================================
   10. FAQ
   ========================================== */
.faq { padding: 48px 0; background: #ffffff; }
.faq-list { max-width: 600px; margin: 0 auto; }

.faq-item { border: 1.5px solid var(--border); border-radius: 14px; margin-bottom: 10px; overflow: hidden; transition: all 0.3s ease; }
.faq-item:hover, .faq-item.active { border-color: var(--green); }

.faq-question { width: 100%; display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: #fff; font-size: 0.9rem; font-weight: 700; color: #1a1a2e; text-align: left; }
.faq-icon { font-size: 1.1rem; flex-shrink: 0; }
.faq-arrow { margin-left: auto; color: var(--slate-light); transition: transform 0.3s ease; flex-shrink: 0; display: flex; }
.faq-item.active .faq-arrow { transform: rotate(180deg); color: var(--green); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 16px 14px 42px; font-size: 0.85rem; color: var(--slate); line-height: 1.55; }

/* ==========================================
   11. FOOTER
   ========================================== */
.footer { background: var(--dark); color: #fff; padding: 40px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-bottom: 28px; text-align: center; }
.footer-col h3 { font-size: 1.3rem; font-weight: 900; color: var(--green); margin-bottom: 8px; }
.footer-col h4 { font-size: 0.95rem; font-weight: 800; margin-bottom: 8px; }
.footer-col p { font-size: 0.85rem; color: var(--slate-light); }
.footer-col ul li { padding: 3px 0; font-size: 0.85rem; color: var(--slate-light); }
.footer-col ul li a { color: var(--slate-light); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--green); }

.footer-badges { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 16px; }
.footer-badges span { font-size: 0.78rem; font-weight: 700; color: var(--slate-lighter); }
.footer-copyright { text-align: center; }
.footer-copyright p { font-size: 0.75rem; color: var(--slate); }

/* ==========================================
   SOCIAL NOTIFICATION
   ========================================== */
.social-notification {
  position: fixed; bottom: 80px; left: 12px; background: #fff;
  border: 1.5px solid var(--border); border-radius: 14px; padding: 10px 16px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12); z-index: 998;
  transform: translateX(-120%); transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  max-width: 260px;
}

.social-notification.show { transform: translateX(0); }

.notif-avatar { width: 36px; height: 36px; background: var(--green-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.notif-text { font-size: 0.78rem; color: #1a1a2e; line-height: 1.3; }
.notif-text strong { color: var(--green); font-weight: 800; }
.notif-action { color: var(--slate); font-size: 0.72rem; }

/* ==========================================
   STICKY BOTTOM BAR
   ========================================== */
.sticky-bottom-bar {
  position: fixed; bottom: 0; left: 0; right: 0; background: #fff;
  border-top: 1.5px solid var(--border); padding: 10px 16px;
  display: flex; align-items: center; justify-content: space-between; z-index: 997;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  transform: translateY(100%); transition: transform 0.3s ease;
}

.sticky-bottom-bar.visible { transform: translateY(0); }
.sbb-price { display: flex; align-items: baseline; gap: 8px; }
.sbb-cart { font-size: 1rem; }
.sbb-new { font-size: 1.3rem; font-weight: 900; color: var(--green); }
.sbb-old { font-size: 0.85rem; color: var(--slate-light); text-decoration: line-through; }

.sbb-cta {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; font-size: 0.85rem; font-weight: 800; padding: 10px 24px;
  border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(34,197,94,0.3); transition: all 0.2s;
}

/* ==========================================
   SCROLL TO TOP
   ========================================== */
.scroll-top {
  position: fixed; bottom: 80px; right: 12px; width: 40px; height: 40px;
  background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(34,197,94,0.3); z-index: 996;
  opacity: 0; transform: translateY(20px); transition: all 0.3s ease; pointer-events: none;
}

.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }

/* ==========================================
   SCROLL REVEAL ANIMATION SYSTEM
   ========================================== */
.reveal {
  opacity: 0;
  will-change: opacity, transform;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-duration: 600ms;
}
.reveal[data-reveal="up"]    { transform: translate3d(0, 24px, 0); }
.reveal[data-reveal="down"]  { transform: translate3d(0, -24px, 0); }
.reveal[data-reveal="left"]  { transform: translate3d(-24px, 0, 0); }
.reveal[data-reveal="right"] { transform: translate3d(24px, 0, 0); }
.reveal[data-reveal="none"]  { transform: translate3d(0, 0, 0); }
/* Default (no data-reveal attr) = up */
.reveal:not([data-reveal]) { transform: translate3d(0, 24px, 0); }

.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================
   POPUPS (Exit Intent)
   ========================================== */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  z-index: 10000; display: none; align-items: center; justify-content: center;
  padding: 16px; backdrop-filter: blur(4px);
}

.popup-overlay.active { display: flex; }

.popup-modal {
  background: #fff; border-radius: 20px; max-width: 460px; width: 100%;
  max-height: 90vh; overflow-y: auto; position: relative;
  animation: popupSlideIn 0.4s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

@keyframes popupSlideIn {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.popup-close {
  position: absolute; top: 12px; right: 12px; width: 32px; height: 32px;
  background: rgba(0,0,0,0.2); color: #fff; border-radius: 50%;
  font-size: 1.3rem; display: flex; align-items: center; justify-content: center;
  z-index: 2; transition: background 0.2s;
}

.popup-close:hover { background: rgba(0,0,0,0.4); }

/* Popup Header Red */
.popup-header-red {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #fff; padding: 28px 24px 20px; text-align: center;
  border-radius: 20px 20px 0 0;
}

.popup-header-red h2 { font-size: 1.2rem; font-weight: 900; margin-bottom: 6px; line-height: 1.3; }
.popup-header-red p { font-size: 0.85rem; opacity: 0.9; }

/* Popup Header Blue */
.popup-header-blue {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff; padding: 28px 24px 20px; text-align: center;
  border-radius: 20px 20px 0 0;
}

.popup-header-blue h2 { font-size: 1.15rem; font-weight: 900; margin-bottom: 6px; line-height: 1.3; }
.popup-header-blue p { font-size: 0.85rem; opacity: 0.9; }
.txt-yellow { color: var(--gold); }

.popup-alert-badge {
  display: inline-block; background: var(--gold); color: #1a1a2e;
  font-weight: 800; font-size: 0.75rem; padding: 5px 16px; border-radius: 50px;
  margin-bottom: 12px;
}

.popup-alert-badge.orange { background: var(--orange); color: #fff; }

/* Timer Bar */
.popup-timer-bar {
  background: var(--dark); color: #fff; padding: 10px 20px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 0.85rem; font-weight: 700;
}

.popup-timer-bar.green { background: var(--green-dark); }

.popup-timer {
  background: rgba(255,255,255,0.2); padding: 3px 12px; border-radius: 8px;
  font-weight: 900; font-size: 1rem;
}

/* Compare Plans */
.popup-compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding: 20px 16px;
}

.popup-plan {
  border: 1.5px solid var(--border); border-radius: 14px; padding: 16px 12px; text-align: center;
}

.popup-plan.premium-plan { border-color: var(--green); background: var(--green-bg); }

.popup-plan h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 4px; color: var(--slate); }
.popup-plan-price { font-size: 1.5rem; font-weight: 900; color: #1a1a2e; margin-bottom: 4px; }
.popup-plan-price.big { font-size: 1.8rem; color: var(--green); }
.popup-plan-discount { font-size: 0.65rem; font-weight: 800; color: var(--orange); margin-bottom: 8px; }

.popup-plan ul { text-align: left; }
.popup-plan ul li { font-size: 0.75rem; padding: 2px 0; display: flex; align-items: center; gap: 4px; color: #475569; }

.x-mark { color: var(--red); font-weight: 800; font-size: 0.7rem; flex-shrink: 0; }
.v-mark { color: var(--green); font-weight: 800; font-size: 0.7rem; flex-shrink: 0; }

.popup-premium-badge {
  display: inline-block; background: var(--green); color: #fff;
  font-size: 0.65rem; font-weight: 800; padding: 3px 10px; border-radius: 50px;
  margin-bottom: 6px;
}

/* Popup CTA */
.popup-cta {
  display: block; margin: 0 16px 12px; background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; font-weight: 800; font-size: 0.95rem; padding: 15px 20px;
  border-radius: 60px; text-align: center; text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(34,197,94,0.4); transition: all 0.3s;
}

.popup-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(34,197,94,0.5); }

.popup-decline {
  text-align: center; font-size: 0.78rem; color: var(--slate-light);
  padding: 0 16px 8px; cursor: pointer; text-decoration: underline;
  transition: color 0.2s;
}

.popup-decline:hover { color: var(--slate); }

.popup-safe { text-align: center; font-size: 0.72rem; color: var(--green-dark); padding: 0 16px 20px; font-weight: 600; }

/* Popup 2 - Premium Offer */
.popup-premium-offer { padding: 20px 16px; text-align: center; }

.popup-kit-badge {
  display: inline-block; background: var(--green); color: #fff;
  font-size: 0.75rem; font-weight: 800; padding: 5px 16px; border-radius: 50px; margin-bottom: 12px;
}

.popup-offer-price span { font-size: 0.85rem; color: var(--slate); }
.popup-offer-price s { color: var(--red); }
.popup-big-price { font-size: 3rem; font-weight: 900; color: var(--green); line-height: 1.1; }
.popup-discount-label { font-size: 0.8rem; font-weight: 800; color: var(--orange); margin-bottom: 12px; }

.popup-kit-img { max-width: 320px; margin: 12px auto; }
.popup-kit-img img { border-radius: 12px; }

.popup-features { text-align: left; max-width: 280px; margin: 0 auto 16px; }
.popup-features li { font-size: 0.82rem; padding: 3px 0; display: flex; align-items: center; gap: 6px; color: #475569; }

/* ==========================================
   DESKTOP RESPONSIVE
   ========================================== */
@media (min-width: 640px) {
  body { padding-bottom: 0; }
  .section-header h2 { font-size: 1.9rem; }
  .hero { padding: 40px 20px 50px; }
  .hero-title-block h1 { font-size: 2rem; }
  .guarantee-pillars { flex-direction: row; gap: 14px; }
  .sticky-bottom-bar { display: none; }
  .social-notification { bottom: 20px; left: 20px; }

  .step-card-grid p { display: block; }
}

@media (min-width: 768px) {
  .container { padding: 0 24px; }
  .section-header h2 { font-size: 2.1rem; }
  .hero-title-block h1 { font-size: 2.3rem; }
  .apostila-card { min-width: 280px; }
  .testimonials-grid { flex-direction: row; flex-wrap: wrap; }
  .testimonial-card { flex: 1; min-width: 280px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; text-align: left; }
}

@media (min-width: 1024px) {
  .section-header h2 { font-size: 2.4rem; }
  .section-header { margin-bottom: 40px; }
  .hero { padding: 50px 24px 60px; }
  .hero-title-block h1 { font-size: 2.6rem; }
  .price-value { font-size: 3.8rem; }
  .how-it-works, .apostilas, .bonus, .testimonials, .pricing, .guarantee, .faq { padding: 64px 0; }
  .steps-grid-2x2 { max-width: 700px; margin: 0 auto 16px; gap: 20px; }
  .apostila-card { min-width: 300px; }
  .bonus-grid { grid-template-columns: repeat(4, 1fr); }
  .pricing-grid { flex-direction: row; max-width: 800px; align-items: start; }
  .pricing-card { flex: 1; }
  .pricing-card.premium { flex: 1.2; }
  .guarantee-content { flex-direction: row; text-align: left; gap: 40px; }
}
