/* ═══════════════════════════════════════════════════════════
   PACK +120 CONSTRUÇÕES RURAIS — Landing Page CSS
   ═══════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --green-deep:    #0d2e0f;
  --green-dark:    #1b5e20;
  --green-mid:     #2e7d32;
  --green-bright:  #43a047;
  --green-light:   #a5d6a7;
  --green-pale:    #e8f5e9;
  --gold:          #f9a825;
  --gold-dark:     #e65100;
  --gold-glow:     rgba(249,168,37,0.35);
  --white:         #ffffff;
  --bg-base:       #080e09;
  --bg-dark:       #0a1209;
  --bg-med:        #0e1c10;
  --bg-card:       rgba(255,255,255,0.04);
  --bg-card-h:     rgba(255,255,255,0.07);
  --border:        rgba(255,255,255,0.08);
  --border-green:  rgba(67,160,71,0.3);
  --text-white:    #f0faf0;
  --text-muted:    #8ab88a;
  --text-dim:      #5a8a5a;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --radius-xl:     32px;
  --shadow-card:   0 8px 40px rgba(0,0,0,0.5);
  --shadow-glow:   0 0 80px rgba(27,94,32,0.25);
  --transition:    0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-base);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════
   TICKER BAR
══════════════════════════════════════════════ */
.ticker-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--green-dark) 0%, #2e7d32 50%, var(--green-dark) 100%);
  height: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  will-change: transform;
}

.ticker-items {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
}

.ticker-items span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
  flex-shrink: 0;
}

.ticker-sep {
  color: var(--gold) !important;
  font-size: 0.5rem !important;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 70px 0 80px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #040d05 0%, #0a1e0c 40%, #0d2a10 100%);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse, rgba(27,94,32,0.35) 0%, transparent 70%);
  pointer-events: none;
  animation: hero-pulse 4s ease-in-out infinite alternate;
}

@keyframes hero-pulse {
  from { opacity: 0.6; transform: translateX(-50%) scale(1); }
  to   { opacity: 1;   transform: translateX(-50%) scale(1.1); }
}

/* Countdown bar — faixa fixa com marquee */
.countdown-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 52px;
  background: linear-gradient(90deg, var(--green-dark) 0%, #2e7d32 50%, var(--green-dark) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.cd-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 22s linear infinite;
  will-change: transform;
}

.cd-items {
  display: flex;
  align-items: center;
  padding-right: 60px;
  white-space: nowrap;
}

.cd-msg {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
}

.cd-hours, .cd-minutes, .cd-seconds {
  color: var(--gold);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

/* Hero grid */
.hero-grid {
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: 32px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 40px;
}

/* Hero content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(67,160,71,0.15);
  border: 1px solid rgba(67,160,71,0.4);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--green-light);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.badge-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4caf50;
  flex-shrink: 0;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76,175,80,0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(76,175,80,0); }
}

.hero-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-headline em { font-style: normal; }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(240,250,240,0.8);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 520px;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 0;
  margin-bottom: 32px;
  overflow: hidden;
}

.hstat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 12px;
}

.hstat-num {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--green-bright);
  line-height: 1;
}

.hstat-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

.hstat-div {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* CTA */
.hero-cta-wrap { margin-bottom: 24px; }

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #f9a825 0%, #f57c00 100%);
  color: #1a0a00;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.06em;
  padding: 18px 36px;
  border-radius: 50px;
  box-shadow: 0 6px 30px rgba(249,168,37,0.45), 0 2px 8px rgba(0,0,0,0.3);
  transition: var(--transition);
  text-transform: uppercase;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 60%);
  pointer-events: none;
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 45px rgba(249,168,37,0.6), 0 4px 12px rgba(0,0,0,0.4);
}

.btn-gold:active { transform: translateY(0) scale(0.99); }

.btn-hero {
  font-size: 1.05rem;
  padding: 20px 40px;
}

.btn-pulse {
  animation: btn-pulse 2.5s ease-in-out infinite;
}

@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 6px 30px rgba(249,168,37,0.45); }
  50%       { box-shadow: 0 10px 50px rgba(249,168,37,0.75), 0 0 0 8px rgba(249,168,37,0.1); }
}

.cta-trust {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

/* ── MOCKUP ── */
.hero-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mockup-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}

/* Stack pages */
.mock-page {
  position: absolute;
  width: 320px;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.7);
}

.mock-p3 {
  width: 310px; height: 430px;
  background: linear-gradient(145deg, #e8f5e9, #c8e6c9);
  top: 30px; left: -10px;
  transform: rotate(-5deg);
  z-index: 1;
}

.mock-p2 {
  width: 315px; height: 435px;
  background: linear-gradient(145deg, #f0faf0, #dcedc8);
  top: 15px; left: -4px;
  transform: rotate(-2.5deg);
  z-index: 2;
}

.mock-p1 {
  position: relative;
  width: 320px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  z-index: 3;
  box-shadow: 0 30px 90px rgba(0,0,0,0.75), 0 0 0 1px rgba(27,94,32,0.3);
}

.mock-header {
  background: var(--green-dark);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mock-num {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 900;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}

.mock-hinfo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.mock-htitle {
  font-size: 0.62rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mock-hsub {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.7);
}

.mock-img {
  width: 100%;
  overflow: hidden;
  max-height: 120px;
}

.mock-stats-bar {
  background: var(--green-dark);
  display: flex;
  justify-content: space-between;
  padding: 4px 10px;
}

.mock-stats-bar span {
  font-size: 0.58rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.03em;
}

.mock-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  padding: 6px;
  background: #f8fff8;
  border-top: 2px solid var(--green-pale);
}

.mock-col {
  padding: 4px;
  border-right: 1px solid #e8f5e9;
}
.mock-col:last-child { border-right: none; }

.mock-col-title {
  font-size: 0.5rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--green-pale);
  padding-bottom: 3px;
  margin-bottom: 4px;
}

.mock-list div {
  font-size: 0.48rem;
  color: #444;
  line-height: 1.5;
}

.mock-cost {
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--green-dark);
  margin-top: 4px;
}

.mock-tags {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 5px;
}

.mock-tags span {
  font-size: 0.44rem;
  font-weight: 700;
  background: var(--green-pale);
  color: var(--green-dark);
  padding: 2px 4px;
  border-radius: 3px;
  letter-spacing: 0.06em;
}

/* Float badges */
.float-badge {
  position: absolute;
  background: rgba(10,18,11,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(67,160,71,0.4);
  border-radius: 50px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-white);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 10;
  animation: float 3s ease-in-out infinite;
}

.fb-icon { font-size: 1rem; }

.fb-tl { top: -16px; left: -30px; animation-delay: 0s; }
.fb-tr { top: 60px; right: -30px; animation-delay: 0.8s; }
.fb-br { bottom: 40px; right: -30px; animation-delay: 1.6s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Count badge */
.mock-count-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: linear-gradient(135deg, var(--gold) 0%, #e65100 100%);
  color: #1a0a00;
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: 0 8px 30px rgba(249,168,37,0.5);
  z-index: 10;
  text-align: center;
  animation: float 3.5s ease-in-out infinite;
}

.mcb-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.mcb-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Scroll indicator */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  opacity: 0.5;
  font-size: 0.75rem;
  color: var(--text-muted);
  animation: bounce-down 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* Gold/Green highlight utility */
.gold { color: var(--gold); font-style: normal; }
.green { color: var(--green-bright); font-style: normal; }

/* ══════════════════════════════════════════════
   SECTION BASES
══════════════════════════════════════════════ */
.section-dark   { background: var(--bg-dark);  padding: 40px 0; }
.section-medium { background: var(--bg-med);   padding: 40px 0; }
.section-light  { background: #f0faf0;         padding: 40px 0; }

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

.section-tag {
  display: inline-block;
  background: rgba(67,160,71,0.15);
  border: 1px solid rgba(67,160,71,0.4);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green-bright);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-tag-dark {
  background: rgba(27,94,32,0.12);
  border-color: rgba(27,94,32,0.3);
  color: var(--green-dark);
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 16px;
}

.dark-title { color: #0d2e0f; }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   CATEGORIES GRID (O QUE VAI RECEBER)
══════════════════════════════════════════════ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}

/* ── Category card — clean premium ── */
.cat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.cat-card:hover {
  border-color: rgba(67,160,71,0.45);
  background: rgba(67,160,71,0.04);
  transform: translateY(-5px);
  box-shadow:
    0 18px 48px rgba(0,0,0,0.38),
    0 0 0 1px rgba(67,160,71,0.08);
}

.cat-icon {
  font-size: 2rem;
  line-height: 1;
  display: block;
  margin-bottom: 14px;
  transition: transform 0.25s ease;
}

.cat-card:hover .cat-icon { transform: scale(1.12); }

.cat-name {
  font-size: 0.97rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.cat-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.46);
  line-height: 1.55;
  margin: 0;
  transition: color 0.25s ease;
}

.cat-desc strong {
  color: var(--green-bright);
  font-weight: 700;
}

.cat-card:hover .cat-desc { color: rgba(255,255,255,0.68); }

/* Includes box */
.includes-box {
  background: linear-gradient(135deg, rgba(27,94,32,0.2), rgba(46,125,50,0.1));
  border: 1px solid rgba(67,160,71,0.35);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.includes-box h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 28px;
}

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

.inc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
  transition: var(--transition);
}

