/* ============================================================
   MAW FINANÇAS — LANDING PAGE
   ============================================================ */

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

:root {
  --navy:   #0d1b2a;
  --navy2:  #162032;
  --navy3:  #1e2d40;
  --gold:   #c9a227;
  --gold2:  #e8bc2d;
  --green:  #1d9e75;
  --red:    #e24b4a;
  --blue:   #378ADD;
  --purple: #8b5cf6;
  --teal:   #0ea5e9;
  --amber:  #f59e0b;
  --bg:     #f4f5f7;
  --white:  #ffffff;
  --text:   #1a2332;
  --text2:  #4a5568;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(13,27,42,0.10);
  --shadow-lg: 0 12px 40px rgba(13,27,42,0.18);
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 14px 0;
  background: rgba(13,27,42,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--navy);
}
.logo-text {
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.3px;
}
.logo-text strong { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0px;
  list-style: none;
  flex-wrap: nowrap;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.btn-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold2)) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 8px 12px !important;
  border-radius: 10px !important;
  white-space: nowrap !important;
  flex-shrink: 0;
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,162,39,0.4); }
.btn-nav-login {
  background: transparent !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  padding: 9px 18px !important;
  border-radius: 10px !important;
  border: 1.5px solid rgba(255,255,255,0.35) !important;
}
.btn-nav-login:hover { background: rgba(255,255,255,0.12) !important; border-color: rgba(255,255,255,0.6) !important; }
.nav-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  font-size: 13px;
  white-space: nowrap;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--navy);
  z-index: 99;
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.08); }
.btn-mobile {
  background: linear-gradient(135deg, var(--gold), var(--gold2)) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  text-align: center;
  margin-top: 8px;
}
.btn-mobile-login {
  border: 1.5px solid rgba(255,255,255,0.3) !important;
  color: rgba(255,255,255,0.85) !important;
  font-weight: 600 !important;
  text-align: center;
  margin-top: 4px;
  border-radius: 8px !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.blob-1 { width: 600px; height: 600px; background: var(--gold); top: -200px; right: -100px; }
.blob-2 { width: 400px; height: 400px; background: var(--green); bottom: -100px; left: -100px; }
.blob-3 { width: 300px; height: 300px; background: var(--blue); top: 50%; left: 40%; }

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge i { font-size: 11px; }
.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(201,162,39,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,162,39,0.5); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.btn-large { font-size: 17px; padding: 18px 36px; border-radius: 14px; }
.hero-login-hint {
  margin-top: -24px;
  margin-bottom: 32px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}
.hero-login-hint a {
  color: var(--gold2);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}
.hero-login-hint a:hover { opacity: 0.8; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { text-align: center; }
.stat strong { display: block; font-size: 22px; font-weight: 800; color: var(--white); }
.stat span { font-size: 12px; color: rgba(255,255,255,0.5); }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* ── DASHBOARD MOCKUP ── */
.hero-visual { position: relative; }
.dashboard-mockup {
  background: var(--navy2);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.04);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.mockup-header {
  background: var(--navy);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mockup-dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28ca41; }
.mockup-title { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 500; }
.mockup-body { display: flex; }
.mockup-sidebar {
  width: 44px;
  background: rgba(0,0,0,0.2);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.sidebar-item {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 7px;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  cursor: pointer;
  transition: all 0.2s;
}
.sidebar-item.active { background: var(--gold); color: var(--navy); }
.mockup-content { flex: 1; padding: 12px; overflow: hidden; }

.mockup-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin-bottom: 10px; }
.metric-card {
  padding: 8px;
  border-radius: 8px;
  display: flex; flex-direction: column; gap: 3px;
}
.metric-card.green { background: rgba(29,158,117,0.15); border: 1px solid rgba(29,158,117,0.25); }
.metric-card.red   { background: rgba(226,75,74,0.12);  border: 1px solid rgba(226,75,74,0.2); }
.metric-card.blue  { background: rgba(55,138,221,0.12); border: 1px solid rgba(55,138,221,0.2); }
.metric-label { font-size: 8px; color: rgba(255,255,255,0.5); }
.metric-value { font-size: 12px; font-weight: 700; color: var(--white); }
.metric-change { font-size: 8px; color: rgba(255,255,255,0.4); }
.metric-card.green .metric-change { color: var(--green); }
.metric-card.red .metric-change { color: var(--red); }
.metric-card.blue .metric-change { color: var(--blue); }

.mockup-chart { margin-bottom: 10px; background: rgba(255,255,255,0.03); border-radius: 8px; padding: 10px 8px 6px; }
.chart-bars { display: flex; align-items: flex-end; gap: 4px; height: 60px; }
.bar {
  flex: 1;
  background: rgba(201,162,39,0.25);
  border-radius: 4px 4px 0 0;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 2px;
  transition: background 0.2s;
  position: relative;
}
.bar.active { background: var(--gold); }
.bar span { font-size: 7px; color: rgba(255,255,255,0.4); }
.bar.active span { color: var(--navy); font-weight: 700; }

.mockup-transactions { display: flex; flex-direction: column; gap: 5px; }
.mock-tx { display: flex; align-items: center; gap: 7px; }
.tx-icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
}
.tx-icon.salary   { background: rgba(29,158,117,0.2); color: var(--green); }
.tx-icon.food     { background: rgba(245,158,11,0.2); color: var(--amber); }
.tx-icon.transport{ background: rgba(55,138,221,0.2); color: var(--blue); }
.tx-info { flex: 1; min-width: 0; }
.tx-info span { display: block; font-size: 9px; font-weight: 600; color: rgba(255,255,255,0.85); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tx-info small { font-size: 8px; color: rgba(255,255,255,0.35); }
.tx-value { font-size: 10px; font-weight: 700; flex-shrink: 0; }
.tx-value.income { color: var(--green); }
.tx-value.expense { color: var(--red); }

/* floating cards */
.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  color: var(--text);
  max-width: 220px;
  animation: float2 5s ease-in-out infinite;
}
@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.card-goal { bottom: 60px; left: -30px; animation-delay: 1s; }
.card-alert { top: 30px; right: -20px; animation-delay: 2.5s; }
.floating-card i { font-size: 20px; }
.card-goal i { color: var(--green); }
.card-alert i { color: var(--amber); }
.floating-card strong { display: block; font-size: 12px; font-weight: 700; margin-bottom: 4px; }
.floating-card small { font-size: 11px; color: var(--text2); }
.progress-bar { height: 4px; background: var(--border); border-radius: 4px; margin: 4px 0; }
.progress-fill { height: 100%; background: var(--green); border-radius: 4px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-bar p { text-align: center; font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.bank-logos { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.bank-logos span {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  transition: all 0.2s;
}
.bank-logos span:hover { color: var(--gold); border-color: rgba(201,162,39,0.3); }

/* ── SECTION BASE ── */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.25);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-subtitle { font-size: 17px; color: var(--text2); max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ── FEATURES GRID ── */
.recursos { background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.icon-blue   { background: rgba(55,138,221,0.12);  color: var(--blue); }
.icon-green  { background: rgba(29,158,117,0.12);  color: var(--green); }
.icon-gold   { background: rgba(201,162,39,0.12);  color: var(--gold); }
.icon-purple { background: rgba(139,92,246,0.12);  color: var(--purple); }
.icon-red    { background: rgba(226,75,74,0.12);   color: var(--red); }
.icon-teal   { background: rgba(14,165,233,0.12);  color: var(--teal); }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-card p  { font-size: 14px; color: var(--text2); line-height: 1.6; }

/* ── FUNCIONALIDADES ── */
.func-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.func-block:last-child { margin-bottom: 0; }
.func-block.reverse { direction: rtl; }
.func-block.reverse > * { direction: ltr; }

.func-card-demo {
  background: var(--navy);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
}
.func-demo-header {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.func-demo-header i { color: var(--gold); font-size: 16px; }

.func-badge {
  display: inline-block;
  background: rgba(201,162,39,0.1);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}
.func-info h3 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 14px; line-height: 1.2; }
.func-info p { font-size: 16px; color: var(--text2); line-height: 1.7; margin-bottom: 24px; }
.func-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.func-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text2); }
.func-list li i { color: var(--green); font-size: 14px; flex-shrink: 0; }

/* demo metrics row */
.demo-metrics-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.demo-metric {
  display: flex; align-items: center; gap: 10px;
  padding: 12px;
  border-radius: 10px;
  font-size: 13px;
}
.demo-metric.green { background: rgba(29,158,117,0.12); }
.demo-metric.red   { background: rgba(226,75,74,0.12); }
.demo-metric i { font-size: 16px; }
.demo-metric.green i { color: var(--green); }
.demo-metric.red i { color: var(--red); }
.demo-metric small { display: block; font-size: 10px; color: rgba(255,255,255,0.4); }
.demo-metric strong { display: block; font-size: 15px; font-weight: 700; color: var(--white); }

/* donut chart */
.demo-donut { display: flex; align-items: center; gap: 16px; }
.donut-svg { width: 80px; height: 80px; flex-shrink: 0; }
.donut-legend { display: flex; flex-direction: column; gap: 6px; }
.donut-legend span { display: flex; align-items: center; gap: 6px; font-size: 11px; color: rgba(255,255,255,0.6); }
.donut-legend i { display: inline-block; width: 10px; height: 10px; border-radius: 3px; }

/* transactions demo */
.transactions-demo { display: flex; flex-direction: column; gap: 8px; }
.tx-demo-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}
.tx-demo-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.tx-demo-icon.green  { background: rgba(29,158,117,0.2);  color: var(--green); }
.tx-demo-icon.red    { background: rgba(226,75,74,0.2);   color: var(--red); }
.tx-demo-icon.amber  { background: rgba(245,158,11,0.2);  color: var(--amber); }
.tx-demo-icon.blue   { background: rgba(55,138,221,0.2);  color: var(--blue); }
.tx-demo-info { flex: 1; min-width: 0; }
.tx-demo-info strong { display: block; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.9); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tx-demo-info small  { font-size: 10px; color: rgba(255,255,255,0.4); }
.tx-demo-val { font-size: 12px; font-weight: 700; flex-shrink: 0; }
.tx-demo-val.green { color: var(--green); }
.tx-demo-val.red   { color: var(--red); }
.tx-demo-status {
  font-size: 10px; font-weight: 600;
  padding: 3px 8px; border-radius: 6px;
  flex-shrink: 0;
}
.tx-demo-status.paid    { background: rgba(29,158,117,0.2); color: var(--green); }
.tx-demo-status.pending { background: rgba(245,158,11,0.2); color: var(--amber); }

/* goals demo */
.goals-demo { display: flex; flex-direction: column; gap: 12px; }
.goal-item { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 12px; border: 1px solid rgba(255,255,255,0.06); }
.goal-header-demo { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.goal-icon-demo { font-size: 20px; }
.goal-header-demo strong { display: block; font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.9); }
.goal-header-demo small  { font-size: 10px; color: rgba(255,255,255,0.4); }
.goal-pct { margin-left: auto; font-size: 13px; font-weight: 800; color: var(--white); }
.goal-bar { height: 6px; background: rgba(255,255,255,0.1); border-radius: 6px; overflow: hidden; }
.goal-fill { height: 100%; border-radius: 6px; }

/* ── MODULES ── */
.modulos { background: var(--bg); }
.modules-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.module-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.module-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(201,162,39,0.3); }
.module-item > i { font-size: 22px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.module-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.module-item p  { font-size: 13px; color: var(--text2); line-height: 1.5; }

/* ── TESTIMONIALS ── */
.depoimentos { background: var(--navy); }
.depoimentos .section-badge { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); }
.depoimentos .section-title { color: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--navy2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s;
}
.testimonial-card.featured {
  background: linear-gradient(135deg, rgba(201,162,39,0.1), rgba(201,162,39,0.05));
  border-color: rgba(201,162,39,0.3);
  transform: scale(1.03);
}
.testimonial-card:hover { transform: translateY(-4px) scale(1); box-shadow: var(--shadow-lg); }
.testimonial-card.featured:hover { transform: translateY(-4px) scale(1.03); }
.stars { color: var(--gold); margin-bottom: 16px; font-size: 13px; display: flex; gap: 4px; }
.testimonial-card p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--white); }
.testimonial-author small  { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ── PLANS ── */
.planos { background: var(--bg); }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; margin-bottom: 48px; }
.plan-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  transition: all 0.3s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan-card.popular {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,162,39,0.1), var(--shadow);
  transform: scale(1.02);
}
.plan-card.popular:hover { transform: scale(1.02) translateY(-4px); }
.plan-badge-top {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.plan-header { margin-bottom: 24px; }
.plan-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 14px;
}
.plan-header h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.plan-header p  { font-size: 13px; color: var(--text2); }
.plan-price { margin-bottom: 28px; }
.price-old { display: block; font-size: 13px; color: #999; text-decoration: line-through; margin-bottom: 4px; }
.price-main { display: flex; align-items: baseline; gap: 4px; }
.price-currency { font-size: 22px; font-weight: 700; color: var(--navy); }
.price-value { font-size: 52px; font-weight: 900; color: var(--navy); line-height: 1; letter-spacing: -2px; }
.plan-card .price-currency,
.plan-card .price-value { color: var(--navy); }
.plan-price .price-currency:only-child,
.plan-price > .price-currency { display: inline; vertical-align: middle; }
.plan-price > .price-value { display: inline; }
.price-period { display: block; font-size: 12px; color: var(--text2); margin-top: 4px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.plan-features li i { font-size: 13px; flex-shrink: 0; }
.plan-features li i.fa-check { color: var(--green); }
.plan-features li.disabled { color: #bbb; }
.plan-features li.disabled i.fa-times { color: #ddd; }
.btn-plan {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  background: var(--navy);
  color: var(--white);
  transition: all 0.2s;
  margin-bottom: 12px;
}
.btn-plan:hover { background: var(--navy3); transform: translateY(-1px); }
.btn-plan-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold2)) !important;
  color: var(--navy) !important;
  box-shadow: 0 4px 20px rgba(201,162,39,0.35);
  display: flex !important; align-items: center; justify-content: center; gap: 8px;
}
.btn-plan-primary:hover { box-shadow: 0 8px 30px rgba(201,162,39,0.5) !important; }
.plan-guarantee { font-size: 12px; color: var(--text2); text-align: center; display: flex; align-items: center; justify-content: center; gap: 5px; }
.plan-guarantee i { color: var(--green); }

/* guarantee box */
.guarantee-box {
  background: var(--white);
  border: 2px solid rgba(29,158,117,0.3);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.guarantee-icon {
  width: 64px; height: 64px;
  background: rgba(29,158,117,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--green);
  flex-shrink: 0;
}
.guarantee-text { flex: 1; min-width: 200px; }
.guarantee-text h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.guarantee-text p  { font-size: 14px; color: var(--text2); line-height: 1.6; }
.guarantee-badges { display: flex; flex-direction: column; gap: 8px; }
.guarantee-badges span {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--text2);
  background: var(--bg);
  padding: 10px 16px;
  border-radius: 8px;
}
.guarantee-badges span i { color: var(--green); }

/* ── FAQ ── */
.faq { background: var(--bg); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(201,162,39,0.4); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  font-size: 15px; font-weight: 600;
  gap: 16px;
}
.faq-question i { color: var(--gold); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p { padding: 0 24px 20px; font-size: 14px; color: var(--text2); line-height: 1.7; }

/* ── CTA FINAL ── */
.cta-final {
  background: var(--navy);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,162,39,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cta-content { position: relative; z-index: 1; }
.cta-final h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 900; color: var(--white); line-height: 1.15; letter-spacing: -1px; margin-bottom: 16px; }
.cta-final p { font-size: 17px; color: rgba(255,255,255,0.6); margin-bottom: 36px; }
.cta-note { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 20px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.cta-note i { color: var(--green); }

/* ── FOOTER ── */
.footer { background: #080e16; padding: 60px 0 32px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; }
.footer-links h4 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-app-link { color: var(--gold) !important; font-weight: 600 !important; }
.footer-contact h4 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-contact p { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.footer-contact p i { color: var(--gold); }
.social-links { display: flex; gap: 8px; margin-top: 16px; }
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}
.social-links a:hover { background: var(--gold); color: var(--navy); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 48px; }
  .plan-card.popular { transform: none; }
  .plan-card.popular:hover { transform: translateY(-4px); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .testimonial-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .func-block { grid-template-columns: 1fr; gap: 32px; }
  .func-block.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .stat strong { font-size: 18px; }
  .section { padding: 64px 0; }
  .guarantee-box { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── BARRA DE ATUALIZAÇÃO ── */
.update-bar {
  background: linear-gradient(90deg, #1e3a5f, #0d2a4a);
  color: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  position: relative;
  z-index: 10;
}
.update-bar-inner { display: flex; align-items: center; gap: 12px; flex: 1; justify-content: center; flex-wrap: wrap; }
.update-badge { background: #c9a227; color: #0d1b2a; font-weight: 800; font-size: 11px; padding: 3px 10px; border-radius: 99px; letter-spacing: 0.5px; white-space: nowrap; }
.update-text { color: rgba(255,255,255,0.85); }
.update-link { color: #c9a227; font-weight: 700; text-decoration: none; white-space: nowrap; border-bottom: 1px dashed #c9a227; }
.update-link:hover { color: #f0d060; }
.update-close { background: none; border: none; color: rgba(255,255,255,0.5); font-size: 20px; cursor: pointer; padding: 0 4px; line-height: 1; flex-shrink: 0; }
.update-close:hover { color: #fff; }

/* ── SEÇÃO NOVIDADES ── */
.novidades-section { padding: 80px 0; background: var(--bg-light, #f8fafc); }
.novidades-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.novidade-card { background: #fff; border-radius: 16px; padding: 28px 24px; border: 1px solid #e5e7eb; transition: transform 0.2s, box-shadow 0.2s; }
.novidade-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.novidade-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
.novidade-card h3 { font-size: 16px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.novidade-card p { font-size: 13px; color: #6b7280; line-height: 1.6; }

