/* ==========================================================================
   RASTREIA MAIS - DESIGN SYSTEM & ESTILOS GLOBAIS DE ALTA CONVERSÃO
   ========================================================================== */

:root {
  --bg-main: #06080d;
  --bg-surface: #0c1018;
  --bg-card: rgba(16, 22, 34, 0.72);
  --bg-card-hover: rgba(22, 30, 48, 0.85);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(0, 210, 255, 0.5);
  
  --brand-cyan: #00d2ff;
  --brand-cyan-glow: rgba(0, 210, 255, 0.35);
  --brand-pink: #ff2d55;
  --brand-pink-glow: rgba(255, 45, 85, 0.45);
  --brand-purple: #8b5cf6;
  --brand-emerald: #10b981;
  --brand-amber: #f59e0b;

  --text-pure: #ffffff;
  --text-body: #94a3b8;
  --text-muted: #64748b;
  --text-dim: #475569;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.08);
  --shadow-glow-cyan: 0 0 40px rgba(0, 210, 255, 0.25);
  --shadow-glow-pink: 0 0 40px rgba(255, 45, 85, 0.35);
}

/* Reset Básico */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-pure);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background Dinâmico e Efeito Glow */
.glow-backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb-1 {
  position: absolute;
  width: 650px;
  height: 650px;
  top: -150px;
  left: 20%;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  animation: floatOrb 20s infinite alternate ease-in-out;
}

.glow-orb-2 {
  position: absolute;
  width: 550px;
  height: 550px;
  top: 40%;
  right: -100px;
  background: radial-gradient(circle, rgba(255, 45, 85, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  animation: floatOrb 25s infinite alternate-reverse ease-in-out;
}

.glow-orb-3 {
  position: absolute;
  width: 700px;
  height: 700px;
  bottom: 5%;
  left: -150px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(100px);
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.1); }
}

/* Container Responsivo */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Tipografia */
h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  color: var(--text-pure);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

p {
  color: var(--text-body);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Utilitários Visuais */
.text-cyan { color: var(--brand-cyan) !important; }
.text-pink { color: var(--brand-pink) !important; }
.text-emerald { color: var(--brand-emerald) !important; }
.text-white { color: var(--text-pure) !important; }

.gradient-text-cyan {
  background: linear-gradient(135deg, #ffffff 20%, var(--brand-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-pink {
  background: linear-gradient(135deg, #ffffff 20%, var(--brand-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(0, 210, 255, 0.08);
  border: 1px solid rgba(0, 210, 255, 0.25);
  color: var(--brand-cyan);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.15);
}

.badge-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--brand-cyan);
  box-shadow: 0 0 10px var(--brand-cyan);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.4); opacity: 1; box-shadow: 0 0 14px var(--brand-cyan); }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* Glass Panels */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 210, 255, 0.1);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  white-space: nowrap;
}