.inc-item:hover {
  background: rgba(67,160,71,0.12);
  border-color: rgba(67,160,71,0.4);
}

.inc-icon { font-size: 1.2rem; flex-shrink: 0; }

/* ══════════════════════════════════════════════
   BENEFITS GRID
══════════════════════════════════════════════ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-bright), transparent);
  opacity: 0;
  transition: var(--transition);
}

.benefit-card:hover {
  border-color: var(--border-green);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 40px rgba(27,94,32,0.2);
}

.benefit-card:hover::after { opacity: 1; }

.benefit-icon-wrap {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(27,94,32,0.35), rgba(67,160,71,0.15));
  border: 1px solid rgba(67,160,71,0.3);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.benefit-icon { font-size: 1.6rem; }

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   HOW IT WORKS / STEPS
══════════════════════════════════════════════ */
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.step {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.step:hover {
  border-color: var(--border-green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.step-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--green-bright);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.step-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-arrow {
  font-size: 1.6rem;
  color: var(--green-dim, #5a8a5a);
  flex-shrink: 0;
  padding-top: 48px;
  opacity: 0.6;
}

.funciona-cta { text-align: center; }

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: #fff;
  border: 1px solid #d4edda;
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(27,94,32,0.08);
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(27,94,32,0.15);
  border-color: var(--green-bright);
}

.testi-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-text {
  font-size: 0.9rem;
  color: #2d4a2f;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.testi-f { background: linear-gradient(135deg, #6a1b9a, #ab47bc); }

.testi-author strong {
  display: block;
  font-size: 0.88rem;
  color: #1a2e1b;
  font-weight: 800;
}

.testi-author span {
  font-size: 0.76rem;
  color: #5a8a5a;
}

/* ══════════════════════════════════════════════
   BONUSES
══════════════════════════════════════════════ */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 22px 22px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.bonus-card:hover {
  border-color: var(--border-green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), 0 0 40px rgba(27,94,32,0.15);
}

.bonus-highlight {
  border-color: rgba(249,168,37,0.35);
  background: linear-gradient(135deg, rgba(249,168,37,0.06), rgba(230,81,0,0.04));
}

.bonus-highlight:hover {
  border-color: rgba(249,168,37,0.6);
  box-shadow: var(--shadow-card), 0 0 40px rgba(249,168,37,0.15);
}

.bonus-num {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--green-bright);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.bonus-highlight .bonus-num { color: var(--gold); }

/* Capa 3D do bônus */
.bonus-capa {
  display: block;
  width: 72%;
  max-width: 190px;
  height: auto;
  margin: 0 auto 16px;
  border-radius: 6px;
  box-shadow:
    0 16px 48px rgba(0,0,0,0.65),
    0 6px 16px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.04);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}

.bonus-card:hover .bonus-capa {
  transform: translateY(-8px) scale(1.04);
  box-shadow:
    0 28px 64px rgba(0,0,0,0.70),
    0 10px 24px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.06);
}

.bonus-tag {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
  text-decoration: line-through;
}

.bonus-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.bonus-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 12px;
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bonus-list li {
  font-size: 0.83rem;
  color: rgba(240,250,240,0.8);
}

/* Bonus total bar */
.bonus-total {
  background: linear-gradient(135deg, rgba(27,94,32,0.3), rgba(67,160,71,0.15));
  border: 1px solid rgba(67,160,71,0.4);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.bonus-total-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.bt-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.bt-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bt-value {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-white);
}

.bt-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
}

.bt-sep {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-bright);
  opacity: 0.6;
}

/* ══════════════════════════════════════════════
   COMPARISON TABLE
══════════════════════════════════════════════ */
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  min-width: 600px;
}

.comparison-table th,
.comparison-table td {
  padding: 7px 12px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.78rem;
}

.comp-feature {
  text-align: left !important;
  font-weight: 700;
  color: var(--text-muted);
  width: 40%;
}

.comp-basic {
  background: rgba(255,255,255,0.03);
}

.comp-premium {
  background: linear-gradient(160deg, rgba(27,94,32,0.25), rgba(67,160,71,0.1));
  border-left: 2px solid rgba(67,160,71,0.5);
  border-right: 2px solid rgba(67,160,71,0.5);
}

.comp-plan-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--text-white);
}

.comp-plan-price {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  color: var(--gold);
  margin-top: 2px;
}

.comp-plan-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), #e65100);
  color: #1a0a00;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  border-radius: 50px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.comparison-table thead tr th {
  background: rgba(255,255,255,0.05);
  padding: 12px;
  border-bottom: 2px solid var(--border);
}

.comparison-table tbody tr:hover td {
  background: rgba(255,255,255,0.02);
}

.comparison-table tbody tr:last-child td { border-bottom: none; }

td.comp-feature { color: var(--text-white); font-weight: 600; }
.comp-premium-col { background: linear-gradient(160deg, rgba(27,94,32,0.15), rgba(67,160,71,0.06)); }

.comp-check { color: var(--green-bright); font-size: 1.1rem; }
.comp-x     { color: #ef5350; font-size: 1rem; opacity: 0.7; }
.comp-val   { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }
.green-val  { color: var(--green-bright); }

/* Hidden on desktop; activated in mobile media query */
.comp-scroll-hint  { display: none; }
.comp-cards-mobile { display: none; }

/* ══════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════ */
.pricing-section {
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(249,168,37,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.plan-featured {
  border-color: rgba(249,168,37,0.5);
  background: linear-gradient(160deg, rgba(27,94,32,0.25), rgba(249,168,37,0.06));
  box-shadow: 0 0 60px rgba(249,168,37,0.12), var(--shadow-card);
}

.plan-featured:hover {
  box-shadow: 0 0 80px rgba(249,168,37,0.25), 0 24px 80px rgba(0,0,0,0.5);
}

.plan-featured-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #e65100);
  color: #1a0a00;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}

.plan-header { margin-bottom: 20px; }

.plan-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-white);
}

.plan-price-wrap {
  margin-bottom: 28px;
}

.plan-from {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.plan-from s { opacity: 0.6; }

.plan-price {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  margin-bottom: 4px;
}

.plan-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-white);
  margin-top: 8px;
  margin-right: 2px;
}

.plan-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-white);
}

.plan-featured .plan-amount { color: var(--gold); }

.plan-cents {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-top: 14px;
}

.plan-featured .plan-cents { color: var(--gold); }

.plan-once {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.pf-yes {
  font-size: 0.87rem;
  color: rgba(240,250,240,0.9);
}

.pf-no {
  font-size: 0.87rem;
  color: var(--text-dim);
  text-decoration: line-through;
  opacity: 0.6;
}

.btn-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn-plan-basic {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  color: var(--text-white);
}

.btn-plan-basic:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
}

.btn-plan-premium {
  background: linear-gradient(135deg, #f9a825, #f57c00);
  color: #1a0a00;
  box-shadow: 0 6px 30px rgba(249,168,37,0.45);
  animation: btn-pulse 2.5s ease-in-out infinite;
}

.btn-plan-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 45px rgba(249,168,37,0.65);
}

.plan-secure {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 12px;
}

