/*===============================================
  AUTO CONTROLE - PREMIUM AUTOMOTIVE DESIGN
  Aesthetic: Industrial/Tech with Automotive Premium feel
===============================================*/

/*===============================================
  CONFIGURAÇÕES GLOBAIS E VARIÁVEIS
===============================================*/
:root {
  /* Cores - Clean Light Theme */
  --color-primary: #5D81F4; /* Brand Blue */
  --color-primary-light: #8ba5f7;
  --color-primary-dark: #4a67c2;
  --color-primary-glow: rgba(93, 129, 244, 0.15);
  --color-purple: #B26EF6; /* Brand Purple for gradients */
  --color-purple-light: #c99df8;
  --color-success: #10b981; /* Success Green */
  --color-success-light: #34d399;
  --color-accent: #f59e0b; /* Amber for attention */
  --color-accent-light: #fbbf24;
  
  /* Light Theme Base */
  --color-bg-dark: #ffffff;
  --color-bg-section: #f8fafc; /* Slate 50 */
  --color-bg-card: #ffffff;
  --color-bg-card-hover: #f1f5f9;
  --color-surface: #ffffff;
  
  --color-white: #ffffff;
  --text-primary: #0f172a; /* Slate 900 */
  --text-secondary: #475569; /* Slate 600 */
  --text-muted: #94a3b8; /* Slate 400 */
  
  --color-border: #e2e8f0;
  --color-border-light: #cbd5e1;

  /* Tipografia - Space Mono (technical) + DM Sans (body) */
  --font-mono: 'Space Mono', 'Courier New', monospace;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  
  /* Font Weights */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Espaçamento */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;

  /* Bordas */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;

  /* Sombras - Light Theme Optimized */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 40px rgba(93, 129, 244, 0.15);
  --shadow-glow-success: 0 0 40px rgba(16, 185, 129, 0.15);
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

/*===============================================
  LAYOUT E CONTAINER
===============================================*/
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Prevent horizontal overflow */
body {
  overflow-x: hidden;
  max-width: 100vw;
}

*, *::before, *::after {
  max-width: 100%;
}

/*===============================================
  TIPOGRAFIA
===============================================*/
h1, h2, h3, h4 {
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-success { color: var(--color-success); }
.text-primary { color: var(--color-primary); }

/*===============================================
  BOTÕES
===============================================*/
.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-purple) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(93, 129, 244, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-purple) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(93, 129, 244, 0.4), var(--shadow-glow);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary-dark);
  font-weight: var(--font-weight-bold);
  box-shadow: var(--shadow-lg);
}

