/* ===== LANDING PAGE CSS — FinanciadoCasal ===== */
/* Premium dark design system                      */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #070b14;
  --bg2: #0d1221;
  --bg3: #131929;
  --bg4: #1a2235;
  --bg5: #1f2a42;
  --border: rgba(255, 255, 255, 0.08);
  --border2: rgba(255, 255, 255, 0.14);
  --border3: rgba(255, 255, 255, 0.04);
  --text: #edf0f7;
  --text2: #8b93a8;
  --text3: #4a5368;
  --green: #5ee7b0;
  --green-dim: rgba(94, 231, 176, 0.10);
  --green-glow: rgba(94, 231, 176, 0.20);
  --green-glow2: rgba(94, 231, 176, 0.35);
  --blue: #7eb8f5;
  --blue-dim: rgba(126, 184, 245, 0.10);
  --amber: #fbbf24;
  --amber-dim: rgba(251, 191, 36, 0.10);
  --purple: #a78bfa;
  --purple-dim: rgba(167, 139, 250, 0.10);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.3);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-green: 0 0 40px rgba(94, 231, 176, 0.15);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--green) 0%, var(--blue) 60%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(94, 231, 176, 0.18);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #1a2a3a 0%, #0d1a2a 100%);
  border: 1px solid rgba(94, 231, 176, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(94, 231, 176, 0.12);
}

.nav-logo-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.nav-logo-text span {
  color: var(--green);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-nav-ghost {
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text2);
  background: transparent;
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  font-family: var(--font);
}

.btn-nav-ghost:hover {
  color: var(--text);
  border-color: var(--border2);
  background: rgba(255, 255, 255, 0.05);
}

.btn-nav-primary {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #071210;
  background: var(--green);
  border: none;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  font-family: var(--font);
  box-shadow: 0 0 20px rgba(94, 231, 176, 0.25);
}

.btn-nav-primary:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(94, 231, 176, 0.35);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text2);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-gradient-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-gradient-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(94, 231, 176, 0.07) 0%, transparent 65%);
  animation: heroGlow1 8s ease-in-out infinite alternate;
}

.hero-gradient-bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(126, 184, 245, 0.06) 0%, transparent 65%);
  animation: heroGlow2 10s ease-in-out infinite alternate;
}

@keyframes heroGlow1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(4%, 3%) scale(1.08); }
}

@keyframes heroGlow2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-3%, -4%) scale(1.06); }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 0%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 520px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(94, 231, 176, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
  color: var(--text);
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--green) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  color: #071210;
  background: var(--green);
  border: none;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
  box-shadow: 0 0 32px rgba(94, 231, 176, 0.3), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(94, 231, 176, 0.45), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.btn-hero-primary:active {
  transform: translateY(0);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text2);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}

.btn-hero-secondary:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border2);
  transform: translateY(-1px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text3);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.trust-check {
  color: var(--green);
  font-size: 14px;
}

/* ===== PHONE MOCKUP ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup-wrapper {
  position: relative;
  display: inline-flex;
  justify-content: center;
}

.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: radial-gradient(ellipse at center, rgba(94, 231, 176, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: phoneGlow 4s ease-in-out infinite alternate;
}

@keyframes phoneGlow {
  from { transform: translate(-50%, -50%) scale(0.95); opacity: 0.7; }
  to   { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
}

.phone-mockup {
  width: 270px;
  height: 560px;
  background: linear-gradient(160deg, #0f1623 0%, #080d18 100%);
  border-radius: 42px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
  animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0px) rotateX(2deg) rotateY(-3deg); }
  50%       { transform: translateY(-12px) rotateX(-1deg) rotateY(2deg); }
}

/* Phone notch */
.phone-notch {
  width: 100px;
  height: 28px;
  background: #080d18;
  border-radius: 0 0 18px 18px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: relative;
  z-index: 2;
}

