/* ============================================================
   LUME FINANCE IA — Landing Page Styles
   ============================================================ */

:root {
  --brand:       #10B981;
  --brand-dark:  #059669;
  --brand-light: #ecfdf5;
  --bg:          #F0F2F5;
  --text:        #111827;
  --muted:       #6B7280;
  --card:        #ffffff;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.07);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-hover:0 16px 48px rgba(0,0,0,0.12);
  --shadow-brand:0 8px 28px rgba(16,185,129,0.28);
  --ease:        cubic-bezier(0.25,0.46,0.45,0.94);
  --duration:    300ms;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; }

/* ── Scroll Animations ───────────────────────────────────────── */
[data-anim] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
[data-anim="left"]  { transform: translateX(-28px); }
[data-anim="right"] { transform: translateX(28px); }
[data-anim="scale"] { transform: scale(0.93); }
[data-anim="fade"]  { transform: none; }
[data-anim].visible { opacity: 1; transform: none; }

/* ── Header ──────────────────────────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
#header.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 32px; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo-img-wrap {
  position: relative; flex-shrink: 0;
}
.logo-img {
  width: 36px; height: 36px; border-radius: 28%; display: block; object-fit: cover;
}
.logo-pulse {
  position: absolute; top: -3px; right: -3px;
  width: 10px; height: 10px; border-radius: 50%;
  background: #34d399;
  animation: pulseGreen 2s ease-in-out infinite;
}
.logo-text { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 18px; color: var(--text); }
.logo-badge {
  font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--brand-dark); background: var(--brand-light);
  border: 1px solid #a7f3d0; border-radius: 100px; padding: 2px 8px;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--muted); text-decoration: none; transition: color var(--duration); }
.nav-link:hover { color: var(--text); }
.btn-ghost { font-size: 14px; font-weight: 600; color: #374151; text-decoration: none; padding: 8px 16px; border-radius: 10px; transition: all var(--duration); }
.btn-ghost:hover { background: #f3f4f6; color: var(--text); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--brand); color: #fff;
  font-weight: 600; font-size: 14px; font-family: inherit;
  padding: 11px 22px; border-radius: 12px;
  border: none; cursor: pointer; text-decoration: none;
  position: relative; overflow: hidden; white-space: nowrap;
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  box-shadow: var(--shadow-brand);
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: translateX(-100%) skewX(-12deg);
  transition: transform .55s ease;
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(16,185,129,0.38); }
.btn-primary:hover::after { transform: translateX(200%) skewX(-12deg); }
.btn-primary-lg { padding: 16px 34px; border-radius: 16px; font-size: 16px; }
.btn-primary-xl { padding: 20px 42px; border-radius: 18px; font-size: 17px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  font-weight: 600; font-size: 14px; font-family: inherit;
  padding: 11px 22px; border-radius: 12px;
  border: 1.5px solid #e5e7eb; cursor: pointer; text-decoration: none;
  transition: all var(--duration) var(--ease);
}
.btn-outline:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-1px); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero-bg {
  background:
    radial-gradient(ellipse 80% 65% at 15% 55%, rgba(16,185,129,.1) 0%, transparent 58%),
    radial-gradient(ellipse 55% 70% at 85% 20%, rgba(5,150,105,.06) 0%, transparent 52%),
    var(--bg);
}
.hero-section { padding: 148px 32px 96px; }

/* ── Badge pill ──────────────────────────────────────────────── */
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-light); color: #065f46;
  border: 1px solid #a7f3d0; border-radius: 100px;
  padding: 7px 16px; font-size: 12px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); animation: pulseGreen 2s ease-in-out infinite; }