.plan-saving {
  text-align: center;
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--green-bright);
  font-weight: 600;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  padding: 16px 24px;
  background: rgba(249,168,37,0.07);
  border: 1px solid rgba(249,168,37,0.2);
  border-radius: var(--radius-md);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.88rem;
  color: rgba(240,250,240,0.8);
}

/* ══════════════════════════════════════════════
   GUARANTEE
══════════════════════════════════════════════ */
.guarantee-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  box-shadow: var(--shadow-card);
}

.guarantee-badge-wrap { flex-shrink: 0; }

/* ══ Selo de garantia — imagem ══ */
.guarantee-badge-img {
  width: 170px;
  height: 170px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(249,168,37,0.35));
  animation: medal-float 4.5s ease-in-out infinite;
}

@keyframes medal-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.guarantee-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--text-white);
}

.guarantee-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.guarantee-seals {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.seal {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(240,250,240,0.85);
}

/* ══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid #d4edda;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(27,94,32,0.06);
}

.faq-item.open {
  border-color: var(--green-bright);
  box-shadow: 0 6px 30px rgba(27,94,32,0.12);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a2e1b;
  cursor: pointer;
  transition: var(--transition);
  gap: 16px;
  background: none;
}

.faq-q:hover { background: rgba(27,94,32,0.04); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green-dark);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--green-bright);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 4px;
}

.faq-a p {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: #3d5c3f;
  line-height: 1.75;
}

/* ══════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════ */
.final-cta {
  position: relative;
  padding: 40px 0;
  background: linear-gradient(160deg, #040d05 0%, #0a1e0c 50%, #040d05 100%);
  text-align: center;
  overflow: hidden;
}

.final-cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(27,94,32,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.final-cta-content .section-tag { margin-bottom: 20px; }

.final-cta-content h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-white);
  margin-bottom: 20px;
}

.final-cta-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.final-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.fs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.fs-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-bright);
  line-height: 1;
}

.fs-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: #020804;
  border-top: 1px solid var(--border);
  padding: 20px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 32px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 14px;
}

.logo-icon { font-size: 1.4rem; }

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.65;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--green-bright); }

.footer-contact p {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.footer-seals {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.footer-seals span {
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px 12px;
  color: var(--text-muted);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.78rem;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--green-bright); }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 20px;
}

.footer-disclaimer p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  line-height: 1.6;
  text-align: center;
}

/* ══════════════════════════════════════════════
   MODAL DOWNSELL
══════════════════════════════════════════════ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
}

.modal-box {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, #0e1e10, #0a1209);
  border: 1px solid rgba(249,168,37,0.35);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 40px 120px rgba(0,0,0,0.8), 0 0 60px rgba(249,168,37,0.12);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.modal.active .modal-box {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}

.modal-close:hover { background: rgba(255,255,255,0.15); color: #fff; }

.modal-header { margin-bottom: 16px; }

.modal-tag {
  display: inline-block;
  background: rgba(249,168,37,0.15);
  border: 1px solid rgba(249,168,37,0.3);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.modal-title {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.25;
  margin-bottom: 24px;
}

.modal-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(249,168,37,0.1);
  border: 1px solid rgba(249,168,37,0.3);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
}

.modal-countdown #modal-countdown-timer {
  color: var(--gold);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.mcd-ic { font-size: 1rem; }

.modal-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.modal-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-modal-premium {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #f9a825, #f57c00);
  color: #1a0a00;
  font-weight: 900;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  border-radius: 50px;
  box-shadow: 0 6px 30px rgba(249,168,37,0.4);
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-modal-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(249,168,37,0.6);
}

.btn-modal-basic {
  width: 100%;
  padding: 4px 8px;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 400;
  color: #A0A0A0;
  opacity: 0.65;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-modal-basic:hover { opacity: 0.85; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-showcase {
    order: -1;
  }

  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid   { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  .steps-grid {
    flex-wrap: wrap;
  }
  .step { min-width: calc(50% - 8px); }
  .step-arrow:nth-child(4) { display: none; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .guarantee-wrap { flex-direction: column; text-align: center; }
  .guarantee-seals { justify-content: center; }
}

@media (max-width: 768px) {
  .section-dark, .section-medium, .section-light { padding: 28px 0; }

  .categories-grid { grid-template-columns: 1fr; }
  .benefits-grid   { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .bonus-grid      { grid-template-columns: 1fr; }
  .pricing-grid    { grid-template-columns: 1fr; }
  .includes-grid   { grid-template-columns: repeat(2, 1fr); }

  .steps-grid {
    flex-direction: column;
  }
  .step-arrow { display: none; }
  .step { min-width: 100%; }

  .hero { padding: 36px 0 60px; }
  .hero-headline { font-size: 1.8rem; }
  .hero-sub { font-size: 0.95rem; }

  .btn-hero { font-size: 0.9rem; padding: 16px 28px; }

  .hero-stats { flex-wrap: wrap; }
  .hstat-div { display: none; }
  .hstat { min-width: 50%; border-bottom: 1px solid var(--border); padding: 8px; }

  /* ── Comparativo: cards empilhados no mobile ── */

  /* Oculta a tabela e o hint de scroll */
  .comparison-table-wrap,
  .comp-scroll-hint { display: none; }

  /* Mostra os cards */
  .comp-cards-mobile { display: flex; flex-direction: column; gap: 14px; }

  /* Base do card */
  .ccm-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 18px;
  }

  /* Card Premium: borda dourada + glow */
  .ccm-card-premium {
    border: 2px solid rgba(249,168,37,0.60);
    background: linear-gradient(160deg, rgba(27,94,32,0.28), rgba(67,160,71,0.10));
    box-shadow: 0 0 30px rgba(249,168,37,0.16), 0 8px 32px rgba(0,0,0,0.42);
  }

  /* Badge "MAIS ESCOLHIDO" */
  .ccm-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #e65100);
    color: #1a0a00;
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.10em;
    padding: 3px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  /* Cabeçalho do card */
  .ccm-plan-header { margin-bottom: 14px; }

  .ccm-plan-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
  }

  .ccm-plan-price {
    display: block;
    font-size: 2.0rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1;
  }

  .ccm-price-gold { color: var(--gold); }

  /* Lista de itens */
  .ccm-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .ccm-yes {
    font-size: 0.83rem;
    font-weight: 500;
    color: var(--text-white);
    line-height: 1.3;
  }

  .ccm-no {
    font-size: 0.83rem;
    font-weight: 400;
    color: var(--text-muted);
    opacity: 0.60;
    line-height: 1.3;
  }

  /* CTA no card Premium */
  .ccm-cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 18px;
    box-sizing: border-box;
  }

  /* Espaço para não sobrepor com botão flutuante */
  #comparacao { padding-bottom: 80px; }

  .bonus-total           { padding: 14px 20px; }
  .bonus-total-inner     { flex-direction: column; gap: 6px; }
  .bt-col                { gap: 2px; }
  .bt-label              { font-size: 0.64rem; letter-spacing: 0.04em; }
  .bt-value              { font-size: 1.35rem; }
  .bt-proj               { font-size: 1.0rem !important; font-weight: 700; color: rgba(255,255,255,0.80); }
  .bt-price              { font-size: 1.8rem; }
  .bt-sep                { font-size: 0.95rem; transform: rotate(90deg); }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  .guarantee-wrap { padding: 36px 24px; }

  .fb-tl, .fb-tr, .fb-br { display: none; }

  .modal-box { padding: 28px 20px; }

  .mock-page.mock-p3,
  .mock-page.mock-p2 { display: none; }

  .mockup-wrap { max-width: 300px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 1.5rem; }
  .section-title { font-size: 1.5rem; }
  .includes-grid { grid-template-columns: 1fr; }
  .pricing-grid { max-width: 340px; margin: 0 auto; }
  .final-stats { gap: 20px; }
  .fs-num { font-size: 1.6rem; }
}

/* ══════════════════════════════════════════════
   UTILITY ANIMATIONS
══════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Staggered reveal delays */
.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.4s; }
.reveal:nth-child(7) { transition-delay: 0.48s; }
.reveal:nth-child(8) { transition-delay: 0.56s; }
.reveal:nth-child(9) { transition-delay: 0.64s; }

/* ════════════════════════════════════════
   HERO MOCKUP STAGE (imagens reais)
════════════════════════════════════════ */
.mockup-stage {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding-top: 70px;
}