.notch-camera {
  width: 10px;
  height: 10px;
  background: #0f1623;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}

.notch-speaker {
  width: 44px;
  height: 4px;
  background: #0a0f1a;
  border-radius: 2px;
}

/* Phone screen content */
.phone-screen {
  padding: 10px 14px 16px;
  height: calc(100% - 28px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
}

.phone-header-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone-header-logo {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #1a2a3a, #0d1a2a);
  border-radius: 6px;
  border: 0.5px solid rgba(94,231,176,0.3);
}

.phone-header-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
}

.phone-sync-dot {
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.phone-month {
  font-size: 10px;
  color: var(--text3);
  background: rgba(255,255,255,0.05);
  padding: 2px 8px;
  border-radius: 6px;
  border: 0.5px solid var(--border);
}

/* Metric cards on phone */
.phone-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.phone-metric {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid var(--border);
  border-radius: 10px;
  padding: 8px 10px;
}

.phone-metric.full {
  grid-column: 1 / -1;
  background: rgba(94,231,176,0.06);
  border-color: rgba(94,231,176,0.15);
}

.phone-metric label {
  display: block;
  font-size: 8px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.phone-metric .val {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.5px;
  font-variant-numeric: tabular-nums;
}

.phone-metric.green .val { color: var(--green); }
.phone-metric.red .val   { color: #ff6b6b; }
.phone-metric.full .val  { color: var(--blue); }

/* Progress bars on phone */
.phone-section-label {
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text3);
  margin-bottom: 4px;
}

.phone-prog-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid var(--border);
  border-radius: 10px;
  padding: 8px 10px;
}

.phone-prog-item {}

.phone-prog-label {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: var(--text2);
  margin-bottom: 3px;
}

.phone-prog-track {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.phone-prog-fill {
  height: 100%;
  border-radius: 2px;
}

/* Transaction items on phone */
.phone-tx-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  flex: 1;
}

.phone-tx-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-bottom: 0.5px solid rgba(255,255,255,0.04);
}

.phone-tx-item:last-child { border-bottom: none; }

.phone-tx-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.phone-tx-info {
  flex: 1;
  min-width: 0;
}

.phone-tx-name {
  font-size: 10px;
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-tx-cat {
  font-size: 8px;
  color: var(--text3);
}

.phone-tx-val {
  font-size: 10px;
  font-weight: 600;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.phone-tx-val.debit  { color: #ff6b6b; }
.phone-tx-val.credit { color: var(--green); }

/* Bottom nav on phone */
.phone-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 6px 0;
  background: rgba(255,255,255,0.03);
  border-top: 0.5px solid var(--border);
  border-radius: 0 0 8px 8px;
  margin: 0 -14px -16px;
}

.phone-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 4px 8px;
}

.phone-nav-icon {
  width: 16px;
  height: 16px;
  background: var(--text3);
  border-radius: 3px;
  opacity: 0.4;
}

.phone-nav-icon.active {
  background: var(--green);
  opacity: 1;
}

.phone-nav-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text3);
  opacity: 0.4;
}

.phone-nav-dot.active { background: var(--green); opacity: 1; }

/* Floating notification on phone */
.phone-notification {
  position: absolute;
  top: 50px;
  right: -30px;
  background: rgba(13, 18, 33, 0.95);
  border: 1px solid rgba(94, 231, 176, 0.2);
  border-radius: 12px;
  padding: 10px 14px;
  width: 160px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  animation: notifFloat 5s ease-in-out infinite;
}

@keyframes notifFloat {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50%       { transform: translateY(-8px) rotate(1deg); }
}

.notif-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.notif-icon {
  width: 18px;
  height: 18px;
  background: var(--green-dim);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notif-title {
  font-size: 10px;
  font-weight: 600;
  color: var(--green);
}

.notif-body {
  font-size: 11px;
  color: var(--text2);
  line-height: 1.4;
}

/* Floating AI tag */
.phone-ai-tag {
  position: absolute;
  bottom: 80px;
  left: -40px;
  background: rgba(13, 18, 33, 0.95);
  border: 1px solid rgba(126, 184, 245, 0.2);
  border-radius: 12px;
  padding: 10px 14px;
  width: 150px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  animation: aiFloat 6s ease-in-out 1s infinite;
}

@keyframes aiFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-10px) rotate(-1deg); }
}

