* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
  background: #14171c; color: #e6e6e6;
  padding: 10px; min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
body.landing-body { padding: 0; overflow-x: hidden; }

/* ============================================================
   NAVBAR
============================================================ */
.landing-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20,23,28,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,215,0,0.1);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 16px 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1.2rem; }
.nav-logo .crown { font-size: 1.5rem; filter: drop-shadow(0 0 8px rgba(255,215,0,0.5)); }
.nav-logo .brand {
  background: linear-gradient(135deg,#ffd700,#f59e0b);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; letter-spacing: 1px;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: #cbd5e1; text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: #ffd700; }
.btn-nav-login {
  background: transparent; color: #ffd700; border: 1.5px solid #ffd700;
  padding: 8px 20px; border-radius: 8px; font-weight: 600; cursor: pointer;
  transition: all 0.2s; font-size: 0.9rem;
}
.btn-nav-login:hover { background: #ffd700; color: #14171c; }

/* ============================================================
   HERO
============================================================ */
.hero-section {
  position: relative; overflow: hidden; padding: 80px 24px 100px;
  background: radial-gradient(ellipse at top,#1f242c 0%,#14171c 70%);
}
.hero-bg-blob {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.25; z-index: 0;
  animation: float 20s infinite ease-in-out;
}
.blob-1 { width:500px;height:500px;background:#ffd700;top:-200px;left:-100px; }
.blob-2 { width:400px;height:400px;background:#f59e0b;bottom:-150px;right:-100px;animation-delay:-5s; }
.blob-3 { width:350px;height:350px;background:#a855f7;top:50%;right:20%;animation-delay:-10s;opacity:0.15; }
@keyframes float {
  0%,100% { transform:translate(0,0) scale(1); }
  33% { transform:translate(30px,-50px) scale(1.1); }
  66% { transform:translate(-20px,30px) scale(0.95); }
}
.hero-container {
  max-width:1200px;margin:0 auto;position:relative;z-index:1;
  display:grid;grid-template-columns:1.1fr 1fr;gap:60px;align-items:center;
}
.hero-content { animation:fadeUp 0.8s ease-out; }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
.hero-badge {
  display:inline-flex;align-items:center;gap:8px;padding:6px 14px;
  background:rgba(255,215,0,0.1);border:1px solid rgba(255,215,0,0.3);
  border-radius:20px;font-size:0.85rem;color:#fcd34d;margin-bottom:24px;
}
.pulse-dot {
  width:8px;height:8px;background:#4ade80;border-radius:50%;
  box-shadow:0 0 0 0 rgba(74,222,128,0.7);animation:pulse 2s infinite;
}
@keyframes pulse {
  0%{box-shadow:0 0 0 0 rgba(74,222,128,0.7)}
  70%{box-shadow:0 0 0 10px rgba(74,222,128,0)}
  100%{box-shadow:0 0 0 0 rgba(74,222,128,0)}
}
.hero-title {
  font-family:'Playfair Display',serif;
  font-size:clamp(2.2rem,5vw,3.6rem);font-weight:900;line-height:1.1;
  letter-spacing:-1px;margin-bottom:20px;color:#f8fafc;
}
.gradient-text {
  background:linear-gradient(135deg,#ffd700 0%,#f59e0b 50%,#ffd700 100%);
  background-size:200% auto;
  -webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;
  animation:shine 4s linear infinite;
}
@keyframes shine { to{background-position:200% center} }
.hero-subtitle { font-size:1.15rem;color:#cbd5e1;line-height:1.6;margin-bottom:32px;max-width:540px; }
.hero-subtitle strong { color:#ffd700;font-weight:600; }
.hero-cta { display:flex;gap:14px;flex-wrap:wrap;margin-bottom:36px; }
.btn-cta-primary {
  background:linear-gradient(135deg,#ffd700 0%,#f59e0b 100%);color:#14171c;
  padding:16px 32px;border:none;border-radius:12px;font-weight:700;font-size:1.05rem;
  cursor:pointer;display:inline-flex;align-items:center;gap:10px;
  box-shadow:0 10px 30px rgba(255,215,0,0.3);transition:all 0.3s;text-decoration:none;
}
.btn-cta-primary:hover { transform:translateY(-2px);box-shadow:0 15px 40px rgba(255,215,0,0.45); }
.btn-cta-primary .arrow { transition:transform 0.2s; }
.btn-cta-primary:hover .arrow { transform:translateX(4px); }
.btn-cta-large { padding:20px 44px;font-size:1.15rem; }
.btn-cta-ghost {
  background:rgba(255,255,255,0.05);color:#e6e6e6;
  border:1px solid rgba(255,255,255,0.15);padding:16px 28px;border-radius:12px;
  font-weight:600;cursor:pointer;text-decoration:none;transition:all 0.2s;
  display:inline-flex;align-items:center;
}
.btn-cta-ghost:hover { background:rgba(255,255,255,0.1);border-color:rgba(255,215,0,0.4); }
.hero-social-proof { display:flex;align-items:center;gap:14px; }
.avatars { display:flex; }
.avatars .avatar {
  width:36px;height:36px;border-radius:50%;display:flex;align-items:center;
  justify-content:center;font-weight:700;color:#fff;font-size:0.85rem;
  border:2px solid #14171c;margin-left:-10px;
}
.avatars .avatar:first-child { margin-left:0; }
.avatar.a1{background:linear-gradient(135deg,#3b82f6,#1d4ed8)}
.avatar.a2{background:linear-gradient(135deg,#ec4899,#be185d)}
.avatar.a3{background:linear-gradient(135deg,#10b981,#047857)}
.avatar.a4{background:linear-gradient(135deg,#f59e0b,#d97706)}
.proof-text { font-size:0.9rem;color:#94a3b8; }
.proof-text strong { color:#f8fafc; }

.hero-visual { position:relative;height:480px; }
.floating-card {
  position:absolute;background:linear-gradient(135deg,#1f242c,#252b35);
  border:1px solid rgba(255,255,255,0.08);border-radius:16px;
  box-shadow:0 20px 60px rgba(0,0,0,0.6);backdrop-filter:blur(10px);
}
.card-main {
  width:100%;max-width:420px;top:30px;left:50%;transform:translateX(-50%);
  padding:18px;animation:floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%,100%{transform:translateX(-50%) translateY(0)}
  50%{transform:translateX(-50%) translateY(-12px)}
}
.card-header {
  display:flex;align-items:center;gap:6px;
  padding-bottom:12px;border-bottom:1px solid rgba(255,255,255,0.08);margin-bottom:16px;
}
.card-header .dot { width:10px;height:10px;border-radius:50%; }
.dot.red{background:#ef4444}.dot.yellow{background:#f59e0b}.dot.green{background:#10b981}
.card-title { margin-left:auto;font-size:0.8rem;color:#94a3b8;font-weight:500; }
.metric { margin-bottom:18px; }
.metric-label { display:block;font-size:0.78rem;color:#94a3b8;margin-bottom:4px; }
.metric-value { display:block;font-size:1.8rem;font-weight:800;color:#f8fafc;white-space:nowrap; }
.metric-trend { display:inline-block;margin-top:6px;font-size:0.8rem;font-weight:600; }
.metric-trend.up { color:#4ade80; }
.mini-chart {
  display:flex;align-items:flex-end;gap:6px;height:80px;
  padding-top:10px;border-top:1px dashed rgba(255,255,255,0.08);
}
.mini-chart .bar {
  flex:1;background:linear-gradient(180deg,#ffd700,#f59e0b);
  border-radius:4px 4px 0 0;min-height:8px;animation:barGrow 1.2s ease-out;
}
@keyframes barGrow { from{height:0} }
.card-mini {
  padding:12px 16px;display:flex;align-items:center;gap:12px;
  animation:floatCard 5s ease-in-out infinite;
}
.card-mini .tag-icon {
  font-size:1.5rem;width:40px;height:40px;background:rgba(255,255,255,0.05);
  border-radius:10px;display:flex;align-items:center;justify-content:center;
}
.card-mini strong { display:block;color:#f8fafc;font-size:0.95rem; }
.card-mini small { color:#94a3b8;font-size:0.75rem; }
.card-tag-1 { top:80px;left:-10px;animation-delay:-2s; }
.card-tag-1 strong { color:#f87171; }
.card-tag-2 { bottom:60px;right:-10px;animation-delay:-4s; }
.card-tag-2 strong { color:#4ade80; }

/* ============================================================
   SECTION HEADER
============================================================ */
.section-header { text-align:center;max-width:720px;margin:0 auto 56px; }
.section-eyebrow {
  display:inline-block;padding:5px 14px;background:rgba(255,215,0,0.1);
  color:#fcd34d;border-radius:20px;font-size:0.8rem;font-weight:600;
  letter-spacing:1px;text-transform:uppercase;margin-bottom:16px;
}
.section-header h2 {
  font-family:'Playfair Display',serif;
  font-size:clamp(1.8rem,3.5vw,2.6rem);font-weight:800;line-height:1.2;
  color:#f8fafc;margin-bottom:14px;
}
.section-header p { color:#94a3b8;font-size:1.05rem;line-height:1.6; }

/* ============================================================
   BENEFÍCIOS
============================================================ */
.benefits-section { max-width:1200px;margin:0 auto;padding:80px 24px; }
.benefits-grid { display:grid;grid-template-columns:repeat(4,1fr);gap:20px; }
.benefit-card {
  background:linear-gradient(135deg,#1f242c,#1a1f27);
  border:1px solid rgba(255,255,255,0.05);padding:24px;border-radius:16px;transition:all 0.3s;
}
.benefit-card:hover { transform:translateY(-4px);border-color:rgba(255,215,0,0.3);box-shadow:0 20px 40px rgba(0,0,0,0.3); }
.benefit-icon {
  font-size:2rem;width:54px;height:54px;
  background:linear-gradient(135deg,rgba(255,215,0,0.15),rgba(245,158,11,0.05));
  border-radius:14px;display:flex;align-items:center;justify-content:center;margin-bottom:16px;
}
.benefit-card h3 { color:#f8fafc;font-size:1.05rem;font-weight:700;margin-bottom:8px; }
.benefit-card p { color:#94a3b8;font-size:0.9rem;line-height:1.5; }

/* ============================================================
   DASHBOARD SHOWCASE
============================================================ */
.dashboard-showcase { max-width:1200px; margin:0 auto; padding:60px 24px 80px; }
.dashboard-features { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.dash-feature {
  background:linear-gradient(135deg,rgba(255,215,0,0.04),rgba(59,130,246,0.03));
  border:1px solid rgba(255,255,255,0.07);
  padding:26px; border-radius:16px; transition:all 0.3s;
}
.dash-feature:hover { transform:translateY(-4px);border-color:rgba(255,215,0,0.3);box-shadow:0 20px 40px rgba(0,0,0,0.3); }
.dash-feature-icon {
  font-size:1.8rem;width:52px;height:52px;background:rgba(255,215,0,0.1);
  border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:14px;
}
.dash-feature h3 { color:#f8fafc;font-size:1.05rem;font-weight:700;margin-bottom:8px; }
.dash-feature p { color:#94a3b8;font-size:0.9rem;line-height:1.5; }

/* ============================================================
   FEATURE SHOWCASE SECTIONS (Metas, Projeção, Simulador)
============================================================ */
.feature-showcase-section {
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.feature-showcase-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,215,0,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.projecao-bg::before {
  background: radial-gradient(ellipse at 70% 50%, rgba(59,130,246,0.06) 0%, transparent 60%);
}
.feature-showcase-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.feature-showcase-inner.reverse { direction: rtl; }
.feature-showcase-inner.reverse > * { direction: ltr; }

.feature-showcase-text .section-eyebrow { display: inline-block; margin-bottom: 16px; }
.feature-showcase-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem,3vw,2.4rem);
  font-weight: 800; line-height: 1.2;
  color: #f8fafc; margin-bottom: 14px;
}
.feature-showcase-text > p {
  color: #94a3b8; font-size: 1rem; line-height: 1.65; margin-bottom: 24px;
}

.feature-list {
  list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px;
}
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  color: #cbd5e1; font-size: 0.95rem; line-height: 1.5;
}
.fl-icon {
  font-size: 1.1rem; flex-shrink: 0; margin-top: 1px;
}

/* ─── Mock Card Metas ─── */
.feature-showcase-visual {
  position: relative; display: flex; flex-direction: column; gap: 16px;
}
.mock-meta-card {
  background: linear-gradient(135deg, #1f242c, #1a1f27);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  animation: floatCardSlow 7s ease-in-out infinite;
}
.mock-meta-card-2 {
  opacity: 0.7; transform: scale(0.97);
  animation-delay: -3s;
}
@keyframes floatCardSlow {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.mock-meta-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.mock-meta-emoji { font-size: 1.8rem; flex-shrink: 0; }
.mock-meta-header > div { flex: 1; }
.mock-meta-header strong { display: block; color: #f8fafc; font-size: 0.98rem; font-weight: 700; }
.mock-meta-header small  { color: #64748b; font-size: 0.78rem; }
.mock-meta-badge {
  font-size: 0.72rem; font-weight: 700; padding: 4px 10px;
  border-radius: 20px; white-space: nowrap;
}
.mock-meta-badge.near { background: rgba(251,191,36,0.15); color: #fbbf24; border: 1px solid rgba(251,191,36,0.3); }
.mock-progress-bar {
  background: rgba(255,255,255,0.06); border-radius: 6px;
  height: 8px; overflow: hidden; margin-bottom: 8px;
}
.mock-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ffd700, #4ade80);
  border-radius: 6px;
  transition: width 1.2s ease-out;
}
.mock-progress-info {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; margin-bottom: 14px;
}
.mock-pct { color: #ffd700; font-weight: 700; }
.mock-vals { color: #64748b; }
.mock-vals em { font-style: normal; color: #475569; }
.mock-cronograma {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 8px; padding: 12px;
  background: rgba(255,255,255,0.03); border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05); margin-bottom: 14px;
}
.mock-cron-item { text-align: center; }
.mock-cron-item small { display: block; font-size: 0.7rem; color: #64748b; margin-bottom: 4px; }
.mock-cron-item strong { display: block; font-size: 0.9rem; color: #cbd5e1; font-weight: 700; }
.mock-cron-item.highlight strong { color: #ffd700; }
.mock-meta-footer { display: flex; justify-content: flex-end; }
.mock-aporte-btn {
  background: rgba(255,215,0,0.1); color: #ffd700;
  border: 1px solid rgba(255,215,0,0.3); border-radius: 8px;
  padding: 8px 16px; font-size: 0.85rem; font-weight: 600;
}

/* ─── Mock Projeção ─── */
.mock-proj-card {
  background: linear-gradient(135deg, #1a1f28, #1f242c);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 16px; padding: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  animation: floatCardSlow 8s ease-in-out infinite;
}
.mock-proj-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px; font-size: 0.95rem; font-weight: 700; color: #f8fafc;
}
.mock-proj-sub { font-size: 0.75rem; color: #64748b; font-weight: 400; }
.mock-proj-kpis {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 10px; margin-bottom: 16px;
}
.mock-proj-kpi {
  background: rgba(255,255,255,0.04); border-radius: 10px;
  padding: 10px 8px; text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
}
.mock-proj-kpi small { display: block; font-size: 0.7rem; color: #64748b; margin-bottom: 4px; }
.mock-proj-kpi strong { display: block; font-size: 0.9rem; font-weight: 800; }
.mock-chart-svg { width: 100%; height: 100px; margin-bottom: 8px; }
.mock-chart-svg svg { width: 100%; height: 100%; }
.mock-chart-labels {
  display: flex; justify-content: space-between;
  font-size: 0.68rem; color: #475569; padding: 0 4px;
  margin-bottom: 14px;
}
.mock-proj-alerta {
  display: flex; align-items: flex-start; gap: 8px;
  background: rgba(74,222,128,0.08); border: 1px solid rgba(74,222,128,0.2);
  border-radius: 10px; padding: 10px 12px;
  font-size: 0.82rem; color: #cbd5e1; line-height: 1.45;
}
.mock-proj-alerta strong { color: #4ade80; }

/* ─── Mock Simulador ─── */
.sim-tabs-preview {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px;
}
.sim-tab-prev {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 6px 12px; font-size: 0.78rem;
  color: #94a3b8; font-weight: 600; cursor: default;
}
.sim-tab-prev.active {
  background: rgba(255,215,0,0.12); border-color: rgba(255,215,0,0.4);
  color: #ffd700;
}
.sim-desc-text { color: #94a3b8; font-size: 0.92rem; line-height: 1.6; margin-top: 0; }
.sim-desc-text strong { color: #ffd700; }

.mock-sim-card {
  background: linear-gradient(135deg, #1f242c, #1a1f27);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  animation: floatCardSlow 9s ease-in-out infinite;
}
.mock-sim-header {
  display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap;
}
.mock-sim-tab {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 6px 12px; font-size: 0.78rem; color: #64748b;
}
.mock-sim-tab.active {
  background: rgba(255,215,0,0.1); border-color: rgba(255,215,0,0.35); color: #ffd700;
}
.mock-sim-kpis {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 8px; margin-bottom: 16px;
}
.mock-sim-kpi {
  background: rgba(255,255,255,0.03); border-radius: 10px;
  padding: 10px 8px; text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
}
.mock-sim-kpi.highlight { border-color: rgba(74,222,128,0.3); background: rgba(74,222,128,0.06); }
.mock-sim-kpi small { display: block; font-size: 0.68rem; color: #64748b; margin-bottom: 4px; }
.mock-sim-kpi strong { display: block; font-size: 0.9rem; font-weight: 800; }
.mock-sim-bars { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.mock-sim-bar-row {
  display: grid; grid-template-columns: 80px 1fr 36px;
  gap: 8px; align-items: center; font-size: 0.78rem; color: #64748b;
}
.mock-sim-bar-track {
  background: rgba(255,255,255,0.06); border-radius: 4px; height: 8px; overflow: hidden;
}
.mock-sim-bar-fill {
  height: 100%; border-radius: 4px; transition: width 1s ease;
}
.mock-sim-bar-fill.red  { background: linear-gradient(90deg, #f87171, #ef4444); }
.mock-sim-bar-fill.green{ background: linear-gradient(90deg, #4ade80, #10b981); }
.mock-sim-insight {
  background: rgba(255,215,0,0.08); border: 1px solid rgba(255,215,0,0.2);
  border-radius: 10px; padding: 10px 12px;
  font-size: 0.82rem; color: #cbd5e1; line-height: 1.45;
}
.mock-sim-insight strong { color: #ffd700; }

/* ─── Rec + Alertas + Backup section ─── */
.rec-alert-section { padding: 80px 24px; }
.rec-alert-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.rec-alert-card {
  background: linear-gradient(135deg, #1f242c, #1a1f27);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 28px;
  transition: all 0.3s;
}
.rec-alert-card:hover { transform: translateY(-4px); border-color: rgba(255,215,0,0.25); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.rac-icon {
  font-size: 2rem; width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(245,158,11,0.05));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.rec-alert-card h3 { color: #f8fafc; font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.rec-alert-card > p { color: #94a3b8; font-size: 0.9rem; line-height: 1.55; margin-bottom: 20px; }

/* Mocks dentro dos cards */
.mock-rec-lista { display: flex; flex-direction: column; gap: 8px; }
.mock-rec-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.03); border-radius: 10px; padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.05);
}
.mock-rec-item.receita { border-color: rgba(74,222,128,0.15); }
.mock-rec-item.despesa { border-color: rgba(248,113,113,0.12); }
.mock-rec-ico { font-size: 1rem; }
.mock-rec-body { flex: 1; }
.mock-rec-body strong { display: block; font-size: 0.85rem; color: #f8fafc; margin-bottom: 4px; }
.mock-rec-badges { display: flex; gap: 4px; flex-wrap: wrap; }
.mock-badge {
  font-size: 0.65rem; font-weight: 700; padding: 2px 8px;
  border-radius: 20px;
}
.mock-badge.green  { background: rgba(74,222,128,0.15); color: #4ade80; }
.mock-badge.red    { background: rgba(248,113,113,0.15); color: #f87171; }
.mock-badge.blue   { background: rgba(59,130,246,0.15); color: #60a5fa; }
.mock-badge.purple { background: rgba(168,85,247,0.15); color: #c084fc; }
.mock-badge.gray   { background: rgba(255,255,255,0.08); color: #94a3b8; }

.mock-alertas-lista { display: flex; flex-direction: column; gap: 8px; }
.mock-alerta {
  display: flex; align-items: flex-start; gap: 8px;
  border-radius: 10px; padding: 10px 12px;
  font-size: 0.82rem; line-height: 1.45; color: #cbd5e1;
  border: 1px solid transparent;
}
.mock-alerta.critico  { background: rgba(248,113,113,0.08); border-color: rgba(248,113,113,0.2); }
.mock-alerta.aviso    { background: rgba(251,191,36,0.08);  border-color: rgba(251,191,36,0.2); }
.mock-alerta.positivo { background: rgba(74,222,128,0.08);  border-color: rgba(74,222,128,0.2); }
.mock-alerta.info     { background: rgba(59,130,246,0.08);  border-color: rgba(59,130,246,0.2); }
.mock-alerta strong { color: #ffd700; }

.mock-backup-lista { display: flex; flex-direction: column; gap: 8px; }
.mock-backup-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.03); border-radius: 10px; padding: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}
.mock-backup-ico { font-size: 1.5rem; }
.mock-backup-body { flex: 1; }
.mock-backup-body strong { display: block; font-size: 0.85rem; color: #f8fafc; }
.mock-backup-body small  { font-size: 0.75rem; color: #64748b; }
.mock-backup-actions { display: flex; gap: 8px; font-size: 1.1rem; cursor: default; opacity: 0.7; }
.mock-backup-email {
  display: flex; align-items: center; gap: 8px;
  background: rgba(74,222,128,0.08); border: 1px solid rgba(74,222,128,0.2);
  border-radius: 10px; padding: 10px 12px;
  font-size: 0.82rem; color: #4ade80; font-weight: 600;
}

/* ============================================================
   COMPARATIVO — 4 colunas agora
============================================================ */
.compare-section { max-width:1100px;margin:0 auto;padding:60px 24px; }
.compare-table {
  background:#1f242c;border:1px solid rgba(255,255,255,0.06);
  border-radius:16px;overflow:hidden;
}
.compare-row {
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr;
  border-bottom:1px solid rgba(255,255,255,0.05);
}
.compare-row:last-child { border-bottom:none; }
.compare-cell { padding:14px 16px;color:#cbd5e1;font-size:0.92rem;text-align:center; }
.compare-cell:first-child { text-align:left;font-weight:500; }
.compare-head { background:rgba(255,215,0,0.05); }
.compare-head .compare-cell { font-weight:700;color:#ffd700;font-size:0.85rem;text-transform:uppercase;letter-spacing:0.5px; }

/* ── Plus → dourado (alinhado com o card) ── */
.plus-col {
  background: rgba(255,215,0,0.04);
  color: #fcd34d;
  font-weight: 600;
}
.compare-head .plus-col { color: #ffd700; }

.premium-col { background:rgba(255,215,0,0.04);color:#fcd34d;font-weight:600; }
.compare-head .premium-col { color: #ffd700; }


/* ============================================================
   PLANOS — Toggle + 3 cards
============================================================ */
.pricing-section { max-width:1200px;margin:0 auto;padding:80px 24px; }

/* Toggle período */
.pricing-toggle-wrap {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin-bottom: 40px;
}
.toggle-label {
  color: #cbd5e1; font-size: 0.95rem; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
}
.toggle-save-badge {
  background: linear-gradient(135deg, rgba(74,222,128,0.2), rgba(74,222,128,0.1));
  color: #4ade80; border: 1px solid rgba(74,222,128,0.35);
  border-radius: 20px; font-size: 0.72rem; font-weight: 700;
  padding: 3px 10px; letter-spacing: 0.3px;
}
.pricing-period-toggle {
  width: 52px; height: 28px; border-radius: 14px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer; position: relative; transition: background 0.3s; padding: 0;
  outline: none;
}
.pricing-period-toggle.active {
  background: linear-gradient(135deg, #ffd700, #f59e0b);
  border-color: #ffd700;
}
.toggle-knob {
  position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; transition: transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.pricing-period-toggle.active .toggle-knob { transform: translateX(24px); }

.hidden { display: none !important; }

.pricing-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:20px;align-items:stretch; }

.plan-card {
  background:linear-gradient(135deg,#1f242c,#1a1f27);
  border:1px solid rgba(255,255,255,0.06);border-radius:20px;padding:32px 26px;
  position:relative;display:flex;flex-direction:column;transition:all 0.3s;
}
.plan-card:hover { transform:translateY(-6px); }

/* PLUS card — dourado, alinhado com app.css .upgrade-tier-plus */
.plan-plus {
  background:
    radial-gradient(ellipse at top, rgba(255,215,0,0.08), transparent 60%),
    linear-gradient(135deg, rgba(255,215,0,0.04), #1a1f27);
  border: 1px solid rgba(255,215,0,0.22);
  box-shadow: 0 0 0 1px rgba(255,215,0,0.1), 0 8px 24px rgba(0,0,0,0.3);
}
.plan-plus:hover {
  border-color: #ffd700;
  box-shadow: 0 0 0 1px #ffd700, 0 12px 32px rgba(255,215,0,0.2);
  transform: translateY(-6px);
}


/* PREMIUM card */
.plan-featured {
  border:2px solid #ffd700;
  background:linear-gradient(135deg,#2a2618 0%,#1f242c 60%);
  box-shadow:0 20px 60px rgba(255,215,0,0.15);
  transform:scale(1.03);
}
.plan-featured:hover { transform:scale(1.03) translateY(-6px); }

.plan-badge {
  position:absolute;top:-14px;left:50%;transform:translateX(-50%);
  background:linear-gradient(135deg,#ffd700,#f59e0b);color:#14171c;
  padding:6px 16px;border-radius:20px;font-size:0.78rem;font-weight:800;
  letter-spacing:0.5px;white-space:nowrap;box-shadow:0 6px 20px rgba(255,215,0,0.4);
}
/* Badge Plus → dourado sólido */
.plus-badge {
  background: linear-gradient(135deg, #ffd700, #f59e0b) !important;
  color: #14171c !important;
  box-shadow: 0 6px 20px rgba(255,215,0,0.4) !important;
}

/* Preço Plus → dourado */
.plan-plus .plan-price .amount { color: #ffd700; }
.plan-plus .plan-equivalent    { color: #fcd34d; }

/* Botão Plus → dourado sólido */
.btn-plan-plus {
  background: linear-gradient(135deg, #ffd700, #f59e0b);
  color: #14171c;
  border: none;
  box-shadow: 0 4px 14px rgba(255,215,0,0.3);
  font-weight: 800;
}
.btn-plan-plus:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,215,0,0.5);
}


.plan-header { margin-bottom:18px; }
.plan-header h3 { font-size:1.4rem;color:#f8fafc;font-weight:700;margin-bottom:4px; }
.plan-desc { color:#94a3b8;font-size:0.88rem; }
.plan-price { display:flex;align-items:baseline;gap:4px;margin-bottom:8px; }
.plan-price .currency { color:#94a3b8;font-size:1rem;font-weight:600; }
.plan-price .amount { font-size:2.8rem;font-weight:900;color:#ffd700;line-height:1;letter-spacing:-1px; }
.plan-price .period { color:#94a3b8;font-size:0.9rem;margin-left:4px; }
.plan-equivalent { font-size:0.85rem;color:#4ade80;margin-bottom:18px;font-weight:500; }
.plan-plus .plan-equivalent { color: #60a5fa; }

.plan-features { list-style:none;flex:1;margin:18px 0 24px; }
.plan-features li {
  padding:8px 0;color:#cbd5e1;font-size:0.92rem;
  border-bottom:1px dashed rgba(255,255,255,0.06);
}
.plan-features li:last-child { border-bottom:none; }
.plan-features li.feat-off { color: #475569; }

.btn-plan {
  display:block;text-align:center;text-decoration:none;padding:14px 20px;
  border-radius:10px;font-weight:700;font-size:0.98rem;cursor:pointer;
  border:none;transition:all 0.2s;width:100%;
}
.btn-plan-free { background:rgba(255,255,255,0.06);color:#f8fafc;border:1px solid rgba(255,255,255,0.1); }
.btn-plan-free:hover { background:rgba(255,255,255,0.1); }
.btn-plan-plus {
  background: rgba(59,130,246,0.1); color: #60a5fa;
  border: 1px solid #3b82f6;
}
.btn-plan-plus:hover { background: #3b82f6; color: #fff; }
.btn-plan-anual { background:linear-gradient(135deg,#ffd700,#f59e0b);color:#14171c;box-shadow:0 8px 24px rgba(255,215,0,0.3); }
.btn-plan-anual:hover { transform:translateY(-2px);box-shadow:0 12px 32px rgba(255,215,0,0.5); }

/* ============================================================
   DEPOIMENTOS
============================================================ */
.testimonials-section { max-width:1200px;margin:0 auto;padding:60px 24px 80px; }
.testimonials-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:20px; }
.testimonial-card {
  background:linear-gradient(135deg,#1f242c,#1a1f27);
  border:1px solid rgba(255,255,255,0.06);padding:26px;border-radius:16px;
}
.testimonial-card .stars { color:#fbbf24;font-size:1rem;letter-spacing:2px;margin-bottom:14px; }
.testimonial-card p { color:#cbd5e1;font-size:0.95rem;line-height:1.6;margin-bottom:18px;font-style:italic; }
.testimonial-author {
  display:flex;align-items:center;gap:12px;
  padding-top:14px;border-top:1px solid rgba(255,255,255,0.06);
}
.testimonial-author .avatar { width:42px;height:42px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;color:#fff;font-size:1rem; }
.testimonial-author strong { display:block;color:#f8fafc;font-size:0.92rem; }
.testimonial-author small { color:#94a3b8;font-size:0.8rem; }

/* ============================================================
   FAQ
============================================================ */
.faq-section { max-width:800px;margin:0 auto;padding:60px 24px 80px; }
.faq-list { display:flex;flex-direction:column;gap:12px; }
.faq-item {
  background:#1f242c;border:1px solid rgba(255,255,255,0.06);
  border-radius:12px;padding:18px 22px;transition:all 0.2s;
}
.faq-item[open] { border-color:rgba(255,215,0,0.3);background:linear-gradient(135deg,#1f242c,#2a2618); }
.faq-item summary { cursor:pointer;font-weight:600;color:#f8fafc;font-size:1rem;list-style:none;display:flex;justify-content:space-between;align-items:center;gap:12px; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after { content:'+';font-size:1.5rem;color:#ffd700;transition:transform 0.2s;line-height:1;flex-shrink:0; }
.faq-item[open] summary::after { transform:rotate(45deg); }
.faq-item p { color:#94a3b8;margin-top:12px;line-height:1.6;font-size:0.92rem; }

/* ============================================================
   CTA FINAL
============================================================ */
.cta-final-section { padding:80px 24px;background:radial-gradient(ellipse at center,rgba(255,215,0,0.08) 0%,transparent 70%); }
.cta-final-container { max-width:700px;margin:0 auto;text-align:center; }
.cta-final-container h2 {
  font-family:'Playfair Display',serif;font-size:clamp(1.8rem,4vw,2.8rem);
  font-weight:800;color:#f8fafc;margin-bottom:16px;line-height:1.2;
}
.cta-final-container p { color:#cbd5e1;font-size:1.1rem;margin-bottom:32px; }

/* ============================================================
   FOOTER
============================================================ */
.landing-footer { background:#0f1116;border-top:1px solid rgba(255,255,255,0.05);padding:50px 24px 30px; }
.footer-container { max-width:1200px;margin:0 auto;display:grid;grid-template-columns:2fr 1fr;gap:40px;align-items:start; }
.footer-brand { display:flex;flex-direction:column;gap:8px; }
.footer-brand .crown { font-size:1.5rem; }
.footer-brand .brand { font-weight:800;letter-spacing:1px;background:linear-gradient(135deg,#ffd700,#f59e0b);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;font-size:1.2rem; }
.footer-brand p { color:#64748b;font-size:0.88rem; }
.footer-links { display:flex;flex-direction:column;gap:10px; }
.footer-links a { color:#94a3b8;text-decoration:none;font-size:0.92rem;transition:color 0.2s; }
.footer-links a:hover { color:#ffd700; }
.footer-bottom { grid-column:1/-1;text-align:center;padding-top:30px;margin-top:20px;border-top:1px solid rgba(255,255,255,0.05);color:#64748b;font-size:0.82rem; }

/* ============================================================
   LOGIN BOX
============================================================ */
.login-box {
  background:#1f242c;padding:30px;border-radius:12px;
  box-shadow:0 4px 20px rgba(0,0,0,0.5);width:100%;max-width:380px;margin:0 auto;
}
.login-box h2 { color:#ffd700;text-align:center;margin-bottom:20px; }
.login-box input {
  width:100%;padding:10px;margin-bottom:12px;background:#2a2a2a;
  border:1px solid #444;border-radius:6px;color:#eee;font-size:0.95rem;
}
.login-box button {
  width:100%;padding:10px;border:none;border-radius:6px;
  background:#ffd700;color:#14171c;font-weight:700;cursor:pointer;font-size:0.95rem;margin-bottom:8px;
}
.login-box button.btn-secondary { background:#4b5563;color:#fff; }
.login-error { color:#f87171;font-size:0.85rem;text-align:center;margin-top:8px; }

/* ============================================================
   MODAIS
============================================================ */
.modal {
  position:fixed;inset:0;background:rgba(0,0,0,0.80);
  display:flex;align-items:center;justify-content:center;z-index:999;padding:10px;
}
.modal.hidden { display:none; }
.modal-content {
  background:#1f242c;color:#fff;padding:20px;border-radius:12px;
  max-width:900px;width:100%;max-height:90vh;overflow-y:auto;
}
.modal-content.small { max-width:500px; }
.modal-header { display:flex;justify-content:space-between;align-items:center;margin-bottom:14px; }
.modal-header h2 { color:#ffd700;font-size:1.2rem; }
.modal-header button.close { background:none;border:none;font-size:1.3rem;cursor:pointer;color:#ccc; }

/* ============================================================
   MODAL PRÉ-CADASTRO
============================================================ */
#modalPreCadastro.modal { padding: 20px; }
#modalPreCadastro .modal-content.precadastro-modal {
  max-width: 460px !important;
  width: 100%;
  background: linear-gradient(145deg, #1a1f28, #1f242c) !important;
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 18px !important;
  padding: 24px 26px 22px !important;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 215, 0, 0.08);
  animation: precadFadeIn 0.3s ease-out;
}
@keyframes precadFadeIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
#modalPreCadastro .modal-header { margin-bottom: 4px; padding-bottom: 0; border-bottom: none; }
#modalPreCadastro .modal-header h2 { font-size: 1.15rem; color: #ffd700; font-weight: 700; }
#modalPreCadastro .modal-header button.close { font-size: 1.2rem; color: #94a3b8; cursor: pointer; background: none; border: none; padding: 4px 8px; transition: color 0.2s; }
#modalPreCadastro .modal-header button.close:hover { color: #fff; }
#modalPreCadastro .precadastro-body { text-align: center; padding: 4px 0 0; }
#modalPreCadastro .precadastro-icon {
  font-size: 1.8rem; width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(245, 158, 11, 0.08));
  border: 1px solid rgba(255, 215, 0, 0.35); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 4px auto 14px;
  animation: pulseGlow 2.5s infinite ease-in-out; line-height: 1;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
  50%      { box-shadow: 0 0 0 12px rgba(255, 215, 0, 0); }
}
#modalPreCadastro .precadastro-body h3 { font-size: 1.2rem; color: #f8fafc; font-weight: 800; margin: 0 0 10px; line-height: 1.3; }
#modalPreCadastro .precadastro-text { color: #cbd5e1; font-size: 0.92rem; line-height: 1.55; margin: 0 0 18px; }
#modalPreCadastro .precadastro-text strong { color: #ffd700; font-weight: 700; }
#modalPreCadastro .precadastro-steps {
  display: flex; flex-direction: column; gap: 10px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px; padding: 14px 16px; margin: 0 0 20px; text-align: left;
}
#modalPreCadastro .precadastro-step { display: flex; align-items: center; gap: 12px; color: #cbd5e1; font-size: 0.88rem; line-height: 1.4; }
#modalPreCadastro .precadastro-step strong { color: #ffd700; font-weight: 700; }
#modalPreCadastro .step-num {
  flex-shrink: 0; width: 26px; height: 26px;
  background: linear-gradient(135deg, #ffd700, #f59e0b); color: #14171c;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.82rem;
}
#modalPreCadastro .btn-iniciar-cadastro {
  width: 100%;
  background: linear-gradient(135deg, #ffd700 0%, #f59e0b 100%) !important;
  color: #14171c !important; padding: 14px 24px !important;
  border: none !important; border-radius: 10px !important;
  font-weight: 800 !important; font-size: 1rem !important;
  cursor: pointer; display: inline-flex !important;
  align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3); transition: all 0.25s;
  margin: 0; font-family: inherit;
}
#modalPreCadastro .btn-iniciar-cadastro:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255, 215, 0, 0.5); }
#modalPreCadastro .btn-iniciar-cadastro .arrow { transition: transform 0.2s; display: inline-block; }
#modalPreCadastro .btn-iniciar-cadastro:hover .arrow { transform: translateX(4px); }
#modalPreCadastro .precadastro-footer { margin: 14px 0 0; font-size: 0.86rem; color: #94a3b8; text-align: center; }
#modalPreCadastro .precadastro-footer a { color: #ffd700 !important; text-decoration: none; font-weight: 600; }
#modalPreCadastro .precadastro-footer a:hover { text-decoration: underline; }

/* ============================================================
   LOGOS E CROWN
============================================================ */
.crown-logo {
  display: inline-block;
  background-image: url('/assets/crown-logo.png');
  background-size: contain; background-repeat: no-repeat;
  background-position: center; vertical-align: middle; flex-shrink: 0;
}
.crown-xs { width:18px;height:18px; }
.crown-sm { width:24px;height:24px; }
.crown-md { width:32px;height:32px; }
.crown-lg { width:48px;height:48px; }
.crown-xl { width:72px;height:72px; }
.crown-logo.with-glow { filter: drop-shadow(0 0 12px rgba(255,215,0,0.45)); }
.crown-logo.inline { margin: 0 4px; position: relative; top: -2px; }
.nav-logo .crown, .footer-brand .crown {
  width:28px;height:28px;
  background-image:url('/assets/crown-logo.png');
  background-size:contain;background-repeat:no-repeat;background-position:center;
  filter:drop-shadow(0 0 8px rgba(255,215,0,0.5));display:inline-block;
}
.nav-logo .crown { font-size:0; }
.footer-brand .crown { font-size:0; }

/* ============================================================
   WHATSAPP FLOAT + SUGESTÃO
============================================================ */
.footer-contact-link { display:inline-flex;align-items:center;gap:6px;transition:color 0.2s ease,transform 0.2s ease; }
.footer-contact-link:hover { color:#25d366;transform:translateX(2px); }
.footer-contact-link .wpp-icon { font-size:1rem; }

.float-actions {
  position:fixed;bottom:20px;right:20px;z-index:9998;
  display:flex;flex-direction:column;align-items:center;gap:12px;
}
.float-actions .float-whatsapp {
  position:relative;bottom:auto;right:auto;cursor:pointer;border:none;outline:none;
  width:52px;height:52px;border-radius:50%;background:#25d366;color:#fff;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 14px rgba(37,211,102,0.45);
  transition:transform 0.25s ease,box-shadow 0.25s ease;
  animation:wppPulse 2.4s ease-in-out infinite;
}
.float-actions .float-whatsapp svg { width:28px;height:28px; }
.float-actions .float-whatsapp .icon-close { display:none;width:26px;height:26px; }
.float-actions.open .float-whatsapp .icon-main  { display:none; }
.float-actions.open .float-whatsapp .icon-close { display:block; }
.float-actions.open .float-whatsapp { background:#475569;box-shadow:0 4px 14px rgba(0,0,0,0.5);animation:none; }
.float-action {
  width:46px;height:46px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  color:#fff;border:none;cursor:pointer;text-decoration:none;
  opacity:0;transform:translateY(20px) scale(0.5);pointer-events:none;
  transition:opacity 0.25s ease,transform 0.3s cubic-bezier(.34,1.56,.64,1);
  box-shadow:0 4px 14px rgba(0,0,0,0.4);
}
.float-action svg { width:22px;height:22px; }
.float-suggestion { background:linear-gradient(135deg,#ffd700,#f59e0b);color:#14171c; }
.float-suggestion:hover { transform:translateY(0) scale(1.1);box-shadow:0 6px 18px rgba(255,215,0,0.5); }
.float-wpp-action { background:#25d366; }
.float-wpp-action:hover { transform:translateY(0) scale(1.1);box-shadow:0 6px 18px rgba(37,211,102,0.55); }
.float-actions.open .float-action { opacity:1;transform:translateY(0) scale(1);pointer-events:auto; }
.float-actions.open .float-wpp-action  { transition-delay:0.05s; }
.float-actions.open .float-suggestion  { transition-delay:0.12s; }
.float-action::before {
  content:attr(title);position:absolute;right:58px;top:50%;transform:translateY(-50%);
  background:rgba(15,18,24,0.95);color:#f8fafc;padding:6px 12px;border-radius:8px;
  font-size:0.78rem;font-weight:600;white-space:nowrap;opacity:0;pointer-events:none;
  transition:opacity 0.2s;border:1px solid rgba(255,255,255,0.1);
}
.float-action:hover::before { opacity:1; }
@keyframes wppPulse {
  0%,100% { box-shadow:0 4px 14px rgba(37,211,102,0.45); }
  50% { box-shadow:0 4px 14px rgba(37,211,102,0.45),0 0 0 12px rgba(37,211,102,0); }
}

/* MODAL SUGESTÃO */
.sugestao-modal {
  max-width:480px !important;
  background:linear-gradient(145deg,#1a1f28,#1f242c) !important;
  border:1px solid rgba(255,215,0,0.15);border-radius:16px !important;
  padding:24px !important;box-shadow:0 25px 70px rgba(0,0,0,0.6);
  animation:precadFadeIn 0.3s ease-out;
}
.sugestao-body { padding:4px 0 0; }
.sugestao-intro { color:#cbd5e1;font-size:0.92rem;line-height:1.55;margin:0 0 18px; }
.sugestao-intro strong { color:#ffd700; }
.sugestao-label { display:block;color:#cbd5e1;font-size:0.85rem;font-weight:600;margin:12px 0 6px; }
.sugestao-input {
  width:100%;padding:11px 14px;background:rgba(15,23,42,0.6);
  border:1px solid rgba(255,255,255,0.1);border-radius:8px;
  color:#e2e8f0;font-size:0.92rem;font-family:inherit;resize:vertical;transition:border-color 0.2s;
}
.sugestao-input:focus { outline:none;border-color:#ffd700; }
textarea.sugestao-input { min-height:110px;line-height:1.5; }
.sugestao-contador { text-align:right;font-size:0.75rem;color:#64748b;margin:4px 0 14px; }
.btn-enviar-sugestao {
  width:100%;background:linear-gradient(135deg,#ffd700 0%,#f59e0b 100%);
  color:#14171c;padding:13px 24px;border:none;border-radius:10px;
  font-weight:800;font-size:0.98rem;cursor:pointer;
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  box-shadow:0 8px 24px rgba(255,215,0,0.25);transition:all 0.25s;font-family:inherit;
}
.btn-enviar-sugestao:hover { transform:translateY(-2px);box-shadow:0 12px 32px rgba(255,215,0,0.45); }
.btn-enviar-sugestao .arrow { transition:transform 0.2s;display:inline-block; }
.btn-enviar-sugestao:hover .arrow { transform:translateX(4px); }
.sugestao-status { text-align:center;font-size:0.85rem;margin-top:12px;min-height:18px; }

/* ============================================================
   ESTILOS LEGADOS
============================================================ */
.landing-hero { max-width:1100px;margin:0 auto;padding:60px 20px;text-align:center; }
.btn-primary { background:#ffd700;color:#14171c;padding:14px 32px;border:none;border-radius:8px;font-weight:700;font-size:1rem;cursor:pointer; }
.btn-primary:hover { background:#f0c800; }
.btn-outline { background:transparent;color:#ffd700;padding:14px 32px;border:2px solid #ffd700;border-radius:8px;font-weight:700;cursor:pointer;font-size:1rem; }

/* ============================================================
   RESPONSIVO
============================================================ */
@media (max-width: 1100px) {
  .benefits-grid { grid-template-columns:repeat(3,1fr); }
  .rec-alert-grid { grid-template-columns:repeat(2,1fr); }
  .rec-alert-grid > .rec-alert-card:last-child { grid-column: span 2; max-width: 560px; margin: 0 auto; width: 100%; }
}

@media (max-width: 968px) {
  .hero-container { grid-template-columns:1fr;gap:40px; }
  .hero-visual { height:auto;max-width:460px;margin:0 auto;min-height:340px; }
  .benefits-grid,.pricing-grid,.testimonials-grid,.dashboard-features { grid-template-columns:repeat(2,1fr); }
  .plan-featured { transform:scale(1); }
  .plan-featured:hover { transform:translateY(-6px); }
  .feature-showcase-inner { grid-template-columns:1fr;gap:40px; }
  .feature-showcase-inner.reverse { direction:ltr; }
  .compare-row { grid-template-columns:1.6fr 1fr 1fr 1fr; }
  .rec-alert-grid { grid-template-columns:1fr; }
  .rec-alert-grid > .rec-alert-card:last-child { grid-column: auto; max-width: 100%; }
}

@media (max-width: 768px) {
  .nav-links a { display:none; }
  .nav-links { gap:12px; }
  .footer-container { grid-template-columns:1fr;gap:24px; }
  .benefits-section,.pricing-section,.testimonials-section,
  .faq-section,.compare-section,.cta-final-section,.dashboard-showcase,
  .feature-showcase-section,.rec-alert-section { padding:50px 20px; }

  .hero-section { padding:50px 20px 60px; }
  .hero-title { font-size:clamp(1.9rem,7vw,2.4rem); }
  .hero-subtitle { font-size:1rem; }
  .hero-visual { height:auto;min-height:auto;max-width:100%;margin-top:10px;display:flex;justify-content:center;position:relative; }
  .card-main {
    position:relative;top:auto;left:auto;transform:none;
    width:100%;max-width:360px;
    animation:floatCardMobile 6s ease-in-out infinite;
  }
  @keyframes floatCardMobile { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
  .metric-value { font-size:1.6rem; }
  .card-tag-1,.card-tag-2 { display:none; }

  .pricing-grid { grid-template-columns:1fr;max-width:420px;margin:0 auto; }
  .plan-card { padding:28px 22px; }
  .plan-featured,.plan-featured:hover { transform:none; }
  .plan-card:hover { transform:none; }

  .compare-cell { padding:10px 6px !important;font-size:0.72rem;text-align:center !important; }
  .compare-cell:first-child { text-align:left !important;font-size:0.72rem;padding-left:8px !important; }
  .compare-head .compare-cell { font-size:0.65rem;padding:10px 5px !important; }
  .compare-row { grid-template-columns:1.4fr 0.8fr 0.8fr 0.8fr; }

  .mock-cronograma { grid-template-columns:1fr 1fr; }
  .mock-meta-card-2 { display:none; }
  .mock-proj-kpis { grid-template-columns:1fr 1fr; }
  .mock-proj-kpis > div:last-child { display:none; }
  .mock-sim-kpis { grid-template-columns:1fr 1fr; }
  .mock-sim-kpis > div:last-child { display:none; }
}

@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns:1fr;max-width:480px;margin:0 auto; }
  .testimonial-card { padding:22px; }
  .sim-tabs-preview { gap:4px; }
  .sim-tab-prev { font-size:0.72rem;padding:5px 8px; }
}

@media (max-width: 480px) {
  .benefits-grid,.dashboard-features { grid-template-columns:1fr; }
  .nav-container { padding:14px 16px; }
  .nav-logo { font-size:1.05rem; }
  .nav-logo .crown { font-size:1.3rem; }
  .compare-cell { padding:7px 4px !important;font-size:0.66rem; }
  .compare-cell:first-child { font-size:0.66rem;padding:7px 6px !important;line-height:1.3; }
  .compare-head .compare-cell { font-size:0.58rem;letter-spacing:0; }
  .compare-row { grid-template-columns:1.6fr 0.8fr 0.8fr 0.8fr; }

  #modalPreCadastro .modal-content.precadastro-modal { max-width:96vw !important;padding:20px 20px 18px !important; }
  #modalPreCadastro .precadastro-icon { width:58px;height:58px;font-size:1.6rem; }
  #modalPreCadastro .precadastro-body h3 { font-size:1.1rem; }
  #modalPreCadastro .precadastro-text { font-size:0.88rem; }
  #modalPreCadastro .precadastro-step { font-size:0.84rem; }

  .float-actions { bottom:16px;right:16px;gap:10px; }
  .float-action { width:42px;height:42px; }
  .float-action svg { width:20px;height:20px; }
  .float-action::before { display:none; }
  .pricing-toggle-wrap { gap:10px; }
  .toggle-save-badge { display:none; }
}


/* ============================================================
   POR QUE MONARCHA? — Timeline narrativa
============================================================ */
.why-section {
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
}

.why-timeline {
  display: flex; flex-direction: column; gap: 0; margin-bottom: 60px;
}

.why-step {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; padding: 40px 0;
}
.why-step-reverse { direction: rtl; }
.why-step-reverse > * { direction: ltr; }

/* Visual flutuante */
.why-step-visual {
  position: relative; height: 280px;
  display: flex; align-items: center; justify-content: center;
}
.why-step-icon {
  font-size: 5rem; z-index: 1;
  filter: drop-shadow(0 0 30px rgba(255,215,0,0.3));
  animation: floatCardSlow 6s ease-in-out infinite;
}

.why-float-card {
  position: absolute;
  background: linear-gradient(135deg, #1f242c, #1a1f27);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  animation: floatCardSlow 6s ease-in-out infinite;
  white-space: nowrap;
}
.why-float-card strong { display: block; color: #f8fafc; font-size: 0.85rem; font-weight: 700; }
.why-float-card small  { display: block; color: #64748b; font-size: 0.72rem; }
.wfc-emoji { font-size: 1.4rem; }

.wfc-1 { top: 10%;  left: 0;   animation-delay: 0s;    }
.wfc-2 { bottom: 15%; right: 0; animation-delay: -2s;  }
.wfc-3 { top: 10%;  right: 0;  animation-delay: -1s;   }
.wfc-4 { bottom: 15%; left: 0; animation-delay: -3s;   }
.wfc-5 { top: 10%;  left: 0;   animation-delay: -0.5s; }
.wfc-6 { bottom: 15%; right: 0; animation-delay: -2.5s;}

/* Texto */
.why-step-num {
  font-size: 4rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,215,0,0.05));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px; letter-spacing: -2px;
}
.why-step-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800; color: #f8fafc;
  margin-bottom: 14px; line-height: 1.2;
}
.why-step-text p {
  color: #94a3b8; font-size: 1rem; line-height: 1.7;
}
.why-step-text p strong { color: #ffd700; font-weight: 600; }

/* Connector */
.why-connector {
  display: flex; flex-direction: column; align-items: center; gap: 0;
  padding: 0 0 0 calc(25% + 30px); /* alinha com o texto */
}
.why-connector-line {
  width: 2px; height: 40px;
  background: linear-gradient(180deg, rgba(255,215,0,0.4), rgba(255,215,0,0.1));
}
.why-connector-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #ffd700;
  box-shadow: 0 0 12px rgba(255,215,0,0.6);
}

/* Benefits grid compacto */
.why-benefits-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.why-benefit {
  background: linear-gradient(135deg, #1f242c, #1a1f27);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 18px 14px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 8px; transition: all 0.3s;
}
.why-benefit:hover {
  transform: translateY(-4px); border-color: rgba(255,215,0,0.3);
  box-shadow: 0 16px 36px rgba(0,0,0,0.3);
}
.why-benefit-ico { font-size: 1.8rem; }
.why-benefit strong { display: block; color: #f8fafc; font-size: 0.88rem; font-weight: 700; }
.why-benefit span   { color: #64748b; font-size: 0.78rem; line-height: 1.4; }

/* ============================================================
   DASHBOARD MOCK — Baseado nos prints reais
============================================================ */
.dashboard-showcase { max-width: 1200px; margin: 0 auto; padding: 60px 24px 80px; }

.dash-mock-container {
  background: linear-gradient(145deg, #161b22, #1f2630);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

/* Header do mock */
.dash-mock-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px;
  background: rgba(13,17,23,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dash-mock-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 700; color: #f8fafc;
}
.dash-mock-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.dash-mock-dot.red    { background: #ef4444; }
.dash-mock-dot.yellow { background: #f59e0b; }
.dash-mock-dot.green  { background: #10b981; }
.dash-mock-tabs { display: flex; gap: 4px; }
.dash-mock-tab {
  padding: 5px 14px; border-radius: 8px; font-size: 0.78rem; font-weight: 700;
  color: #64748b; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.dash-mock-tab.active {
  background: rgba(255,215,0,0.12); color: #ffd700;
  border-color: rgba(255,215,0,0.3);
}

/* Insights */
.dash-mock-insights {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 20px; align-items: center;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dash-mock-ring {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  position: relative;
}
.ring-svg { width: 90px; height: 90px; }
.ring-progress {
  stroke-dasharray: 209 264;
  animation: ringDraw 1.5s ease-out forwards;
}
@keyframes ringDraw {
  from { stroke-dasharray: 0 440; }
  to   { stroke-dasharray: 209 264; }
}
.ring-center {
  position: absolute; top: 0; left: 0; right: 0; bottom: 24px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.ring-center strong { font-size: 1.5rem; font-weight: 900; color: #f8fafc; line-height: 1; }
.ring-center small  { font-size: 0.65rem; color: #64748b; }
.ring-label { font-size: 0.78rem; font-weight: 700; color: #4ade80; }

.dash-mock-insight-list {
  display: flex; flex-direction: column; gap: 6px;
}
.dash-mock-insight {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 8px 12px; border-radius: 8px;
  font-size: 0.8rem; color: #cbd5e1; line-height: 1.45;
  border: 1px solid transparent;
}
.dash-mock-insight strong { color: #f8fafc; font-weight: 700; }
.dash-mock-insight.positive {
  background: rgba(74,222,128,0.06); border-color: rgba(74,222,128,0.15);
  border-left: 3px solid #4ade80;
}
.dash-mock-insight.warning {
  background: rgba(251,191,36,0.06); border-color: rgba(251,191,36,0.15);
  border-left: 3px solid #fbbf24;
}
.dash-mock-insight.neutral {
  background: rgba(59,130,246,0.06); border-color: rgba(59,130,246,0.15);
  border-left: 3px solid #60a5fa;
}

/* KPIs */
.dash-mock-kpis {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 10px; padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dash-mock-kpi {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 12px 10px;
  display: flex; flex-direction: column; gap: 8px;
  position: relative; overflow: hidden;
  transition: transform 0.2s;
}
.dash-mock-kpi:hover { transform: translateY(-2px); }
.dmk-ico {
  font-size: 1.1rem; width: 32px; height: 32px;
  background: rgba(255,255,255,0.05); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.dmk-body small {
  display: block; font-size: 0.6rem; color: #64748b;
  text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600;
  margin-bottom: 2px;
}
.dmk-body strong {
  display: block; font-size: 0.88rem; font-weight: 800; color: #f8fafc;
  font-variant-numeric: tabular-nums; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.dmk-delta { font-size: 0.68rem; font-weight: 700; color: #94a3b8; }
.dmk-delta.down { color: #4ade80; } /* verde = gastou menos */

.kpi-rec   { border-color: rgba(74,222,128,0.2); }
.kpi-desp  { border-color: rgba(248,113,113,0.2); }
.kpi-saldo { border-color: rgba(255,215,0,0.2); }
.kpi-poup  { border-color: rgba(56,189,248,0.2); }
.kpi-comp  { border-color: rgba(139,92,246,0.2); }

.plus-locked { position: relative; }
.kpi-lock-pill {
  position: absolute; top: 6px; right: 6px;
  background: linear-gradient(135deg, #ffd700, #f59e0b);
  color: #14171c; font-size: 0.56rem; font-weight: 900;
  padding: 2px 7px; border-radius: 20px; letter-spacing: 0.3px;
}

/* Charts */
.dash-mock-charts {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; padding: 16px 20px 20px;
  gap: 16px;
}
.dash-mock-chart-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; padding: 16px;
}
.dmc-title {
  font-size: 0.82rem; font-weight: 700; color: #cbd5e1;
  text-align: center; margin-bottom: 14px;
}

/* Donut */
.dmc-donut-wrap { display: flex; align-items: center; gap: 16px; }
.dmc-donut-svg  { width: 140px; height: 140px; flex-shrink: 0; }
.dmc-legend { display: flex; flex-direction: column; gap: 5px; flex: 1; min-width: 0; }
.dmc-leg-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.72rem; color: #94a3b8; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.dmc-leg-item span {
  width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0;
}

/* Bar chart */
.dmc-bar-wrap { height: 180px; }
.dmc-bar-chart { display: flex; gap: 8px; height: 100%; align-items: flex-end; }
.dmc-y-labels {
  display: flex; flex-direction: column; justify-content: space-between;
  height: 100%; padding-bottom: 20px;
  font-size: 0.6rem; color: #475569; text-align: right;
  flex-shrink: 0;
}
.dmc-bars {
  display: flex; gap: 16px; align-items: flex-end;
  flex: 1; height: 100%;
}
.dmc-bar-group {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; flex: 1; height: 100%; justify-content: flex-end;
}
.dmc-bar {
  width: 100%; border-radius: 6px 6px 0 0;
  min-height: 4px; transition: height 1s ease;
}
.bar-green { background: linear-gradient(180deg, rgba(74,222,128,0.9), rgba(74,222,128,0.4)); }
.bar-red   { background: linear-gradient(180deg, rgba(248,113,113,0.9), rgba(248,113,113,0.4)); }
.bar-blue  { background: linear-gradient(180deg, rgba(59,130,246,0.9), rgba(59,130,246,0.4)); }
.dmc-bar-group span { font-size: 0.68rem; color: #94a3b8; white-space: nowrap; }

/* Feature row */
.dash-mock-features-row {
  display: flex; align-items: center; gap: 0;
  padding: 12px 20px;
  background: rgba(255,215,0,0.03);
  border-top: 1px dashed rgba(255,215,0,0.15);
  flex-wrap: wrap; gap: 6px;
}
.dmf-item {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 0.76rem; color: #94a3b8; font-weight: 600;
}
.dmf-ico { font-size: 0.9rem; }
.plus-tag-feature { border-color: rgba(255,215,0,0.15); }
.dmf-badge {
  font-size: 0.62rem; font-weight: 800;
  padding: 2px 8px; border-radius: 20px;
}
.dmf-badge.plus {
  background: linear-gradient(135deg, #ffd700, #f59e0b);
  color: #14171c;
}

/* ============================================================
   PLANOS — Trial banner + pill + footnote + Plus estilo app.css
============================================================ */

/* Banner 7 dias */
.trial-banner {
  display: flex; align-items: center; gap: 14px;
  max-width: 680px; margin: 0 auto 28px;
  padding: 14px 22px;
  background: linear-gradient(135deg, rgba(74,222,128,0.08), rgba(74,222,128,0.03));
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 14px;
  font-size: 0.9rem; color: #cbd5e1; line-height: 1.5;
}
.trial-badge-ico { font-size: 1.6rem; flex-shrink: 0; }
.trial-banner strong { color: #4ade80; font-weight: 700; }

/* Pill de trial dentro do card */
.plan-trial-pill {
  position: absolute; top: 44px; right: 16px; /* abaixo do badge */
  background: linear-gradient(135deg, rgba(74,222,128,0.15), rgba(74,222,128,0.08));
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.35);
  border-radius: 20px; font-size: 0.68rem; font-weight: 700;
  padding: 3px 10px; white-space: nowrap;
  letter-spacing: 0.3px;
}

/* Footnote */
.pricing-footnote {
  text-align: center; color: #64748b; font-size: 0.82rem;
  margin-top: 24px; line-height: 1.6; max-width: 600px;
  margin-left: auto; margin-right: auto;
}

/* ─── Plano Plus — visual dourado igual app.css .upgrade-tier-plus ─── */
.plan-card.plan-plus {
  background:
    radial-gradient(ellipse at top, rgba(255,215,0,0.08), transparent 60%),
    linear-gradient(135deg, rgba(255,215,0,0.04), #1a1f27);
  border: 1px solid rgba(255,215,0,0.22);
  box-shadow: 0 0 0 1px rgba(255,215,0,0.1), 0 8px 24px rgba(0,0,0,0.3);
}
.plan-card.plan-plus:hover {
  border-color: #ffd700;
  box-shadow: 0 0 0 1px #ffd700, 0 12px 32px rgba(255,215,0,0.2);
  transform: translateY(-6px);
}
/* Preço Plus → dourado */
.plan-card.plan-plus .plan-price .amount { color: #ffd700; }
/* Equivalente Plus → dourado */
.plan-card.plan-plus .plan-equivalent { color: #fcd34d; }
/* Badge Plus → dourado sólido (igual nav-tag-premium sem is-premium) */
.plus-badge {
  background: linear-gradient(135deg, #ffd700, #f59e0b) !important;
  color: #14171c !important;
  box-shadow: 0 2px 8px rgba(255,215,0,0.35) !important;
}
/* Botão Plus → dourado sólido */
.btn-plan-plus {
  background: linear-gradient(135deg, #ffd700, #f59e0b);
  color: #14171c; border: none;
  box-shadow: 0 4px 14px rgba(255,215,0,0.3);
  font-weight: 800;
}
.btn-plan-plus:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,215,0,0.5);
}

/* ============================================================
   RESPONSIVO — Novas seções
============================================================ */
@media (max-width: 1100px) {
  .why-benefits-grid    { grid-template-columns: repeat(3, 1fr); }
  .dash-mock-kpis       { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 968px) {
  .why-step             { grid-template-columns: 1fr; gap: 24px; }
  .why-step-reverse     { direction: ltr; }
  .why-step-visual      { height: 200px; }
  .why-connector        { padding-left: 0; align-items: center; }
  .dash-mock-insights   { grid-template-columns: 80px 1fr; gap: 14px; }
  .dash-mock-kpis       { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .why-benefits-grid    { grid-template-columns: repeat(2, 1fr); }
  .dash-mock-kpis       { grid-template-columns: repeat(2, 1fr); }
  .dash-mock-charts     { grid-template-columns: 1fr; }
  .dash-mock-insights   { grid-template-columns: 1fr; text-align: center; }
  .dash-mock-ring       { align-self: center; margin: 0 auto; }
  .dash-mock-insight-list { display: none; } /* simplifica no mobile */
  .dash-mock-features-row { justify-content: center; }
  .trial-banner         { flex-direction: column; text-align: center; gap: 8px; }
  .plan-trial-pill      { position: static; margin-bottom: 8px; align-self: flex-start; }
  .plan-card.plan-plus  { display: flex; flex-direction: column; }
}

@media (max-width: 480px) {
  .why-benefits-grid    { grid-template-columns: repeat(2, 1fr); }
  .why-step-visual      { height: 150px; }
  .wfc-1, .wfc-3, .wfc-5 { top: 0; }
  .wfc-2, .wfc-4, .wfc-6 { bottom: 0; }
  .dash-mock-kpis       { grid-template-columns: repeat(2, 1fr); gap: 6px; padding: 10px; }
  .dash-mock-insights   { padding: 14px; }
  .dash-mock-header     { padding: 10px 14px; }
  .dash-mock-charts     { padding: 10px 14px 14px; gap: 10px; }
  .dmc-donut-wrap       { flex-direction: column; align-items: center; }
  .dmc-donut-svg        { width: 120px; height: 120px; }
  .dmc-legend           { flex-direction: row; flex-wrap: wrap; justify-content: center; }
}