.ms-page {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
  pointer-events: none;
  line-height: 0;
}

.ms-page img {
  width: 100%;
  height: auto;
  display: block;
}

.ms-back-far {
  width: 46%;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  z-index: 1;
  opacity: 0.28;
  filter: blur(2px) brightness(0.45);
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

.ms-back-left {
  width: 58%;
  left: -4%;
  top: 14px;
  transform: rotate(-9deg) translateY(8px);
  z-index: 2;
  opacity: 0.52;
  filter: brightness(0.62);
  box-shadow: -6px 10px 28px rgba(0,0,0,0.55);
}

.ms-back-right {
  width: 58%;
  right: -4%;
  top: 14px;
  transform: rotate(9deg) translateY(8px);
  z-index: 2;
  opacity: 0.52;
  filter: brightness(0.62);
  box-shadow: 6px 10px 28px rgba(0,0,0,0.55);
}

.ms-main {
  position: relative;
  z-index: 5;
  width: 90%;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
  box-shadow:
    0 24px 70px rgba(0,0,0,0.78),
    0 0 0 2px rgba(255,255,255,0.09),
    0 0 70px rgba(27,94,32,0.22);
  transition: box-shadow 0.4s ease;
  animation: ms-float 4.5s ease-in-out infinite;
}

.ms-main:hover {
  box-shadow:
    0 32px 90px rgba(0,0,0,0.85),
    0 0 0 2px rgba(255,255,255,0.14),
    0 0 90px rgba(27,94,32,0.32);
  animation-play-state: paused;
}

.ms-main img { width: 100%; height: auto; display: block; }

@keyframes ms-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}

/* ── Seal badges ── */
.ms-seals {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
  padding: 0 4px;
}

.ms-seal {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(6,12,7,0.93);
  backdrop-filter: blur(14px);
  border: 1.5px solid rgba(67,160,71,0.52);
  border-radius: 50px;
  padding: 9px 16px;
  font-size: 0.76rem;
  font-weight: 800;
  color: #e8f5e8;
  box-shadow: 0 4px 18px rgba(0,0,0,0.5), 0 0 20px rgba(67,160,71,0.07);
  letter-spacing: 0.025em;
  white-space: nowrap;
  transition: all 0.3s ease;
  animation: float 3.5s ease-in-out infinite;
}

.ms-seal:nth-child(2) { animation-delay: 0.55s; }
.ms-seal:nth-child(3) { animation-delay: 1.1s; }

.ms-seal:hover {
  border-color: rgba(76,175,80,0.82);
  background: rgba(8,20,10,0.97);
  transform: translateY(-3px);
  box-shadow: 0 8px 26px rgba(0,0,0,0.5), 0 0 28px rgba(76,175,80,0.16);
}

.ms-seal-gold {
  border-color: rgba(249,168,37,0.62);
  color: var(--gold);
  box-shadow: 0 4px 18px rgba(0,0,0,0.5), 0 0 20px rgba(249,168,37,0.1);
}

.ms-seal-gold:hover {
  border-color: rgba(249,168,37,0.9);
  background: rgba(28,16,2,0.97);
  box-shadow: 0 8px 26px rgba(0,0,0,0.5), 0 0 30px rgba(249,168,37,0.22);
}

.ms-seal-icon { font-size: 1.1rem; flex-shrink: 0; }

/* ── pf-bonus (premium plan bonus items) ── */
.pf-bonus {
  font-size: 0.84rem;
  color: var(--gold);
  font-weight: 700;
  padding: 2px 0;
}

/* ── Responsive: mockup stage ── */
@media (max-width: 1024px) {
  .mockup-stage { padding-top: 55px; max-width: 420px; }
  .ms-back-left, .ms-back-right { width: 52%; }
}

@media (max-width: 768px) {
  .mockup-stage { padding-top: 46px; max-width: 350px; }
  .ms-back-left  { width: 48%; left: -3%; }
  .ms-back-right { width: 48%; right: -3%; }
  .ms-back-far   { width: 40%; }
  .ms-seals { gap: 8px; }
  .ms-seal  { font-size: 0.7rem; padding: 7px 12px; gap: 5px; }
  .ms-seal-icon { font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .mockup-stage { padding-top: 38px; }
  .ms-back-left  { width: 44%; left: -2%; }
  .ms-back-right { width: 44%; right: -2%; }
  .ms-back-far { display: none; }
  .ms-seals { gap: 6px; }
  .ms-seal  { font-size: 0.67rem; padding: 6px 10px; gap: 5px; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--green-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-bright); }

/* Selection */
::selection { background: rgba(27,94,32,0.4); color: var(--text-white); }

/* ════════════════════════════════════════════════
   HERO SHOWCASE — CARROSSEL PREMIUM
════════════════════════════════════════════════ */
.hero-showcase {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Carousel container ── */
.hc-carousel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  /* 3:2 landscape — ideal para folhas técnicas */
  aspect-ratio: 3 / 2;
  box-shadow:
    0 32px 90px rgba(0,0,0,0.72),
    0 0 0 2px rgba(255,255,255,0.09),
    0 0 90px rgba(27,94,32,0.18);
  cursor: pointer;
  transition: box-shadow 0.4s ease;
  user-select: none;
}

.hc-carousel:hover {
  box-shadow:
    0 40px 110px rgba(0,0,0,0.8),
    0 0 0 2px rgba(67,160,71,0.28),
    0 0 110px rgba(27,94,32,0.26);
}

/* ── Track ── */
.hc-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ── Slides ── */
.hc-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hc-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #fff;
  -webkit-user-drag: none;
  pointer-events: none;
}

.hc-slide-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 18px 14px;
  background: linear-gradient(0deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.28) 65%, transparent 100%);
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  pointer-events: none;
}

/* ── Nav arrows ── */
.hc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: rgba(4,10,5,0.7);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.hc-btn:hover {
  background: rgba(27,94,32,0.85);
  border-color: rgba(67,160,71,0.75);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 0 22px rgba(67,160,71,0.35);
}

.hc-prev { left: 12px; }
.hc-next { right: 12px; }

/* ── Dots ── */
.hc-dots {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 20;
}

.hc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.38);
  border: 1px solid rgba(255,255,255,0.22);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hc-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.45);
  box-shadow: 0 0 8px rgba(249,168,37,0.65);
}

/* ── Counter ── */
.hc-counter {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  z-index: 20;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

/* ── Hint ── */
.hc-hint {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.64rem;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  z-index: 20;
  letter-spacing: 0.03em;
  pointer-events: none;
}

/* ── Responsive: carousel ── */
@media (max-width: 1024px) {
  .hc-carousel { aspect-ratio: 3 / 2; }
}

@media (max-width: 768px) {
  .hc-carousel { aspect-ratio: 4 / 3; border-radius: 12px; }
  .hc-btn { width: 38px; height: 38px; font-size: 1.4rem; }
  .hc-prev { left: 8px; }
  .hc-next { right: 8px; }
  .hc-hint { display: none; }
}

@media (max-width: 480px) {
  .hero-showcase { gap: 16px; }
  .hc-carousel { aspect-ratio: 4 / 3; border-radius: 10px; }
  .hc-btn { width: 32px; height: 32px; font-size: 1.2rem; }
  .hc-dots { bottom: 32px; gap: 6px; }
  .hc-dot { width: 7px; height: 7px; }
  .hc-counter { font-size: 0.62rem; padding: 3px 10px; }
}

/* ══════════════════════════════════════════════
   GALLERY SECTION — carrossel infinito (faixa única)
══════════════════════════════════════════════ */
.gallery-section-wrap {
  background: var(--bg-dark);
}

.gallery-marquee {
  overflow: hidden;
  width: 100%;
}

.gal-track {
  display: flex;
  width: max-content;
  animation: gal-scroll 45s linear infinite;
  will-change: transform;
}

.gal-row {
  display: flex;
  gap: 20px;
  padding-right: 20px;
  flex-shrink: 0;
}

@media (hover: hover) and (pointer: fine) {
  .gallery-marquee:hover .gal-track {
    animation-play-state: paused;
  }
}

@keyframes gal-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.gal-item {
  flex: 0 0 540px;
  border-radius: 16px;
  overflow: hidden;
  cursor: default;
}

.gal-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-med);
}

.gal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.55s ease;
}