.btn-white:hover {
  background: var(--text-primary);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

/*===============================================
  HEADER
===============================================*/
.header {
  padding: var(--space-sm) 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 1;
}

.logo img {
  width: 100px;
  height: auto;
}

.logo-text {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.header .btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/*===============================================
  HERO SECTION
===============================================*/
.hero {
  padding: var(--space-3xl) 0;
  overflow: hidden;
  position: relative;
  background: var(--color-bg-dark);
}

/* Blueprint Grid Background */
.blueprint-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(93, 129, 244, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 129, 244, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(93, 129, 244, 0.08);
  border: 1px solid rgba(93, 129, 244, 0.15);
  border-radius: 100px;
  font-size: 0.875rem;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-lg);
  animation: fadeInDown 0.6s ease-out;
}

.hero-title {
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-title .highlight-text {
  background: linear-gradient(135deg, var(--color-primary), var(--color-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .typed-text {
  position: relative;
  display: inline-block;
  color: var(--color-primary);
}

.hero-title .typed-text::after {
  content: '|';
  position: absolute;
  right: -0.5rem;
  animation: blink 1s infinite;
  color: var(--color-primary);
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero-subtitle {
  margin-bottom: var(--space-xl);
  font-size: 1.25rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle strong {
  color: var(--color-success);
  font-weight: var(--font-weight-bold);
}

.hero-actions {
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-actions .btn {
  width: 100%;
  max-width: 400px;
}

.btn-large .btn-main,
.btn-large .btn-sub {
  display: block;
}

.btn-large .btn-main {
  font-size: 1.125rem;
  font-weight: var(--font-weight-bold);
}

.btn-large .btn-sub {
  font-size: 0.75rem;
  opacity: 0.8;
  font-weight: var(--font-weight-normal);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stat {
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.75rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* Dashboard Mockup - Premium Dark */
.dashboard-mockup {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--color-border);
  padding: var(--space-md);
  width: 100%;
  max-width: 420px;
  position: relative;
  border: 1px solid var(--color-border);
}

.mockup-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 20px;
  background: var(--color-bg-card);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  border: 1px solid var(--color-border);
  border-top: none;
  z-index: 10;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.mockup-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-success);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.mockup-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.stat-card {
  background: var(--color-bg-section);
  padding: var(--space-sm);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-primary);
  transition: all var(--transition-base);
}

.stat-card.primary {
  border-left-color: var(--color-primary);
}

.stat-card.success {
  border-left-color: var(--color-success);
}

.stat-card.accent {
  border-left-color: var(--color-accent);
}

.stat-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.stat-header i {
  color: var(--color-primary);
}

.stat-card.success .stat-header i {
  color: var(--color-success);
}

.stat-card.accent .stat-header i {
  color: var(--color-purple);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-value {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.25rem;
}

.stat-trend {
  font-size: 0.75rem;
  display: block;
}

.stat-trend.down {
  color: var(--color-success);
}

.stat-trend.up {
  color: var(--color-success);
}

.stat-trend.neutral {
  color: var(--color-accent);
}

/* Chart Container */
.chart-container {
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
}

.chart-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bar-chart {
  height: 100px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: var(--radius-sm);
}

.bar {
  flex: 1;
  height: var(--bar-height);
  background: linear-gradient(180deg, var(--color-purple-light) 0%, var(--color-primary) 100%);
  border-radius: 4px 4px 0 0;
  animation: growUp 0.8s ease-out var(--bar-delay) both;
  position: relative;
}

.bar.active {
  background: linear-gradient(180deg, var(--color-success-light) 0%, var(--color-success) 100%);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

@keyframes growUp {
  from { height: 0; }
}

.chart-months {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

.fuel-card {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.maintenance-card {
  bottom: 15%;
  left: -15%;
  animation-delay: 2s;
}

.floating-card i {
  color: var(--color-primary);
}

.floating-card-content {
  display: flex;
  flex-direction: column;
}

.floating-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.floating-value {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
}

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

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  animation: fadeInUp 1s ease-out 1s both;
}

.mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--text-muted);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/*===============================================
  SECTION HEADERS (REUSABLE)
===============================================*/
.section-header {
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
}

.section-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(93, 129, 244, 0.08);
  border: 1px solid rgba(93, 129, 244, 0.15);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary-dark);
  margin-bottom: var(--space-md);
  font-family: var(--font-mono);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header h2 .highlight {
  background: linear-gradient(135deg, var(--color-primary), var(--color-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*===============================================
  BENEFITS SECTION
===============================================*/
.benefits {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-section);
  position: relative;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.benefit-card {
  padding: var(--space-xl);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-purple));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.benefit-card:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-border-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-number {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.5;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-purple) 100%);
  color: var(--color-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(93, 129, 244, 0.3);
}

.benefit-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.benefit-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.benefit-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--color-success);
}

/*===============================================
  PERSONA SECTION
===============================================*/
.personas {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-dark);
}

.persona-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.persona-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.persona-card:hover {
  border-color: var(--color-border-light);
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

.persona-image {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-purple) 100%);
  padding: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  position: relative;
}

.persona-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}

.persona-image i {
  position: relative;
  z-index: 1;
}

.persona-content {
  padding: var(--space-xl);
}

.persona-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(93, 129, 244, 0.08);
  color: var(--color-primary-dark);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-sm);
  font-family: var(--font-mono);
}

.persona-content h3 {
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.persona-content p {
  margin-bottom: var(--space-md);
}

.persona-list {
  list-style: none;
  margin: var(--space-md) 0;
}

.persona-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: var(--text-secondary);
}

.persona-list li::before {
  content: "✓";
  color: var(--color-success);
  font-weight: bold;
}

/*===============================================
  VALUE PROOF SECTION
===============================================*/
.value-proof {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-section);
  position: relative;
  overflow: hidden;
}

.proof-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(93, 129, 244, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(178, 110, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.value-text {
  text-align: center;
}

.value-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: var(--font-weight-semibold);
  color: #d97706;
  margin-bottom: var(--space-lg);
  font-family: var(--font-mono);
}

.value-text h2 {
  margin-bottom: var(--space-md);
}

.saving-amount {
  margin: var(--space-lg) 0;
}

.saving-amount .currency {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-success);
  vertical-align: super;
}

.saving-amount .amount {
  font-family: var(--font-mono);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-success);
  line-height: 1;
  text-shadow: 0 0 40px rgba(16, 185, 129, 0.4);
}

.saving-amount .period {
  font-size: 1.5rem;
  color: var(--text-muted);
  font-weight: var(--font-weight-semibold);
}

.value-text p {
  margin-bottom: var(--space-xl);
}

.value-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 500px;
  margin: 0 auto;
}

.value-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  font-size: 1.125rem;
}