.ai-tag-title {
  font-size: 10px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ai-tag-body {
  font-size: 10px;
  color: var(--text2);
  line-height: 1.4;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(94,231,176,0.03) 0%,
    rgba(126,184,245,0.03) 50%,
    rgba(94,231,176,0.03) 100%
  );
  pointer-events: none;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 16px 20px;
  border-right: 1px solid var(--border);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-value {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--text) 0%, var(--text2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 13px;
  color: var(--text3);
  font-weight: 400;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 0;
  position: relative;
}

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

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
}

.section-subtitle {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.7;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  position: relative;
}

.feature-icon-wrap.green {
  background: var(--green-dim);
  border: 1px solid rgba(94, 231, 176, 0.15);
}

.feature-icon-wrap.blue {
  background: var(--blue-dim);
  border: 1px solid rgba(126, 184, 245, 0.15);
}

.feature-icon-wrap.amber {
  background: var(--amber-dim);
  border: 1px solid rgba(251, 191, 36, 0.15);
}

.feature-icon-wrap.purple {
  background: var(--purple-dim);
  border: 1px solid rgba(167, 139, 250, 0.15);
}

.feature-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(94,231,176,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps-connector {
  position: absolute;
  top: 26px;
  left: calc(16.66% + 26px);
  width: calc(66.66% - 52px);
  height: 1px;
  background: linear-gradient(90deg, rgba(94,231,176,0.2), rgba(126,184,245,0.2), rgba(94,231,176,0.2));
  pointer-events: none;
}

.steps-connector::before,
.steps-connector::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(94,231,176,0.4);
}

.steps-connector::before { left: 0; }
.steps-connector::after  { right: 0; }

.step-card {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.step-number {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--bg4), var(--bg3));
  border: 1px solid var(--border2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--green);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px rgba(94,231,176,0.06);
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.step-desc {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 0;
  position: relative;
}

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

.pricing-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}

.pricing-card:hover { transform: translateY(-4px); }

.pricing-card.featured {
  background: rgba(94, 231, 176, 0.04);
  border-color: rgba(94, 231, 176, 0.3);
  box-shadow:
    0 0 0 1px rgba(94, 231, 176, 0.12),
    0 0 60px rgba(94, 231, 176, 0.10),
    var(--shadow);
}

.pricing-card.featured:hover {
  box-shadow:
    0 0 0 1px rgba(94, 231, 176, 0.2),
    0 0 80px rgba(94, 231, 176, 0.15),
    var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green), #3dd68c);
  color: #061a10;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(94, 231, 176, 0.35);
}

.pricing-plan-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.pricing-price {
  margin-bottom: 8px;
}

.pricing-price .currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--text2);
  vertical-align: top;
  line-height: 1.4;
}

.pricing-price .amount {
  font-size: 52px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -2px;
  line-height: 1;
}

.pricing-price .period {
  font-size: 14px;
  color: var(--text3);
  font-weight: 400;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text3);
  margin-bottom: 32px;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.5;
}

.pricing-features li .check {
  color: var(--green);
  flex-shrink: 0;
  font-size: 15px;
  margin-top: 1px;
}

.pricing-features li .cross {
  color: var(--text3);
  flex-shrink: 0;
  font-size: 15px;
  margin-top: 1px;
}

.pricing-features li.disabled {
  color: var(--text3);
}

.btn-pricing-free {
  display: block;
  width: 100%;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}

.btn-pricing-free:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-1px);
}