.gal-item:hover .gal-img-wrap img {
  transform: scale(1.06);
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.06) 55%);
  display: flex;
  align-items: flex-end;
  padding: 14px 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gal-item:hover .gal-overlay {
  opacity: 1;
}

.gal-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

@media (max-width: 768px) {
  .gal-item { flex: 0 0 calc(100vw - 40px); }
}

@media (max-width: 480px) {
  .gal-item { flex: 0 0 calc(100vw - 32px); }
}

/* ══════════════════════════════════════════════
   RECEIVE SECTION — O que você recebe
══════════════════════════════════════════════ */
.receive-section {
  background: var(--bg-dark);
}

.receive-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  overflow: hidden;
}

.receive-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s ease;
}

.receive-list li:nth-child(2n) { border-right: none; }
.receive-list li:nth-last-child(-n+2) { border-bottom: none; }

.receive-list li:hover { background: rgba(67,160,71,0.05); }

.rl-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.receive-list li div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.receive-list li strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.rl-sub {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════
   IDEAL PARA SECTION
══════════════════════════════════════════════ */
.ideal-section {
  background: var(--bg-dark);
}

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

.ideal-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.ideal-card:hover {
  border-color: rgba(67,160,71,0.4);
  background: rgba(67,160,71,0.06);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.ideal-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s ease;
}

.ideal-card:hover .ideal-icon { transform: scale(1.15); }

.ideal-text {
  font-size: 0.87rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  line-height: 1.4;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS — enhanced (white-card context)
══════════════════════════════════════════════ */
.testi-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testi-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: #1a2e1b;
  display: block;
}

.testi-location {
  font-size: 0.75rem;
  color: #5a8a5a;
  font-style: normal;
}

.testi-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
}

.testi-meta span {
  font-size: 0.7rem;
  color: #8aaa8a;
}

.testi-dot {
  color: #c5dcc5 !important;
}

/* Two-letter initials fit smaller */
.testi-avatar {
  font-size: 0.8rem;
}

/* ══════════════════════════════════════════════
   DEPOIMENTOS — carrossel de conversas WhatsApp
══════════════════════════════════════════════ */
.chat-carousel {
  position: relative;
  padding: 0 54px;
}

.chat-track-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.chat-track-wrap::-webkit-scrollbar { display: none; }

.chat-track {
  display: flex;
  gap: 22px;
}

.chat-slide {
  flex: 0 0 380px;
  scroll-snap-align: center;
}

.phone {
  background: #0b1410;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(27,94,32,0.25);
  display: flex;
  flex-direction: column;
}

.phone-head {
  background: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: #fff;
  flex-shrink: 0;
}

.ph-back { font-size: 1.1rem; opacity: 0.85; }

.phone-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-dark), var(--green-bright));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.75rem; color: #fff;
}
.phone-avatar-f { background: linear-gradient(135deg, #6a1b9a, #ab47bc); }

.phone-who { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.phone-name { font-size: 0.88rem; font-weight: 700; line-height: 1.2; }
.phone-status { font-size: 0.68rem; color: rgba(255,255,255,0.65); }

.phone-icons {
  display: flex;
  gap: 12px;
  font-size: 0.85rem;
  opacity: 0.85;
  flex-shrink: 0;
}

.phone-body {
  background: #e9e3d5;
  padding: 14px 10px;
  height: 480px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-date {
  align-self: center;
  background: rgba(255,255,255,0.75);
  color: #5a6a58;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 12px;
  border-radius: 20px;
  margin: 4px 0 8px;
}

.bubble {
  max-width: 84%;
  padding: 7px 9px;
  border-radius: 9px;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #1c2b1c;
  box-shadow: 0 1px 1px rgba(0,0,0,0.12);
}

.bubble.in {
  background: #fff;
  align-self: flex-start;
  border-top-left-radius: 2px;
}

.bubble.out {
  background: #dcf8c6;
  align-self: flex-end;
  border-top-right-radius: 2px;
}

.b-time {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  margin-top: 3px;
  font-size: 0.62rem;
  color: #7a8a78;
}

.b-time .tick { color: #4fa3e3; font-weight: 700; }

.bubble.photo { padding: 4px; }
.bubble.photo img {
  width: 100%;
  max-width: 240px;
  border-radius: 6px;
  display: block;
}
.bubble.photo .b-time { padding: 3px 4px 0; }

.bubble.audio {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 230px;
  max-width: 100%;
  padding: 6px 10px;
}

.audio-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-dark), var(--green-bright));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.62rem; color: #fff;
}
.audio-avatar-f { background: linear-gradient(135deg, #6a1b9a, #ab47bc); }

.audio-play {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green-dark); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; flex-shrink: 0;
  padding-left: 2px;
}

.audio-wave {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2px;
  height: 20px;
  overflow: hidden;
  min-width: 0;
}

.audio-wave span {
  display: block;
  width: 2px;
  border-radius: 1px;
  background: #a6b8a3;
  flex-shrink: 0;
}

.bubble.out .audio-wave span { background: #7fa87a; }

.audio-wave span:nth-child(7n+1) { height: 35%; }
.audio-wave span:nth-child(7n+2) { height: 65%; }
.audio-wave span:nth-child(7n+3) { height: 95%; }
.audio-wave span:nth-child(7n+4) { height: 50%; }
.audio-wave span:nth-child(7n+5) { height: 80%; }
.audio-wave span:nth-child(7n+6) { height: 60%; }
.audio-wave span:nth-child(7n)   { height: 30%; }

.audio-dur {
  font-size: 0.66rem;
  color: #6b7a68;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .bubble.audio { width: 200px; gap: 6px; padding: 5px 8px; }
  .audio-avatar { width: 26px; height: 26px; }
  .audio-play { width: 24px; height: 24px; }
}

.phone-input {
  background: #f0f0ee;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  flex-shrink: 0;
}
.pi-pill {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #9aa39a;
}
.pi-mic {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--green-dark); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.chat-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-bright);
  color: #fff;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 2;
}
.chat-nav:hover { background: var(--green-dark); transform: translateY(-50%) scale(1.08); }
.chat-prev { left: 0; }
.chat-next { right: 0; }

.chat-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.chat-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(27,94,32,0.25);
  transition: background 0.25s ease, transform 0.25s ease;
}
.chat-dot.active {
  background: var(--green-bright);
  transform: scale(1.3);
}

@media (max-width: 900px) {
  .chat-carousel { padding: 0 44px; }
}

@media (max-width: 640px) {
  .chat-carousel { padding: 0; }
  .chat-nav { display: none; }
  .chat-slide { flex: 0 0 calc(100vw - 48px); }
  .phone-body { height: 420px; }
}

/* ══════════════════════════════════════════════
   PREMIUM PLAN — gold glow & stars
══════════════════════════════════════════════ */
.plan-featured-stars {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.12em;
  padding: 10px 0 0;
  text-transform: uppercase;
  text-shadow: 0 0 16px rgba(249,168,37,0.55);
  animation: star-pulse 2.8s ease-in-out infinite;
}

@keyframes star-pulse {
  0%, 100% { text-shadow: 0 0 10px rgba(249,168,37,0.4); }
  50%       { text-shadow: 0 0 28px rgba(249,168,37,0.85), 0 0 60px rgba(249,168,37,0.25); }
}

.plan-premium-seals {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 6px 0 10px;
}

.plan-seal {
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 50px;
  padding: 5px 12px;
  letter-spacing: 0.04em;
}

.plan-seal-gold {
  background: rgba(249,168,37,0.12);
  border: 1px solid rgba(249,168,37,0.45);
  color: var(--gold);
  box-shadow: 0 0 14px rgba(249,168,37,0.15);
}

/* Strengthen gold glow on plan-featured card */
#plan-premium {
  border-color: rgba(249,168,37,0.65);
  box-shadow:
    0 0 0 1px rgba(249,168,37,0.15),
    0 24px 80px rgba(0,0,0,0.55),
    0 0 70px rgba(249,168,37,0.12);
  position: relative;
}

#plan-premium::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(249,168,37,0.18) 0%, transparent 55%, rgba(249,168,37,0.08) 100%);
  pointer-events: none;
  z-index: 0;
}