.value-feature i {
  color: var(--color-success);
  flex-shrink: 0;
}

/* Phone Frames */
.app-screens {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  perspective: 1000px;
}

.phone-frame {
  position: relative;
  width: 260px;
  height: 540px;
  background: #e2e8f0;
  border-radius: 2.5rem;
  padding: 10px;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-slow);
}

.phone-frame.offset {
  margin-top: var(--space-xl);
}

.phone-frame:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: #e2e8f0;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

.phone-content {
  width: 100%;
  height: 100%;
  background: var(--color-bg-card);
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--color-border);
}

.phone-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*===============================================
  COMPARISON SECTION
===============================================*/
.comparison {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-dark);
}

.comparison-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: var(--space-xl) auto 0;
  max-width: 100%;
}

.comparison-table {
  width: 100%;
  max-width: 800px;
  margin: var(--space-xl) auto 0;
  border-collapse: collapse;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.comparison-table th, 
.comparison-table td {
  padding: 1rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
}

.comparison-table th {
  background: var(--color-bg-section);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table .feature {
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
  font-size: 0.85rem;
}

.comparison-table td {
  color: var(--text-secondary);
}

.comparison-table .check { 
  color: var(--color-success); 
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
}

.comparison-table .cross { 
  color: #ef4444;
  font-size: 1.1rem;
  text-align: center;
}

/*===============================================
  CTA FINAL SECTION
===============================================*/
.cta-final {
  padding: var(--space-3xl) 0;
  text-align: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-purple) 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.cta-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.cta-grid {
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  font-size: 0.875rem;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.cta-final h2 {
  margin-bottom: var(--space-md);
}

.cta-highlight {
  background: linear-gradient(135deg, var(--color-success-light), var(--color-accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

.cta-actions {
  margin-bottom: var(--space-xl);
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.trust-item,
.trust-separator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.trust-separator {
  opacity: 0.5;
}

.star-icon {
  color: var(--color-accent);
}

/*===============================================
  FOOTER
===============================================*/
.footer {
  padding: var(--space-xl) 0 var(--space-lg);
  background-color: var(--color-bg-section);
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand .logo-text {
  color: var(--text-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
  color: var(--text-muted);
  font-size: 0.875rem;
}

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

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

/*===============================================
  RESPONSIVIDADE
===============================================*/
@media (min-width: 768px) {
  .hero-grid { 
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
  
  .hero-actions { 
    flex-direction: row; 
  }
  
  .hero-actions .btn {
    width: auto;
  }
  
  .persona-card { 
    grid-template-columns: 1fr 2fr; 
  }
  
  .footer-grid { 
    grid-template-columns: 2fr 1fr 1fr; 
  }
  
  .mockup-stats { 
    grid-template-columns: repeat(3, 1fr); 
  }
  
  .dashboard-mockup { 
    max-width: 100%; 
  }
}

@media (min-width: 1024px) {
  .container { 
    padding: 0 var(--space-xl); 
  }
  
  .persona-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  
  .persona-card { 
    grid-template-columns: 1fr; 
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

@media (max-width: 640px) {
  /* Header */
  .header {
    padding: var(--space-xs) 0;
  }

  .nav-content {
    gap: 0.5rem;
  }

  .logo-text {
    font-size: 0.9rem;
  }

  .header .btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  /* Container */
  .container {
    padding: 0 var(--space-sm);
  }

  /* Hero */
  .hero {
    padding: var(--space-xl) 0;
  }

  .hero-visual {
    order: -1;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

  .floating-card {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }

  /* Dashboard Mockup */
  .dashboard-mockup {
    max-width: 100%;
    padding: var(--space-sm);
  }

  .stat-value {
    font-size: 1.25rem;
  }

  /* Benefits */
  .benefit-card {
    padding: var(--space-md);
  }

  /* Value Proof */
  .saving-amount .amount {
    font-size: 3rem;
  }

  .saving-amount .currency {
    font-size: 1.5rem;
  }

  .app-screens {
    flex-direction: column;
    align-items: center;
  }

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

  .phone-frame.offset {
    margin-top: 0;
  }

  /* Comparison Table */
  .comparison-table {
    font-size: 0.8rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.8rem;
  }

  .comparison-table .feature {
    font-size: 0.75rem;
  }

  /* CTA */
  .cta-trust {
    flex-direction: column;
    gap: 0.5rem;
  }

  .trust-separator {
    display: none;
  }

  /* Buttons */
  .btn {
    width: 100%;
    font-size: 0.95rem;
    padding: 0.875rem 1.5rem;
  }

  .btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  /* Footer */
  .footer-grid {
    gap: var(--space-lg);
  }
}