/* ── Hero headline ───────────────────────────────────────────── */
.hero-h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900; line-height: 1.05; color: var(--text);
  font-size: clamp(2.6rem, 5.5vw, 4.5rem); margin: 0;
}
.gradient-text {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── Social proof avatars ────────────────────────────────────── */
.avatar-stack { display: flex; align-items: center; }
.avatar-stack .av {
  width: 34px; height: 34px; border-radius: 50%;
  border: 2.5px solid #fff; margin-left: -10px;
  font-size: 11px; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.avatar-stack .av:first-child { margin-left: 0; }

/* ── WhatsApp Mockup ─────────────────────────────────────────── */
.wa-wrap {
  max-width: 320px; width: 100%;
  filter: drop-shadow(0 32px 72px rgba(0,0,0,0.18));
  animation: floatY 5s ease-in-out infinite;
}
.wa-phone {
  background: #ECE5DD; border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}
.wa-head {
  background: #075E54; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.wa-av {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 16px; font-family: 'Plus Jakarta Sans', sans-serif;
}
.wa-status { display: flex; align-items: center; gap: 5px; }
.wa-status-dot { width: 7px; height: 7px; border-radius: 50%; background: #34d399; animation: pulseGreen 2s ease-in-out infinite; }
.wa-msgs {
  padding: 14px; min-height: 260px; max-height: 300px;
  display: flex; flex-direction: column; gap: 9px;
  overflow-y: auto; scrollbar-width: none;
}
.wa-msgs::-webkit-scrollbar { display: none; }
.wa-user {
  align-self: flex-end; background: #DCF8C6;
  border-radius: 16px 16px 4px 16px;
  padding: 9px 13px; max-width: 82%; font-size: 13px; color: #1a1a1a;
  line-height: 1.5; box-shadow: 0 1px 2px rgba(0,0,0,0.07);
  animation: slideInRight .3s ease-out;
}
.wa-bot {
  align-self: flex-start; background: #fff;
  border-radius: 16px 16px 16px 4px;
  padding: 9px 13px; max-width: 88%; font-size: 12.5px; color: #1a1a1a;
  line-height: 1.5; box-shadow: 0 1px 2px rgba(0,0,0,0.07);
  white-space: pre-line; animation: slideInLeft .3s ease-out;
}
.wa-typing {
  align-self: flex-start; background: #fff;
  border-radius: 16px 16px 16px 4px;
  padding: 12px 16px; box-shadow: 0 1px 2px rgba(0,0,0,0.07);
}
.wa-typing span {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #9ca3af; margin: 0 1.5px;
  animation: typingBounce 1.2s ease-in-out infinite;
}
.wa-typing span:nth-child(2) { animation-delay: .18s; }
.wa-typing span:nth-child(3) { animation-delay: .36s; }
.wa-bar {
  background: #F0F2F5; padding: 8px 12px;
  display: flex; align-items: center; gap: 8px;
}
.wa-pill {
  flex: 1; background: #fff; border-radius: 22px;
  padding: 9px 16px; font-size: 12px; color: #9ca3af;
}
.wa-mic {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--brand); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wa-float-badge {
  position: absolute; top: -14px; right: -14px;
  background: var(--brand); color: #fff; font-size: 11px; font-weight: 700;
  padding: 7px 14px; border-radius: 100px;
  box-shadow: 0 6px 18px rgba(16,185,129,0.45); white-space: nowrap;
  animation: floatY 3s ease-in-out infinite;
}

/* ── Metrics Bar ─────────────────────────────────────────────── */
.metrics-bar {
  background: #fff; border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0;
  padding: 32px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.metric-cell {
  text-align: center; padding: 16px 24px;
  border-right: 1px solid #f0f0f0;
}
.metric-cell:last-child { border-right: none; }
.metric-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900; font-size: 2rem; color: var(--text); line-height: 1;
}
.metric-label { font-size: 13px; color: var(--muted); margin-top: 6px; }

@media (max-width: 768px) {
  .metrics-bar {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 16px;
    gap: 0;
  }
  .metric-cell { padding: 16px 12px; }
  .metric-cell:nth-child(2) { border-right: none; }
  .metric-cell:nth-child(3) { border-top: 1px solid #f0f0f0; border-right: 1px solid #f0f0f0; }
  .metric-cell:nth-child(4) { border-top: 1px solid #f0f0f0; border-right: none; }
  .metric-num { font-size: 1.7rem; }
  .metric-label { font-size: 12px; }
}

@media (max-width: 400px) {
  .metrics-bar { grid-template-columns: 1fr; padding: 16px; }
  .metric-cell {
    border-right: none !important;
    border-top: none !important;
    border-bottom: 1px solid #f0f0f0;
    padding: 14px 16px;
    display: flex; align-items: center; justify-content: space-between; text-align: left;
  }
  .metric-cell:last-child { border-bottom: none; }
  .metric-num { font-size: 1.6rem; }
  .metric-label { margin-top: 0; font-size: 13px; }
}

/* ── Section ─────────────────────────────────────────────────── */
.section { padding: 96px 32px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
@media (max-width: 768px) { .section { padding: 64px 20px; } }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); margin-bottom: 16px; display: block; }
.section-title { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.15; color: var(--text); }
.section-sub { font-size: 17px; color: var(--muted); line-height: 1.75; max-width: 560px; }

/* ── Benefit Cards ───────────────────────────────────────────── */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1024px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .benefits-grid { grid-template-columns: 1fr; } }

.benefit-card {
  background: var(--card); border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid #f0f0f0; position: relative; overflow: hidden;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration);
}
.benefit-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(16,185,129,.05) 0%, transparent 55%);
  opacity: 0; transition: opacity var(--duration);
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: rgba(16,185,129,.25); }
.benefit-card:hover::before { opacity: 1; }
.benefit-icon {
  width: 56px; height: 56px; border-radius: 16px; background: var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 24px;
  transition: transform var(--duration) var(--ease);
}
.benefit-card:hover .benefit-icon { transform: scale(1.12); }

/* ── Steps ───────────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute;
  top: 32px; left: calc(10% + 32px); right: calc(10% + 32px); height: 2px;
  background: linear-gradient(90deg, transparent, #a7f3d0, var(--brand), #a7f3d0, transparent);
}
.step-wrap { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; position: relative; }
.step-num {
  width: 64px; height: 64px; border-radius: 20px; background: var(--card);
  border: 2px solid #e5e7eb; display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900; font-size: 18px; color: var(--brand);
  position: relative; z-index: 1; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  transition: all var(--duration) var(--ease);
}
.step-num:hover { background: var(--brand); color: #fff; border-color: var(--brand); box-shadow: 0 8px 28px rgba(16,185,129,0.32); }
.step-text h4 { font-size: 15px; font-weight: 700; color: var(--text); margin: 0 0 6px; }
.step-text p  { font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0; }

/* Tablet: coluna única, layout horizontal com linha vertical */
@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
  .steps-grid::before {
    /* linha vertical centralizada no box de 48px */
    left: 24px; top: 0; bottom: 0;
    width: 2px; height: auto;
    right: auto; /* cancela o right do desktop */
    background: linear-gradient(180deg, transparent, #a7f3d0, var(--brand), #a7f3d0, transparent);
  }
  .step-wrap {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0 0 28px 58px; /* 48px box + 10px gap */
  }
  .step-num {
    position: absolute; left: 0;
    width: 48px; height: 48px;
    font-size: 15px; border-radius: 14px;
  }
  .step-text h4 { font-size: 14px; }
}

/* Mobile pequeno: boxes ainda menores */
@media (max-width: 480px) {
  .steps-grid { max-width: 100%; }
  .steps-grid::before { left: 18px; }
  .step-wrap { padding: 0 0 22px 48px; }
  .step-num { width: 36px; height: 36px; font-size: 12px; border-radius: 10px; }
  .step-text h4 { font-size: 14px; }
  .step-text p  { font-size: 13px; }
}

/* ── Differentials (dark section) ────────────────────────────── */
.dark-section { background: #0a0f1e; }
.chip {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: #d1d5db; border-radius: 8px; padding: 7px 14px;
  font-size: 13px; cursor: pointer; font-family: 'JetBrains Mono', monospace;
  transition: all var(--duration); white-space: nowrap;
}
.chip:hover, .chip.active {
  background: rgba(16,185,129,0.18); border-color: rgba(16,185,129,0.45); color: #fff;
}
.chat-window {
  background: #111827; border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 40px 80px rgba(0,0,0,0.55), 0 8px 24px rgba(0,0,0,0.3);
  overflow: hidden;
}
.chat-head {
  background: rgba(255,255,255,0.04); padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 12px;
}
.chat-av {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: #fff; font-family: 'Plus Jakarta Sans', sans-serif;
}
.chat-body { padding: 20px; min-height: 200px; display: flex; flex-direction: column; gap: 12px; overflow: hidden; }
.cb-user {
  background: var(--brand); color: #fff;
  border-radius: 16px 16px 4px 16px; padding: 10px 16px;
  font-size: 14px; line-height: 1.55; max-width: 80%; align-self: flex-end;
  animation: slideInRight .3s ease-out;
}
.cb-ai {
  background: rgba(255,255,255,0.07); color: #e5e7eb;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px 16px 16px 4px; padding: 12px 16px;
  font-size: 14px; line-height: 1.65; max-width: 90%; align-self: flex-start;
  white-space: pre-line; animation: slideInLeft .3s ease-out;
}
.cb-row-ai { display: flex; align-items: flex-end; gap: 10px; }
.cb-typing span {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #6b7280;
  margin: 0 1.5px; animation: typingBounce 1.2s ease-in-out infinite;
}
.cb-typing span:nth-child(2) { animation-delay: .18s; }
.cb-typing span:nth-child(3) { animation-delay: .36s; }

/* ── Dashboard Carousel ──────────────────────────────────────── */
.carousel-outer { overflow: hidden; position: relative; padding: 16px 0 24px; }
.carousel-track {
  display: flex; gap: 24px; align-items: stretch;
  transition: transform .65s var(--ease);
}
.carousel-slide {
  flex-shrink: 0; width: 600px;
  transition: opacity .45s ease, transform .45s ease;
}
.carousel-slide.dim { opacity: .45; transform: scale(.96); }
@media (max-width: 768px) { .carousel-slide { width: 84vw; } }

.screen { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 4px 16px rgba(0,0,0,0.06); }
.screen-top { background: var(--brand); padding: 14px 20px; display: flex; align-items: center; gap: 12px; }
.screen-top-title { color: #fff; font-weight: 700; font-size: 15px; font-family: 'Plus Jakarta Sans', sans-serif; }
.screen-nav { background: #fff; border-bottom: 1px solid #f3f4f6; padding: 0 20px; display: flex; gap: 24px; overflow-x: auto; scrollbar-width: none; }
.screen-nav::-webkit-scrollbar { display: none; }
.screen-tab { font-size: 12px; font-weight: 500; color: #9ca3af; padding: 12px 0; border-bottom: 2px solid transparent; white-space: nowrap; transition: color .2s; }
.screen-tab.on { color: var(--brand); border-bottom-color: var(--brand); }
.screen-body { padding: 20px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.stat-box { border-radius: 12px; padding: 12px; font-size: 11px; font-weight: 500; }
.stat-box .sv { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900; font-size: 18px; display: block; margin-top: 4px; }
.stat-g { background: #ecfdf5; color: #065f46; }
.stat-r { background: #fef2f2; color: #991b1b; }
.stat-b { background: #eff6ff; color: #1e40af; }
.mini-chart { background: #f9fafb; border-radius: 12px; padding: 14px; margin-bottom: 14px; display: flex; align-items: flex-end; gap: 5px; height: 68px; }
.bar-c { flex: 1; border-radius: 4px 4px 0 0; background: #d1fae5; transition: height .3s; }
.bar-c.hi { background: var(--brand); }
.txn-list { display: flex; flex-direction: column; gap: 9px; }
.txn { display: flex; align-items: center; gap: 10px; font-size: 12px; }
.txn-icon { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.txn-name { font-weight: 500; color: #374151; flex: 1; }
.txn-cat  { font-size: 11px; color: #9ca3af; }
.txn-val  { font-weight: 700; font-size: 13px; }
.txn-neg  { color: #ef4444; }
.txn-pos  { color: var(--brand); }
.goal-list { display: flex; flex-direction: column; gap: 14px; }
.goal-item h5 { font-size: 13px; font-weight: 600; color: #374151; margin: 0 0 6px; display: flex; justify-content: space-between; }
.goal-bar { height: 8px; background: #f0f0f0; border-radius: 4px; overflow: hidden; }
.goal-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--brand-dark), var(--brand)); }
.donut-wrap { display: flex; align-items: center; gap: 20px; }
.donut {
  width: 90px; height: 90px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(var(--brand) 0 38%, #6366f1 38% 62%, #f59e0b 62% 80%, #e5e7eb 80% 100%);
  position: relative;
}
.donut::after { content: ''; position: absolute; inset: 20px; border-radius: 50%; background: #fff; }
.donut-legend { display: flex; flex-direction: column; gap: 6px; }
.dl { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.dl-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.insight-cards { display: flex; flex-direction: column; gap: 10px; }
.insight-card { background: #f9fafb; border-radius: 10px; padding: 12px 14px; border-left: 3px solid var(--brand); font-size: 12px; color: #374151; line-height: 1.6; }
.ic-emoji { font-size: 16px; margin-bottom: 4px; display: block; }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-grid { columns: 1; gap: 20px; }
@media (min-width: 640px)  { .testimonials-grid { columns: 2; } }
@media (min-width: 1024px) { .testimonials-grid { columns: 3; } }
.testi-card {
  background: var(--card); border-radius: 20px; padding: 28px;
  border: 1px solid #f0f0f0; break-inside: avoid; margin-bottom: 20px;
  transition: box-shadow var(--duration);
}
.testi-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.testi-card.featured { border-color: rgba(16,185,129,.25); background: linear-gradient(135deg, #f0fdf8 0%, #fff 80%); }
.stars { color: #f59e0b; font-size: 14px; letter-spacing: 1px; margin-bottom: 14px; }
.testi-quote { font-size: 15px; line-height: 1.75; color: #374151; margin: 0 0 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
}
.testi-name  { font-weight: 600; font-size: 14px; color: var(--text); }
.testi-role  { font-size: 12px; color: var(--muted); }
.testi-badge { font-size: 10px; color: var(--brand-dark); background: var(--brand-light); border-radius: 100px; padding: 2px 8px; font-weight: 600; margin-top: 4px; display: inline-block; }

/* ── Pricing ─────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 760px; margin: 0 auto; }
@media (max-width: 640px) { .pricing-grid { grid-template-columns: 1fr; max-width: 400px; } }

.plan-card {
  background: var(--card); border-radius: 24px; padding: 40px 36px;
  border: 1.5px solid #f0f0f0; position: relative;
  transition: all var(--duration) var(--ease);
}
.plan-card:hover { transform: translateY(-4px); border-color: rgba(16,185,129,.28); box-shadow: 0 20px 56px rgba(0,0,0,0.09); }
.plan-card.popular {
  background: linear-gradient(145deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-color: var(--brand-dark);
  box-shadow: 0 24px 64px rgba(16,185,129,0.34);
}
.plan-card.popular:hover { transform: translateY(-4px); box-shadow: 0 32px 72px rgba(16,185,129,0.44); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #fef08a; color: #78350f; font-size: 11px; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.plan-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.plan-price { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900; font-size: 3rem; line-height: 1; }
.plan-per  { font-size: 14px; font-weight: 500; }
.plan-note { font-size: 12px; margin-top: 6px; }
.plan-divider { height: 1px; margin: 24px 0; background: rgba(0,0,0,0.07); }
.plan-card.popular .plan-divider { background: rgba(255,255,255,0.2); }
.plan-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; padding: 7px 0; }
.plan-check {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: rgba(16,185,129,0.12); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
}
.plan-card.popular .plan-check { background: rgba(255,255,255,0.2); color: #fff; }
.plan-cta {
  display: block; width: 100%; padding: 15px;
  border-radius: 14px; font-size: 15px; font-weight: 700;
  text-align: center; cursor: pointer; font-family: inherit;
  text-decoration: none; transition: all var(--duration) var(--ease);
  border: none; margin-top: 28px;
}
.plan-cta-default { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.plan-cta-default:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 12px 32px rgba(16,185,129,.36); }
.plan-cta-popular { background: #fff; color: var(--brand-dark); display: flex; align-items: center; justify-content: center; gap: 6px; }
.plan-cta-popular:hover { background: #f0fdf4; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,255,255,0.3); }
.guarantee-strip {
  text-align: center; margin-top: 32px;
  font-size: 13px; color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card); border-radius: 16px;
  border: 1.5px solid #f0f0f0; overflow: hidden;
  transition: border-color var(--duration);
}
.faq-item:hover, .faq-item.open { border-color: rgba(16,185,129,.32); }
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; text-align: left; background: transparent; border: none; cursor: pointer;
  font-size: 15px; font-weight: 600; color: var(--text); font-family: inherit;
  transition: background var(--duration);
}
.faq-btn:hover { background: #fafafa; }
.faq-icon {
  width: 22px; height: 22px; border-radius: 50%; background: #f3f4f6;
  display: flex; align-items: center; justify-content: center;
  color: #9ca3af; flex-shrink: 0; transition: transform .3s ease, background .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--brand-light); color: var(--brand); }
.faq-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-item.open .faq-panel { grid-template-rows: 1fr; }
.faq-inner { overflow: hidden; }
.faq-text { padding: 0 24px 22px; color: var(--muted); line-height: 1.75; font-size: 14.5px; }

/* ── CTA Final ───────────────────────────────────────────────── */
.cta-final {
  background: linear-gradient(135deg, #059669 0%, #10B981 45%, #34d399 80%, #059669 100%);
  background-size: 250% 250%;
  animation: gradientShift 9s ease infinite;
  position: relative; overflow: hidden;
}
.cta-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none;
}
.cta-orb-1 { width: 500px; height: 500px; top: -200px; right: -100px; background: rgba(255,255,255,.06); blur: 60px; }
.cta-orb-2 { width: 350px; height: 350px; bottom: -120px; left: -80px; background: rgba(0,0,0,.08); }

/* ── Footer ──────────────────────────────────────────────────── */
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
@media (max-width: 900px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px)  { .footer-grid { grid-template-columns: 1fr; } }
.footer-link { display: block; font-size: 14px; color: #6b7280; text-decoration: none; margin-bottom: 10px; transition: color .2s; }
.footer-link:hover { color: #e5e7eb; }
.footer-heading { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #9ca3af; margin-bottom: 16px; }

/* ── Mobile menu ─────────────────────────────────────────────── */
#mobile-menu {
  position: fixed; inset: 0; z-index: 40; background: #fff;
  transform: translateY(-100%);
  transition: transform .35s var(--ease);
  display: flex; flex-direction: column; padding-top: 68px;
}
#mobile-menu.open { transform: translateY(0); }
.mobile-link {
  display: block; padding: 18px 24px;
  font-size: 18px; font-weight: 600; color: var(--text);
  text-decoration: none; border-bottom: 1px solid #f3f4f6;
  transition: color .2s;
}
.mobile-link:hover { color: var(--brand); }
.hb-line { width: 22px; height: 2px; background: #374151; border-radius: 2px; transition: all .3s ease; }
#menu-btn.open .hb-line:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
#menu-btn.open .hb-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
#menu-btn.open .hb-line:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Keyframes ───────────────────────────────────────────────── */
@keyframes pulseGreen   { 0%,100% { opacity:1; } 50% { opacity:.25; } }
@keyframes floatY       { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }
@keyframes slideInRight { from { opacity:0; transform:translateX(12px); } to { opacity:1; transform:none; } }
@keyframes slideInLeft  { from { opacity:0; transform:translateX(-12px); } to { opacity:1; transform:none; } }
@keyframes typingBounce { 0%,60%,100% { transform:translateY(0); opacity:.5; } 30% { transform:translateY(-5px); opacity:1; } }
@keyframes gradientShift { 0%,100% { background-position:0% 50%; } 50% { background-position:100% 50%; } }

/* ── Utilities ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #9ca3af; }

/* ── Responsividade Mobile ───────────────────────────────────── */
@media (max-width: 768px) {
  .hero-section { padding: 108px 20px 64px; }
  .nav-inner { height: 60px; }
  /* Reduz o mb-20 (80px) antes dos steps para não desperdiçar espaço */
  #como-funciona .text-center { margin-bottom: 40px !important; }

  /* Botões CTA ocupam largura total na hero em mobile */
  .btn-primary-lg, .btn-outline {
    width: 100%; justify-content: center; white-space: normal;
  }

  /* Badge flutuante do mockup WA: reposicionar para não vazar */
  .wa-float-badge { right: 0; top: -18px; font-size: 10px; padding: 5px 10px; }

  /* Seção diferencial: chips com fonte menor */
  .chip { font-size: 11px; padding: 6px 10px; }
}

@media (max-width: 480px) {
  .hero-section { padding: 96px 16px 56px; }
  .nav-inner { padding: 0 16px; }
  .section { padding: 56px 16px; }
  .metric-num { font-size: 1.6rem; }
  .wa-wrap { max-width: 100%; }
}