#plan-premium:hover {
  border-color: rgba(249,168,37,0.55);
  box-shadow:
    0 0 0 1px rgba(249,168,37,0.2),
    0 32px 100px rgba(0,0,0,0.6),
    0 0 80px rgba(249,168,37,0.14);
}

/* ══════════════════════════════════════════════
   RESPONSIVE — new sections
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ideal-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .receive-list { grid-template-columns: 1fr; }
  .receive-list li:nth-child(2n) { border-right: 1px solid rgba(255,255,255,0.07); }
  .receive-list li:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .receive-list li:last-child { border-bottom: none; }
}

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

@media (max-width: 480px) {
  .ideal-card { padding: 16px; }
  .ideal-text { font-size: 0.82rem; }
}

/* ══════════════════════════════════════════════════
   MOBILE PREMIUM OPTIMIZATION — ≤ 768px ONLY
   Desktop (> 768px) is untouched.
══════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Espaçamento geral das seções ── */
  .section-dark,
  .section-medium,
  .section-light   { padding: 20px 0; }
  .section-header  { margin-bottom: 20px; }
  .section-title   { font-size: 1.55rem; }
  .section-desc    { font-size: 0.9rem; }
  .section-tag     { font-size: 0.68rem; margin-bottom: 8px; }

  /* ── HERO ── */
  .hero              { padding: 68px 0 0; min-height: unset; }
  .hero-grid         { gap: 6px; }
  .hero-headline     { font-size: 1.58rem; line-height: 1.25; }
  .hero-sub          { font-size: 0.86rem; line-height: 1.6; }
  .hero-showcase     { order: 1; } /* headline em cima, mockup embaixo */
  .scroll-indicator  { display: none; }

  /* Mockup mobile: 90% largura, espaço mínimo */
  .hero-showcase { gap: 10px; max-width: 90%; margin-left: auto; margin-right: auto; }
  .hc-carousel   { aspect-ratio: 4/3; border-radius: 12px; }

  /* Selos abaixo do carrossel */
  .ms-seals      { gap: 6px; flex-wrap: wrap; justify-content: center; }
  .ms-seal       { padding: 6px 10px; font-size: 0.67rem; gap: 5px; }
  .ms-seal-icon  { font-size: 0.85rem; }

  /* Estatísticas compactas */
  .hero-stats  { gap: 0; }
  .hstat       { padding: 7px 6px; min-width: 50%; }
  .hstat-num   { font-size: 1.15rem; }
  .hstat-lbl   { font-size: 0.61rem; }

  /* ── Categorias: 2 colunas, cards compactos ── */
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
    margin-bottom: 28px;
  }
  .cat-card     { padding: 17px 14px 18px; }
  .cat-icon     { font-size: 1.6rem; margin-bottom: 9px; }
  .cat-name     { font-size: 0.84rem; margin-bottom: 5px; }
  .cat-desc     {
    font-size: 0.72rem;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  /* ── "O que você recebe" — 2 colunas ── */
  .receive-list      { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .receive-list li   { padding: 12px 14px; gap: 9px; }
  .receive-list li strong { font-size: 0.81rem; }
  .rl-sub            { font-size: 0.68rem; }

  /* ── Benefícios: 2 colunas ── */
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .benefit-card  { padding: 19px 15px; }
  .benefit-icon-wrap { width: 42px; height: 42px; margin-bottom: 10px; }
  .benefit-icon  { font-size: 1.2rem; }
  .benefit-card h3 { font-size: 0.86rem; margin-bottom: 5px; }
  .benefit-card p  { font-size: 0.77rem; line-height: 1.5; }

  /* ── "Cada projeto inclui" — 2 colunas compacto ── */
  .includes-box   { padding: 22px 16px; }
  .includes-box h3{ font-size: 1rem; margin-bottom: 16px; }
  .includes-grid  { gap: 8px; }
  .inc-item       { padding: 10px 12px; font-size: 0.77rem; gap: 8px; }
  .inc-icon       { font-size: 0.95rem; }

  /* ── "Ideal para" — 2 colunas compacto ── */
  .ideal-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .ideal-card { padding: 11px 12px; gap: 9px; }
  .ideal-icon { font-size: 1.25rem; }
  .ideal-text { font-size: 0.78rem; line-height: 1.35; }

  /* ── Depoimentos: carrossel horizontal (1 por vez) ── */
  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding-bottom: 16px;
    scrollbar-width: none;
    grid-template-columns: unset;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .testi-card {
    flex: 0 0 88%;
    scroll-snap-align: center;
    margin: 0;
    min-width: 0;
  }
  .testi-text  { font-size: 0.83rem; line-height: 1.6; }
  .testi-stars { font-size: 0.92rem; margin-bottom: 8px; }

  /* ── Planos ── */
  .plan-card      { padding: 22px 18px; }
  .plan-header    { margin-bottom: 12px; }
  .plan-price-wrap{ margin-bottom: 16px; }
  .plan-features  { gap: 7px; }
  .pf-yes         { font-size: 0.81rem; }
  .pf-bonus       { font-size: 0.78rem; }
  .plan-saving    { font-size: 0.81rem; margin-top: 8px; }
  .plan-secure    { font-size: 0.73rem; margin-top: 6px; }
  .btn-plan       { padding: 14px 20px; font-size: 0.87rem; }

  /* ── FAQ ── */
  .faq-list  { gap: 8px; }
  .faq-q     { padding: 13px 15px; font-size: 0.87rem; gap: 10px; }
  .faq-icon  { font-size: 1.2rem; }
  .faq-a p   { padding: 0 15px 15px; font-size: 0.83rem; line-height: 1.65; }

  /* ── Como funciona ── */
  .steps-grid { gap: 8px; margin-bottom: 28px; }
  .step       { padding: 14px 16px; }
  .step-num   { font-size: 1.45rem; margin-bottom: 6px; }
  .step-icon  { font-size: 1.4rem; margin-bottom: 8px; }
  .step h3    { font-size: 0.84rem; margin-bottom: 5px; }
  .step p     { font-size: 0.76rem; line-height: 1.5; }

  /* ── Bônus ── */
  .bonus-grid      { gap: 10px; margin-bottom: 24px; }
  .bonus-card      { padding: 14px 14px; }
  .bonus-num       { font-size: 0.58rem; margin-bottom: 8px; }
  .bonus-capa      { width: 65%; max-width: 150px; margin-bottom: 10px; }
  .bonus-tag       { padding: 2px 8px; font-size: 0.58rem; margin-bottom: 8px; }
  .bonus-card h3   { font-size: 0.9rem; margin-bottom: 6px; line-height: 1.25; }
  .bonus-card p    { font-size: 0.77rem; line-height: 1.5; margin-bottom: 10px; }
  .bonus-list      { gap: 5px; }
  .bonus-list li   { font-size: 0.74rem; }
  /* Garante espaço para o botão flutuante não cobrir o último card */
  #bonus           { padding-bottom: 96px; }

  /* ── Garantia ── */
  .guarantee-wrap { padding: 28px 18px; }

  /* ── CTA final ── */
  .final-cta-content .section-title { font-size: 1.5rem; }
}

/* ── Ajustes extras para telas muito pequenas (< 400px) ── */
@media (max-width: 400px) {
  .categories-grid { grid-template-columns: 1fr; }
  .benefits-grid   { grid-template-columns: 1fr; }
  .ideal-grid      { grid-template-columns: 1fr; }
  .receive-list    { grid-template-columns: 1fr; }
  .testi-card      { flex: 0 0 calc(100vw - 40px); }
}

/* ══════════════════════════════════════════════════════════════════════
   HERO MOCKUP 3D v3 — Composição Premium (notebook + livro + celular + PDFs)
══════════════════════════════════════════════════════════════════════ */

.hero-mockup {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: visible;
}

/* 1 ─ Aura */
.hm-aura {
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  left: 16%;
  top: -18%;
  background: radial-gradient(
    circle at center,
    rgba(34, 197, 94, 0.22) 0%,
    rgba(249, 168, 37, 0.09) 38%,
    transparent 68%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(3px);
}

/* 2 ─ PDF pages */
.hm-pdf {
  position: absolute;
  background: #f7f4ec;
  border: 1px solid rgba(170,160,130,0.45);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 5px 22px rgba(0,0,0,0.42), 0 2px 7px rgba(0,0,0,0.24);
  display: flex;
  flex-direction: column;
}

.hm-pdf-1 { width: 19%; aspect-ratio: 3/4; left: -3%; top:  8%; transform: rotate(-24deg); z-index: 3; }
.hm-pdf-2 { width: 17%; aspect-ratio: 3/4; left: 32%; top: -10%; transform: rotate(-5deg);  z-index: 4; }
.hm-pdf-3 { width: 17%; aspect-ratio: 3/4; left: 67%; top:  -8%; transform: rotate(22deg);  z-index: 3; }

/* PDF – Cabeçalho verde */
.hm-doc-top {
  background: #0a1f0d;
  padding: 7% 10% 5%;
  flex-shrink: 0;
}
.hm-doc-proj-id {
  font-size: 0.52em;
  font-weight: 800;
  color: #f9a825;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
}
.hm-doc-proj-nm {
  font-size: 0.62em;
  font-weight: 900;
  color: #fff;
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
  text-transform: uppercase;
}

/* PDF – Foto do projeto */
.hm-doc-img {
  height: 25%;
  overflow: hidden;
  flex-shrink: 0;
}
.hm-doc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* PDF – Corpo */
.hm-doc-body {
  padding: 4% 10%;
  display: flex;
  flex-direction: column;
  gap: 2%;
  overflow: hidden;
  flex: 1;
}
.hm-doc-lbl {
  font-size: 0.46em;
  font-weight: 800;
  color: #0a1f0d;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(10,31,13,0.2);
  padding-bottom: 2%;
  margin-top: 3%;
  margin-bottom: 2%;
}
.hm-doc-grid {
  height: 15%;
  min-height: 12px;
  margin-bottom: 2%;
  background:
    repeating-linear-gradient(to bottom, transparent, transparent 20%, rgba(20,90,40,0.14) 20%, rgba(20,90,40,0.14) 22%),
    repeating-linear-gradient(to right,  transparent, transparent 20%, rgba(20,90,40,0.12) 20%, rgba(20,90,40,0.12) 22%);
  border: 1px solid rgba(20,90,40,0.22);
}
.hm-doc-row {
  height: 4%;
  min-height: 2px;
  background: rgba(0,0,0,0.13);
  border-radius: 1px;
  width: 100%;
}
.hm-doc-row-med   { width: 72%; }
.hm-doc-row-short { width: 50%; }
.hm-doc-cost {
  font-size: 0.62em;
  font-weight: 900;
  color: #8a5e00;
  font-family: 'Inter', sans-serif;
  padding-top: 1%;
}
.hm-doc-cost-green { color: #0d5c1a; }

/* 3 ─ Notebook (atrás, visível acima do livro e tablet) */
.hm-notebook {
  position: absolute;
  width: 60%;
  left: 8%;
  top: 2%;
  z-index: 6;
  transform: perspective(1000px) rotateX(10deg) rotateY(-5deg);
  transform-origin: center bottom;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,0.50));
}

.hm-nb-lid {
  background: #1d1d1d;
  border-radius: 5px 5px 0 0;
  padding: 2.8% 2.8% 1.5%;
  border: 1.5px solid #303030;
  border-bottom: none;
}

.hm-nb-screen {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 2px;
  background: #050e08;
}

/* Notebook – Documento do projeto */
.hm-nb-doc {
  width: 100%;
  height: 100%;
  background: #f7f4ec;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hm-nb-top {
  background: #0a1f0d;
  padding: 3.5% 5%;
  display: flex;
  gap: 5%;
  align-items: baseline;
  flex-shrink: 0;
}
.hm-nb-proj-id {
  font-size: 0.55em;
  font-weight: 800;
  color: #f9a825;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.hm-nb-proj-nm {
  font-size: 0.60em;
  font-weight: 900;
  color: #fff;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
}
.hm-nb-photo {
  height: 34%;
  overflow: hidden;
  flex-shrink: 0;
}
.hm-nb-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hm-nb-cols {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 3% 5%;
  gap: 5%;
  overflow: hidden;
}
.hm-nb-col-r {
  padding-left: 5%;
  border-left: 1px solid rgba(10,31,13,0.13);
}
.hm-nb-lbl {
  font-size: 0.43em;
  font-weight: 800;
  color: #0a1f0d;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(10,31,13,0.18);
  padding-bottom: 4%;
  margin-bottom: 5%;
}
.hm-nb-plan {
  height: 44%;
  background:
    repeating-linear-gradient(to bottom, transparent, transparent 20%, rgba(20,90,40,0.13) 20%, rgba(20,90,40,0.13) 22%),
    repeating-linear-gradient(to right,  transparent, transparent 20%, rgba(20,90,40,0.11) 20%, rgba(20,90,40,0.11) 22%);
  border: 1px solid rgba(20,90,40,0.20);
  margin-bottom: 6%;
}
.hm-nb-row {
  height: 8%;
  min-height: 2px;
  background: rgba(0,0,0,0.11);
  border-radius: 1px;
  margin-bottom: 6%;
  width: 100%;
}
.hm-nb-row-s { width: 65%; }
.hm-nb-price {
  font-size: 0.58em;
  font-weight: 900;
  color: #0d5c1a;
  font-family: 'Inter', sans-serif;
}

.hm-nb-base {
  background: linear-gradient(175deg, #262626, #1c1c1c);
  border-radius: 0 0 4px 4px;
  border: 1.5px solid #303030;
  border-top: 1px solid #343434;
  padding: 2% 8% 1.5%;
  display: flex;
  align-items: center;
  gap: 4%;
}
.hm-nb-keys {
  flex: 1;
  height: 5px;
  background: repeating-linear-gradient(to right, rgba(255,255,255,0.08) 0px, rgba(255,255,255,0.08) 3px, transparent 3px, transparent 6px);
  border-radius: 1px;
}
.hm-nb-pad {
  width: 20%;
  height: 5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px;
}

/* 4 ─ Tablet (centro, frente) */
.hm-tablet {
  position: absolute;
  left: 30%;
  top: 4%;
  width: 38%;
  z-index: 18;
  transform: perspective(900px) rotateY(-5deg) rotateX(3deg);
  transform-origin: center center;
  filter: drop-shadow(0 20px 55px rgba(0,0,0,0.72));
}
.hm-tab-frame {
  background: #0f0f0f;
  border-radius: 12px;
  padding: 4% 3.5% 6%;
  border: 1.5px solid #252525;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hm-tab-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  background: #000;
}
.hm-tab-bar {
  width: 34%;
  height: 4px;
  background: rgba(255,255,255,0.10);
  border-radius: 2px;
  margin-top: 4%;
}
/* Tablet – documento do projeto */
.hm-tab-doc {
  width: 100%;
  height: 100%;
  background: #f7f4ec;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hm-tab-top {
  background: #0a1f0d;
  padding: 4% 6%;
  display: flex;
  gap: 5%;
  align-items: baseline;
  flex-shrink: 0;
}
.hm-tab-proj-id {
  font-size: 0.50em;
  font-weight: 800;
  color: #f9a825;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.hm-tab-proj-nm {
  font-size: 0.58em;
  font-weight: 900;
  color: #fff;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
}
.hm-tab-photo {
  height: 35%;
  overflow: hidden;
  flex-shrink: 0;
}
.hm-tab-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hm-tab-body {
  flex: 1;
  padding: 4% 6%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hm-tab-lbl {
  font-size: 0.44em;
  font-weight: 800;
  color: #0a1f0d;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(10,31,13,0.18);
  padding-bottom: 3%;
  margin-bottom: 4%;
}
.hm-tab-grid {
  height: 18%;
  min-height: 14px;
  background:
    repeating-linear-gradient(to bottom, transparent, transparent 20%, rgba(20,90,40,0.14) 20%, rgba(20,90,40,0.14) 22%),
    repeating-linear-gradient(to right,  transparent, transparent 20%, rgba(20,90,40,0.12) 20%, rgba(20,90,40,0.12) 22%);
  border: 1px solid rgba(20,90,40,0.22);
  margin-bottom: 5%;
}
.hm-tab-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 5%; }
.hm-tab-row {
  height: 6%;
  min-height: 2px;
  background: rgba(0,0,0,0.12);
  border-radius: 1px;
  width: 100%;
  margin-bottom: 5%;
}
.hm-tab-row-med { width: 72%; }
.hm-tab-cost {
  font-size: 0.62em;
  font-weight: 900;
  color: #0d5c1a;
  font-family: 'Inter', sans-serif;
}

/* 5 ─ LIVRO (esquerda, frente) */
.hm-book-wrap {
  position: absolute;
  left: -1%;
  bottom: 2%;
  width: 34%;
  z-index: 22;
  font-size: clamp(7px, 1.3vw, 13px);
  animation: hm-float 4.5s ease-in-out infinite;
}

@keyframes hm-float {
  0%, 100% { transform: translateY(0px);  }
  50%       { transform: translateY(-7px); }
}

/* Lombada */
.hm-book-spine {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 13%;
  background: linear-gradient(90deg, #020604, #0c1f0e, #040d06);
  border-radius: 1px 0 0 1px;
  transform-origin: right center;
  transform: perspective(280px) rotateY(74deg) skewY(-2deg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hm-book-spine span {
  font-size: 0.38em;
  font-weight: 800;
  color: rgba(249,168,37,0.52);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  white-space: nowrap;
  transform: rotate(-90deg);
  font-family: 'Inter', sans-serif;
}

/* Capa frontal */
.hm-book-front {
  position: relative;
  margin-left: 12%;
  margin-right: 4%;
  aspect-ratio: 3/4;
  border-radius: 2px 8px 8px 2px;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-14deg) rotateX(3deg);
  transform-origin: left center;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.75),
    0 8px 22px rgba(0,0,0,0.50),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}
.hm-book-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
}
.hm-book-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.15) 0%,
    rgba(3,14,5,0.48) 28%,
    rgba(3,14,5,0.72) 58%,
    rgba(0,4,1,0.93) 100%
  );
}
.hm-book-border {
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(249,168,37,0.36);
  border-radius: 4px;
  pointer-events: none;
}
.hm-book-ct {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 7% 8% 9%;
  text-align: center;
}
.hm-book-badge {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(249,168,37,0.13);
  border: 1px solid rgba(249,168,37,0.46);
  color: #f9a825;
  font-size: 0.40em;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 2px 9px;
  border-radius: 50px;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.hm-book-num {
  font-size: 2.8em;
  font-weight: 900;
  color: #f9a825;
  line-height: 1;
  margin-bottom: 3%;
  text-shadow: 0 0 28px rgba(249,168,37,0.55), 0 2px 10px rgba(0,0,0,0.55);
  font-family: 'Inter', sans-serif;
}
.hm-book-ttl {
  font-size: 0.74em;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 6%;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: 'Inter', sans-serif;
}
.hm-book-price {
  font-size: 0.46em;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  background: rgba(34,197,94,0.16);
  border: 1px solid rgba(34,197,94,0.30);
  padding: 2px 10px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
}
.hm-book-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    118deg,
    rgba(255,255,255,0.08) 0%,
    rgba(255,255,255,0.03) 22%,
    transparent 44%
  );
  pointer-events: none;
}