.btn-pricing-pro {
  display: block;
  width: 100%;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 700;
  color: #061a10;
  background: var(--green);
  border: none;
  border-radius: var(--radius-sm);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
  box-shadow: 0 0 30px rgba(94, 231, 176, 0.3);
}

.btn-pricing-pro:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(94, 231, 176, 0.45);
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text3);
  margin-top: 24px;
}

/* Annual toggle */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}

.pricing-toggle-label {
  font-size: 14px;
  color: var(--text2);
  font-weight: 500;
}

.pricing-toggle-label.active { color: var(--text); }

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  cursor: pointer;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-track {
  position: absolute;
  inset: 0;
  background: var(--bg4);
  border: 1px solid var(--border2);
  border-radius: 13px;
  transition: background var(--transition), border-color var(--transition);
}

.toggle-switch input:checked + .toggle-track {
  background: rgba(94,231,176,0.2);
  border-color: rgba(94,231,176,0.4);
}

.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--text3);
  border-radius: 50%;
  transition: transform var(--transition), background var(--transition);
}

.toggle-switch input:checked ~ .toggle-thumb {
  transform: translateX(22px);
  background: var(--green);
}

.save-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(94,231,176,0.15);
  padding: 3px 10px;
  border-radius: 10px;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 100px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.faq-question {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--transition);
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-item[open] .faq-question { color: var(--green); }

.faq-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--text3);
  transition: transform var(--transition), color var(--transition);
}

.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
  color: var(--green);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.75;
  animation: faqOpen 0.25s ease;
}

@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq-answer a {
  color: var(--blue);
  text-decoration: none;
}

.faq-answer a:hover { text-decoration: underline; }

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(94,231,176,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.cta-subtitle {
  font-size: 18px;
  color: var(--text2);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.cta-disclaimer {
  font-size: 13px;
  color: var(--text3);
  position: relative;
  z-index: 1;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
  color: var(--text);
}

.footer-tagline {
  font-size: 14px;
  color: var(--text3);
  line-height: 1.6;
  max-width: 260px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text3);
  text-decoration: none;
  font-size: 14px;
  transition: all var(--transition);
}

.social-link:hover {
  color: var(--text);
  background: rgba(255,255,255,0.08);
  border-color: var(--border2);
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text3);
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text3);
}

.footer-copy a {
  color: var(--green);
  text-decoration: none;
}

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

.footer-legal a {
  font-size: 13px;
  color: var(--text3);
  text-decoration: none;
  transition: color var(--transition);
}

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

.made-in-brazil {
  font-size: 13px;
  color: var(--text3);
}

.flag {
  display: inline;
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  height: 1px;
  background: var(--border);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-inner {
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(7,11,20,0.98);
    backdrop-filter: blur(20px);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }

  .nav-links.mobile-open a {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }

  .nav-mobile-toggle { display: flex; }

  .hero {
    padding: 90px 0 60px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subtitle { margin-left: auto; margin-right: auto; }

  .hero-cta { justify-content: center; }

  .hero-trust { justify-content: center; }

  .hero-visual { order: -1; }

  .phone-mockup {
    width: 220px;
    height: 460px;
  }

  .phone-notification { right: -15px; width: 140px; }
  .phone-ai-tag { left: -20px; width: 135px; }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps-connector { display: none; }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand { grid-column: 1 / -1; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .nav-inner { padding: 0 16px; }

  .btn-nav-ghost { display: none; }

  .hero-title { font-size: 32px; }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .phone-mockup { width: 200px; height: 420px; }

  .phone-notification { display: none; }

  .pricing-card { padding: 32px 24px; }

  .footer-grid { grid-template-columns: 1fr; }
}

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

.animate-in {
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.animate-in-delay-1 { animation-delay: 0.1s; }
.animate-in-delay-2 { animation-delay: 0.2s; }
.animate-in-delay-3 { animation-delay: 0.3s; }
.animate-in-delay-4 { animation-delay: 0.4s; }

/* Intersection Observer animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