.btn-pink {
  background: linear-gradient(135deg, var(--brand-pink) 0%, #e01d43 100%);
  color: var(--text-pure);
  box-shadow: 0 8px 25px rgba(255, 45, 85, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-pink:hover {
  background: linear-gradient(135deg, #ff476c 0%, #eb264c 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 35px rgba(255, 45, 85, 0.55);
}

.btn-cyan {
  background: linear-gradient(135deg, var(--brand-cyan) 0%, #0099c6 100%);
  color: #06080d;
  font-weight: 800;
  box-shadow: 0 8px 25px rgba(0, 210, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-cyan:hover {
  background: linear-gradient(135deg, #33dcff 0%, #00b0e3 100%);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 210, 255, 0.5);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-pure);
  border: 1px solid var(--border-subtle);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* ==========================================================================
   HEADER / NAVEGAÇÃO
   ========================================================================== */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: rgba(6, 8, 13, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.site-header.scrolled {
  padding: 10px 0;
  background: rgba(6, 8, 13, 0.95);
  border-bottom-color: rgba(0, 210, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 210, 255, 0.4));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-body);
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover {
  color: var(--text-pure);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-cyan);
  transition: width 0.25s ease;
  box-shadow: 0 0 8px var(--brand-cyan);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-pure);
  font-size: 1.8rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 150px 0 90px;
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.3rem, 4.2vw, 3.8rem);
  font-weight: 900;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-content p.hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f1f5f9;
}

.hero-badge-item i {
  color: var(--brand-cyan);
  font-size: 1.25rem;
  filter: drop-shadow(0 0 6px rgba(0, 210, 255, 0.4));
}

/* Formulário de Conversão Rápida Hero */
.hero-quote-card {
  background: rgba(16, 22, 34, 0.85);
  border: 1px solid rgba(0, 210, 255, 0.25);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 210, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
}

.hero-quote-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-cyan), var(--brand-pink), transparent);
}

.hero-quote-card h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.hero-quote-card p.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Mockup Visual 3D do App */
.mockup-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup-frame {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 44px;
  border: 10px solid #1c2436;
  background: #000;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.9), 0 0 60px rgba(0, 210, 255, 0.2);
  overflow: hidden;
  position: relative;
  aspect-ratio: 9 / 19.5;
}

.phone-mockup-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Badges Flutuantes no Mockup */
.floating-status-badge {
  position: absolute;
  background: rgba(12, 16, 24, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  z-index: 10;
  animation: floatBadge 6s infinite ease-in-out alternate;
}

.badge-pos-left {
  top: 25%;
  left: -20px;
}

.badge-pos-right {
  bottom: 20%;
  right: -20px;
  animation-delay: -3s;
}

@keyframes floatBadge {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

.floating-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.icon-cyan {
  background: rgba(0, 210, 255, 0.15);
  color: var(--brand-cyan);
}

.icon-pink {
  background: rgba(255, 45, 85, 0.15);
  color: var(--brand-pink);
}

.floating-info h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.floating-info span {
  font-size: 0.75rem;
  color: var(--brand-emerald);
  font-weight: 600;
}

/* ==========================================================================
   METRICS BAR
   ========================================================================== */
.metrics-section {
  padding: 40px 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(12, 16, 24, 0.6);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.metric-item h3 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.metric-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   SEÇÕES GERAIS
   ========================================================================== */
section.section-space {
  padding: 110px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-bottom: 18px;
}

.section-header p {
  font-size: 1.075rem;
  color: var(--text-body);
}

/* ==========================================================================
   BENTO GRID DE FUNCIONALIDADES
   ========================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bento-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius-xl);
}

.bento-col-2 {
  grid-column: span 2;
}

.bento-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--brand-cyan);
  margin-bottom: 24px;
}

.bento-card h4 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.bento-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bento-preview-img {
  width: 100%;
  margin-top: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bento-preview-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   SIMULADOR & CALCULADORA INTERATIVA
   ========================================================================== */
.calculator-wrap {
  background: linear-gradient(135deg, rgba(16, 22, 34, 0.95) 0%, rgba(12, 16, 24, 0.95) 100%);
  border: 1px solid rgba(0, 210, 255, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 60px rgba(0, 210, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.calc-step-title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-cyan);
  margin-bottom: 14px;
}

.vehicle-selector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.vehicle-opt-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vehicle-opt-btn i {
  font-size: 1.8rem;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.vehicle-opt-btn span {
  font-size: 0.85rem;
  font-weight: 700;
  color: #cbd5e1;
}

.vehicle-opt-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.vehicle-opt-btn.active {
  background: rgba(0, 210, 255, 0.12);
  border-color: var(--brand-cyan);
  box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
}

.vehicle-opt-btn.active i {
  color: var(--brand-cyan);
}

.vehicle-opt-btn.active span {
  color: #fff;
}

/* Sliders e Toggles */
.calc-field-group {
  margin-bottom: 28px;
}

.calc-field-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.calc-field-label span.value-pill {
  background: rgba(0, 210, 255, 0.15);
  color: var(--brand-cyan);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-weight: 800;
}

input[type="range"].calc-range {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  -webkit-appearance: none;
}

input[type="range"].calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-cyan);
  cursor: pointer;
  box-shadow: 0 0 12px var(--brand-cyan);
  border: 2px solid #fff;
  transition: transform 0.15s ease;
}

input[type="range"].calc-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* Toggle Switch */
.toggle-switch-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
}

.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.15);
  transition: .3s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--brand-cyan);
  box-shadow: 0 0 15px var(--brand-cyan);
}

input:checked + .slider:before {
  transform: translateX(24px);
  background-color: #06080d;
}

/* Card de Resultado da Calculadora */
.calc-result-box {
  background: rgba(8, 11, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.calc-result-box::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.calc-result-box h4 {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.calc-price-display {
  font-size: 3.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.calc-price-display small {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 600;
}

.calc-adesao-info {
  font-size: 0.95rem;
  color: var(--brand-cyan);
  margin-bottom: 24px;
  font-weight: 700;
}

.calc-features-list {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.calc-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #cbd5e1;
  margin-bottom: 10px;
}

.calc-features-list li i {
  color: var(--brand-emerald);
  font-size: 1.1rem;
}

/* ==========================================================================
   TABELA COMPARATIVA
   ========================================================================== */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

table.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

table.compare-table th,
table.compare-table td {
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

table.compare-table th {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
}

table.compare-table th.highlight-col {
  background: rgba(0, 210, 255, 0.1);
  color: var(--brand-cyan);
  border-left: 1px solid rgba(0, 210, 255, 0.3);
  border-right: 1px solid rgba(0, 210, 255, 0.3);
}

table.compare-table td.highlight-col {
  background: rgba(0, 210, 255, 0.03);
  border-left: 1px solid rgba(0, 210, 255, 0.2);
  border-right: 1px solid rgba(0, 210, 255, 0.2);
}

/* ==========================================================================
   DEPOIMENTOS & PROVA SOCIAL
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  padding: 36px 30px;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars-row {
  display: flex;
  gap: 4px;
  color: #f59e0b;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #cbd5e1;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #06080d;
  font-size: 1.1rem;
}

.author-meta h5 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 2px;
}

.author-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-question i {
  font-size: 1.25rem;
  color: var(--brand-cyan);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 28px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.7;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer.site-footer {
  background: #040508;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 35px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 320px;
}

.footer-col h5 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--brand-cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ==========================================================================
   FLOATING WHATSAPP & MODAL
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-bubble {
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.65);
}

.whatsapp-tooltip {
  background: rgba(12, 16, 24, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: fadeInTooltip 0.5s ease;
}

@keyframes fadeInTooltip {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Form Inputs Globais */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #cbd5e1;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: rgba(6, 8, 13, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.95rem;
  color: #fff;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  border-color: var(--brand-cyan);
  box-shadow: 0 0 0 3px rgba(0, 210, 255, 0.2);
}

/* ==========================================================================
   RESPONSIVIDADE (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .hero-content p.hero-desc {
    margin: 0 auto 36px;
  }
  
  .hero-badges-row {
    justify-content: center;
  }

  .calc-grid {
    grid-template-columns: 1fr;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
  }
  
  .bento-col-2 {
    grid-column: span 1;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-section {
    padding-top: 110px;
  }

  .vehicle-selector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  
  .floating-status-badge {
    display: none;
  }
}