/* Miolo/páginas (borda direita do livro) */
.hm-book-pages {
  position: absolute;
  right: 0;
  top: 2%;
  bottom: 2%;
  width: 5%;
  background: linear-gradient(to right, #d0cab8, #ede8da 38%, #e4dece 65%, #c8c2b0);
  border-radius: 0 2px 2px 0;
  transform: perspective(400px) rotateY(10deg);
  transform-origin: left center;
}

/* 6 ─ Celular (direita) */
.hm-phone {
  position: absolute;
  width: 15%;
  left: 66%;
  top: 18%;
  z-index: 26;
  transform: perspective(600px) rotateY(-10deg) rotateX(2deg) rotate(3deg);
  filter: drop-shadow(0 18px 44px rgba(0,0,0,0.70));
}
.hm-ph-body {
  background: #141414;
  border-radius: 14px;
  padding: 5% 4.5%;
  border: 1.5px solid #2a2a2a;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hm-ph-notch {
  width: 36%;
  height: 4px;
  background: #242424;
  border-radius: 2px;
  margin-bottom: 4%;
}
.hm-ph-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 9/18;
  overflow: hidden;
  border-radius: 7px;
  background: #000;
}
.hm-ph-bar {
  width: 40%;
  height: 3px;
  background: rgba(255,255,255,0.14);
  border-radius: 2px;
  margin-top: 4%;
}

/* Celular – Documento do projeto */
.hm-ph-doc {
  width: 100%;
  height: 100%;
  background: #f7f4ec;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hm-ph-top {
  background: #0a1f0d;
  padding: 7% 8%;
  flex-shrink: 0;
}
.hm-ph-proj {
  font-size: 0.50em;
  font-weight: 700;
  color: rgba(249,168,37,0.85);
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hm-ph-nm {
  font-size: 0.58em;
  font-weight: 900;
  color: #fff;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  line-height: 1.2;
}
.hm-ph-photo {
  height: 28%;
  overflow: hidden;
  flex-shrink: 0;
}
.hm-ph-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hm-ph-body-inner {
  flex: 1;
  padding: 6% 8%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hm-ph-lbl {
  font-size: 0.42em;
  font-weight: 800;
  color: #0a1f0d;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(10,31,13,0.18);
  padding-bottom: 5%;
  margin-bottom: 6%;
}
.hm-ph-grid {
  height: 28%;
  min-height: 20px;
  background:
    repeating-linear-gradient(to bottom, transparent, transparent 20%, rgba(20,90,40,0.13) 20%, rgba(20,90,40,0.13) 22%),
    repeating-linear-gradient(to right,  transparent, transparent 20%, rgba(20,90,40,0.11) 20%, rgba(20,90,40,0.11) 22%);
  border: 1px solid rgba(20,90,40,0.20);
  margin-bottom: 6%;
}
.hm-ph-price {
  font-size: 0.60em;
  font-weight: 900;
  color: #0d5c1a;
  font-family: 'Inter', sans-serif;
}

/* 6 ─ Reflexo de luz em telas */
.hm-glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 28%, transparent 52%);
  pointer-events: none;
}

/* ── HERO MOCKUP — Mobile ── */
@media (max-width: 768px) {
  /* Composição horizontal: notebook esq atrás · livro esq · tablet centro frente · phone dir atrás */
  .hero-mockup  { aspect-ratio: 16/9; }
  .hm-aura      { left: 20%; width: 55%; }

  /* PDFs: apenas 2 visíveis, menores */
  .hm-pdf-1     { display: none; }
  .hm-pdf-2     { left: 5%; top: -8%; width: 18%; transform: rotate(-18deg); }
  .hm-pdf-3     { left: 70%; top: -7%; width: 16%; transform: rotate(20deg); }

  /* Notebook: atrás, esquerda */
  .hm-notebook  { left: 5%; top: 3%; width: 62%; z-index: 6; }

  /* Livro: esquerda, frente */
  .hm-book-wrap { left: -2%; bottom: 3%; width: 36%; z-index: 22; }

  /* Tablet: centro, frente — elemento principal no mobile */
  .hm-tablet    { left: 28%; top: 5%; width: 44%; z-index: 20; }

  /* Celular: direita, ligeiramente atrás do tablet */
  .hm-phone     { left: 68%; top: 16%; width: 18%; z-index: 16; }
}

@media (max-width: 480px) {
  .hero-mockup  { aspect-ratio: 16/9; }
  .hm-notebook  { left: 3%; width: 65%; }
  .hm-book-wrap { left: -3%; width: 38%; }
  .hm-tablet    { left: 26%; width: 47%; }
  .hm-phone     { left: 69%; width: 19%; }
}

/* ══════════════════════════════════════════════
   TRANSIÇÕES ESPECÍFICAS ENTRE SEÇÕES
══════════════════════════════════════════════ */

/* Bônus → Preços: gap ~52px */
#bonus      { padding-bottom: 16px; }

/* FAQ → Última Chance: gap ~36px */
#faq        { padding-bottom: 16px; }
#cta-final  { padding-top: 20px; padding-bottom: 16px; }

/* Última Chance → Footer: gap ~36px */
.footer     { padding-top: 20px; }

@media (max-width: 768px) {
  #bonus     { padding-bottom: 12px; }
  #faq       { padding-bottom: 12px; }
  #cta-final { padding-top: 16px; padding-bottom: 12px; }
  .footer    { padding-top: 16px; }
}
