/* ============================================
   SOUTO CRED v2 - DESIGN SYSTEM REFEITO
   ============================================ */

:root {
  --azul-souto: #0A4D90;
  --azul-souto-rgb: 10, 77, 144;
  --branco: #FFFFFF;

  --azul-profundo: #051530;
  --azul-escuro: #081E3F;
  --azul-medio: #2E72B8;
  --azul-ceu: #5DA3E0;
  --azul-cristal: #A3D5FF;
  --azul-gelo: #EAF2FA;

  --cinza-texto: #1A1A1A;
  --cinza-medio: #6B6B6B;
  --cinza-claro: #B8B8B8;
  --cinza-fundo: #F8F9FB;

  --verde-whatsapp: #25D366;
  --verde-whatsapp-dark: #1FAD52;
  --amarelo: #F5A623;

  --shadow-sm: 0 2px 8px rgba(10, 77, 144, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 77, 144, 0.12);
  --shadow-lg: 0 16px 48px rgba(10, 77, 144, 0.18);
  --shadow-xl: 0 24px 64px rgba(10, 77, 144, 0.25);
  --shadow-glow: 0 0 40px rgba(93, 163, 224, 0.4);

  --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Poppins', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-weight: 400;
  color: var(--cinza-texto);
  background: var(--branco);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; display: block; }

.lucide {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.btn .lucide { width: 18px; height: 18px; }
.btn-large .lucide { width: 20px; height: 20px; }
.btn-huge .lucide { width: 22px; height: 22px; }
.nav-cta .lucide { width: 16px; height: 16px; }
.hero-micro .lucide { width: 14px; height: 14px; color: var(--azul-ceu); }
.stat-icon .lucide { width: 28px; height: 28px; }
.dif-icon .lucide { width: 30px; height: 30px; }
.select-wrapper .lucide { width: 20px; height: 20px; }
.stars .lucide { width: 18px; height: 18px; }
.comp-cell .lucide { width: 20px; height: 20px; }
.faq-icon { width: 24px; height: 24px; }
.footer-social .lucide { width: 18px; height: 18px; }
.footer-col li .lucide { width: 16px; height: 16px; color: var(--azul-ceu); }
.card-cta .lucide { width: 16px; height: 16px; }

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--azul-souto), var(--azul-profundo));
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; color: white; }
.loader-logo {
  width: 80px;
  height: auto;
  margin: 0 auto 24px;
  animation: pulse-scale 2s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(93,163,224,0.6));
}
.loader-text {
  font-size: 13px;
  letter-spacing: 0.3em;
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0.9;
}
.dots span { display: inline-block; animation: dot-bounce 1.4s infinite; }
.dots span:nth-child(2) { animation-delay: 0.2s; }
.dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dot-bounce {
  0%, 60%, 100% { opacity: 0.3; }
  30% { opacity: 1; }
}
@keyframes pulse-scale {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 1; }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s var(--ease-out);
}
.navbar.scrolled {
  padding: 10px 0;
  background: rgba(8, 30, 63, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  transition: opacity 0.3s;
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo-img {
  width: 38px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.nav-menu {
  display: flex;
  gap: 36px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-menu a {
  color: white;
  font-weight: 500;
  font-size: 14px;
  position: relative;
  padding: 6px 0;
  transition: opacity 0.3s;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--azul-ceu);
  transition: width 0.3s var(--ease-out);
}
.nav-menu a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--verde-whatsapp);
  color: white;
  padding: 11px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}
.nav-cta:hover {
  background: var(--verde-whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================
   BOTÕES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.35s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font);
}
.btn-primary {
  background: var(--verde-whatsapp);
  color: white;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}
.btn-primary:hover {
  background: var(--verde-whatsapp-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}
.btn-primary:hover .arrow-anim {
  transform: translateX(4px);
}
.arrow-anim { transition: transform 0.3s var(--ease-out); }

.btn-whatsapp {
  background: var(--verde-whatsapp);
  color: white;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  font-weight: 700;
}
.btn-whatsapp:hover {
  background: var(--verde-whatsapp-dark);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.6);
}
.btn-glass {
  background: rgba(255, 255, 255, 0.06);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--azul-souto);
  border: 1.5px solid var(--azul-souto);
}
.btn-outline:hover {
  background: var(--azul-souto);
  color: white;
  transform: translateY(-2px);
}
.btn-large { padding: 16px 32px; font-size: 15px; }
.btn-huge { padding: 20px 40px; font-size: 17px; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================
   HERO - CARROSSEL DE FUNDO (CARRO/MOTO/CASA)
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  padding-top: 80px;
}

/* Slideshow de fundo */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s ease-in-out, transform 8s ease-out;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Overlay para legibilidade do texto à esquerda */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3,10,26,0.95) 0%, rgba(5,21,48,0.85) 35%, rgba(5,21,48,0.4) 65%, rgba(5,21,48,0.2) 100%),
    linear-gradient(0deg, rgba(3,10,26,0.8) 0%, transparent 40%);
}

.hero-deco {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-bg-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 15% 25%, rgba(163,213,255,0.6), transparent),
    radial-gradient(1.5px 1.5px at 60% 60%, rgba(255,255,255,0.4), transparent),
    radial-gradient(2px 2px at 80% 20%, rgba(93,163,224,0.5), transparent),
    radial-gradient(1px 1px at 40% 70%, rgba(255,255,255,0.4), transparent);
  background-size: 100% 100%;
  animation: twinkle 4s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.9; }
}

.hero-container {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-left {
  max-width: 640px;
  animation: hero-fade-in 1s var(--ease-out) 0.3s both;
}
@keyframes hero-fade-in {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(10, 77, 144, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(93, 163, 224, 0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--azul-cristal);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--azul-cristal);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero-title-accent {
  background: linear-gradient(135deg, #A3D5FF 0%, #ffffff 50%, #5DA3E0 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s ease-in-out infinite;
  display: inline-block;
  padding-bottom: 0.12em;
  line-height: 1.15;
}
@keyframes shine {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 400;
  margin-bottom: 36px;
  opacity: 0.92;
  line-height: 1.65;
  max-width: 520px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-subtitle strong { color: var(--azul-cristal); font-weight: 600; }

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.arrow-anim { transition: transform 0.3s var(--ease-out); }
.btn-primary:hover .arrow-anim { transform: translateX(4px); }

.hero-micro {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  opacity: 0.8;
}
.hero-micro span { display: inline-flex; align-items: center; gap: 6px; }
.hero-micro .lucide { color: var(--azul-cristal); }

/* HUD elements */
.hud-element {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.25em;
  font-weight: 500;
  color: var(--azul-cristal);
  opacity: 0.7;
}
.hud-corner { width: 12px; height: 12px; border: 1px solid var(--azul-cristal); }
.hud-tl { top: 110px; right: 8%; }
.hud-tl .hud-corner { border-right: none; border-bottom: none; }
.hud-br { bottom: 80px; right: 5%; }
.hud-br .hud-corner { border-left: none; border-top: none; }

/* Dots do slideshow */
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dot.active {
  background: var(--azul-cristal);
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 12px var(--azul-cristal);
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  z-index: 4;
}
.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, white);
  margin: 10px auto 0;
  animation: scroll-bounce 2s infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.25em;
  font-weight: 700;
  color: var(--azul-souto);
  background: var(--azul-gelo);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-tag.light {
  color: var(--azul-cristal);
  background: rgba(163, 213, 255, 0.1);
  border: 1px solid rgba(163, 213, 255, 0.25);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--azul-escuro);
  margin-bottom: 20px;
}
.section-title.light { color: white; }
.text-accent {
  background: linear-gradient(135deg, var(--azul-souto), var(--azul-ceu));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-accent-light {
  background: linear-gradient(135deg, var(--azul-cristal), #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-subtitle {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--cinza-medio);
  line-height: 1.6;
}
.section-subtitle.light { color: rgba(255, 255, 255, 0.7); }

/* ============================================
   INTRO + STATS
   ============================================ */
.intro-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--azul-gelo) 100%);
  position: relative;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
.intro-text .section-tag { margin-bottom: 16px; }
.intro-text .section-title { text-align: left; margin-bottom: 24px; }
.intro-paragraph {
  font-size: 16px;
  color: var(--cinza-medio);
  line-height: 1.7;
  margin-bottom: 20px;
}
.intro-paragraph strong { color: var(--azul-souto); font-weight: 600; }

.intro-3d {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 400px;
}
.floating-logo-wrapper {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-logo {
  width: 100%;
  height: auto;
  animation: float-3d 6s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(10, 77, 144, 0.4));
}
/* Logo 3D vidro - efeito premium */
.floating-logo-glass {
  animation: float-glass 7s ease-in-out infinite;
  filter:
    drop-shadow(0 20px 50px rgba(10, 77, 144, 0.5))
    drop-shadow(0 0 40px rgba(93, 163, 224, 0.4));
}
@keyframes float-glass {
  0%, 100% { transform: translateY(0) rotate(-2deg) scale(1); }
  50% { transform: translateY(-24px) rotate(2deg) scale(1.02); }
}
@keyframes float-3d {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}
.floating-logo-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(93, 163, 224, 0.5) 0%, rgba(163,213,255,0.2) 40%, transparent 65%);
  filter: blur(50px);
  animation: pulse-glow 4s ease-in-out infinite;
}
.orbit-particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, var(--azul-ceu), transparent);
  border-radius: 50%;
  filter: blur(1px);
}
.orbit-particle.p1 { animation: orbit-mini 8s linear infinite; }
.orbit-particle.p2 { animation: orbit-mini 10s linear infinite reverse; }
.orbit-particle.p3 { animation: orbit-mini 6s linear infinite; animation-delay: -3s; }
@keyframes orbit-mini {
  from { transform: rotate(0deg) translateX(140px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(140px) rotate(-360deg); }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: white;
  padding: 36px 24px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease-out);
  border: 1px solid rgba(10, 77, 144, 0.06);
}
.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(10, 77, 144, 0.15);
}
.stat-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--azul-souto), var(--azul-medio));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--azul-escuro);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 13px;
  color: var(--cinza-medio);
  line-height: 1.5;
}

/* ============================================
   MODALIDADES - SLIDER COM IMAGENS REAIS
   ============================================ */
.modalidades {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--azul-escuro) 0%, var(--azul-profundo) 100%);
  position: relative;
  overflow: hidden;
}
.modalidades-bg { position: absolute; inset: 0; overflow: hidden; }
.bg-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}
.bg-gradient-orb.orb1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--azul-souto), transparent);
  top: -200px; left: -200px;
}
.bg-gradient-orb.orb2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--azul-medio), transparent);
  bottom: -150px; right: -150px;
}

/* Tabs de seleção */
.mod-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 8px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.mod-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.35s var(--ease-out);
  flex: 1;
  justify-content: center;
  white-space: nowrap;
}
.mod-tab .lucide { width: 20px; height: 20px; }
.mod-tab:hover { color: white; background: rgba(255,255,255,0.06); }
.mod-tab.active {
  background: linear-gradient(135deg, var(--azul-souto), var(--azul-medio));
  color: white;
  box-shadow: 0 8px 24px rgba(10,77,144,0.5);
}

/* Slider */
.mod-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.mod-slides {
  flex: 1;
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 28px;
}
.mod-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateX(40px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), visibility 0.6s;
}
.mod-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: relative;
}
.mod-slide-img {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  background: linear-gradient(135deg, #0a1628, #051530);
}
.mod-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 8s ease-out;
}
.mod-slide.active .mod-slide-img img {
  transform: scale(1.03);
}
/* Automóvel: imagem mais larga (carro+moto) - mostrar completa sem cortar */
.mod-slide[data-slide="0"] .mod-slide-img img {
  object-fit: contain;
  object-position: center;
}
.mod-slide[data-slide="0"] .mod-slide-img {
  background: linear-gradient(135deg, #0d1b2e, #07101f);
}
.mod-slide-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(8,30,63,0.6) 100%);
  pointer-events: none;
}

.mod-slide-info {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.mod-info-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--azul-cristal);
  margin-bottom: 14px;
}
.mod-info-tag span { color: rgba(255,255,255,0.4); font-weight: 500; }
.mod-slide-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.mod-info-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--azul-souto), var(--azul-cristal));
  border-radius: 2px;
  margin-bottom: 20px;
}
.mod-slide-info > p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
}
.mod-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mod-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.mod-feature .lucide {
  width: 18px;
  height: 18px;
  color: var(--azul-cristal);
  flex-shrink: 0;
}
.mod-info-micro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--verde-whatsapp);
}
.mod-info-micro .lucide { width: 16px; height: 16px; }

/* Setas */
.mod-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-out);
}
.mod-arrow:hover {
  background: var(--azul-souto);
  border-color: var(--azul-cristal);
  transform: scale(1.1);
}
.mod-arrow .lucide { width: 24px; height: 24px; }

/* Dots */
.mod-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.mod-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.3s;
}
.mod-dot.active {
  background: var(--azul-cristal);
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 12px var(--azul-cristal);
}

/* ============================================
   COMO FUNCIONA - ORBITAL
   ============================================ */
.como-funciona {
  padding: 120px 0;
  background: var(--cinza-fundo);
  position: relative;
  overflow: hidden;
}
.orbital-system {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 800px;
  margin: 0 auto;
}
.orbit-rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.rotating-arc {
  transform-origin: 400px 400px;
  animation: rotate-arc 8s linear infinite;
}
@keyframes rotate-arc {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.orbital-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  z-index: 2;
  background: linear-gradient(135deg, var(--azul-souto), var(--azul-medio));
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-shadow: 0 16px 48px rgba(10, 77, 144, 0.4);
}
.center-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}
.center-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(10, 77, 144, 0.4), transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
  z-index: -1;
}
.orbital-step {
  position: absolute;
  width: 280px;
  background: white;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s var(--ease-out);
  border: 1px solid rgba(10, 77, 144, 0.08);
}
.orbital-step:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--shadow-xl);
  border-color: var(--azul-souto);
}
.orbital-step.step-1 { top: 8%; left: 0; }
.orbital-step.step-2 { top: 8%; right: 0; }
.orbital-step.step-3 { bottom: 8%; left: 0; }
.orbital-step.step-4 { bottom: 8%; right: 0; }
.step-number {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--azul-souto), var(--azul-medio));
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.orbital-step h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--azul-escuro);
  margin-bottom: 8px;
}
.orbital-step p {
  font-size: 13px;
  color: var(--cinza-medio);
  line-height: 1.5;
}
.como-funciona-cta {
  text-align: center;
  margin-top: 60px;
}
.como-funciona-cta p {
  font-size: 17px;
  color: var(--azul-escuro);
  font-weight: 600;
  margin-bottom: 20px;
}

/* ============================================
   DIFERENCIAIS
   ============================================ */
.diferenciais {
  padding: 120px 0;
  background: white;
}
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.diferencial-item {
  padding: 32px 28px;
  background: linear-gradient(180deg, white 0%, var(--cinza-fundo) 100%);
  border-radius: 20px;
  border: 1px solid rgba(10, 77, 144, 0.08);
  transition: all 0.4s var(--ease-out);
}
.diferencial-item:hover {
  transform: translateY(-6px);
  border-color: var(--azul-souto);
  box-shadow: var(--shadow-lg);
}
.dif-icon {
  width: 60px;
  height: 60px;
  background: var(--azul-gelo);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--azul-souto);
  transition: all 0.4s var(--ease-bounce);
}
.diferencial-item:hover .dif-icon {
  background: var(--azul-souto);
  color: white;
  transform: scale(1.05) rotate(-5deg);
}
.diferencial-item h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--azul-escuro);
  margin-bottom: 10px;
}
.diferencial-item p {
  color: var(--cinza-medio);
  line-height: 1.6;
  font-size: 14px;
}

/* ============================================
   SIMULADOR
   ============================================ */
.simulador {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--azul-profundo) 0%, var(--azul-escuro) 50%, var(--azul-souto) 100%);
  position: relative;
  overflow: hidden;
}
.simulador-bg { position: absolute; inset: 0; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(100px); }
.orb-sim-1 {
  width: 600px;
  height: 600px;
  background: rgba(93, 163, 224, 0.3);
  top: -100px;
  right: -100px;
}
.orb-sim-2 {
  width: 500px;
  height: 500px;
  background: rgba(10, 77, 144, 0.5);
  bottom: -100px;
  left: -150px;
}
.simulador-card {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 32px;
  padding: 44px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.sim-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(93, 163, 224, 0.4), transparent, rgba(93, 163, 224, 0.4));
  border-radius: 32px;
  z-index: -1;
  opacity: 0.6;
  filter: blur(20px);
}
.simulador-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.sim-field label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-weight: 500;
  margin-bottom: 12px;
  font-size: 14px;
}
.field-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--azul-cristal);
}
.select-wrapper { position: relative; }
.select-wrapper .lucide {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--azul-cristal);
  pointer-events: none;
}
.simulador-form select {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 16px 20px;
  color: white;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s;
}
.simulador-form select:focus {
  outline: none;
  border-color: var(--azul-cristal);
  background: rgba(255, 255, 255, 0.1);
}
.simulador-form select option { background: var(--azul-escuro); color: white; }

.sim-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
}
.sim-slider::-webkit-slider-runnable-track {
  height: 6px;
  background: linear-gradient(90deg, var(--azul-cristal), rgba(255,255,255,0.15));
  border-radius: 6px;
}
.sim-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: white;
  border: 3px solid var(--azul-cristal);
  border-radius: 50%;
  margin-top: -8px;
  cursor: grab;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}
.sim-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.sim-slider::-moz-range-track {
  height: 6px;
  background: linear-gradient(90deg, var(--azul-cristal), rgba(255,255,255,0.15));
  border-radius: 6px;
}
.sim-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: white;
  border: 3px solid var(--azul-cristal);
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.slider-range {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.sim-result {
  background: linear-gradient(135deg, rgba(93, 163, 224, 0.2), rgba(10, 77, 144, 0.3));
  border: 1px solid rgba(93, 163, 224, 0.4);
  border-radius: 20px;
  padding: 26px;
  text-align: center;
}
.result-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  font-weight: 600;
}
.result-value {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, white, var(--azul-cristal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.result-note {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* ============================================
   DEPOIMENTOS
   ============================================ */
.depoimentos {
  padding: 120px 0;
  background: var(--cinza-fundo);
}
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.depoimento-card {
  background: white;
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all 0.4s var(--ease-out);
  border: 1px solid rgba(10, 77, 144, 0.06);
}
.depoimento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--amarelo);
}
.depo-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--cinza-texto);
  font-style: italic;
  margin-bottom: 22px;
}
.depo-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(10, 77, 144, 0.1);
}
.depo-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azul-souto), var(--azul-medio));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-display);
}
.depo-author strong {
  display: block;
  font-size: 14px;
  color: var(--azul-escuro);
}
.depo-author span {
  font-size: 12px;
  color: var(--cinza-medio);
}

/* ============================================
   COMPARATIVO
   ============================================ */
.comparativo {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--azul-souto), var(--azul-escuro));
  position: relative;
  overflow: hidden;
}
.comparativo-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(93, 163, 224, 0.15), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(10, 77, 144, 0.3), transparent 50%);
}
.comp-table {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
}
.comp-header, .comp-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
}
.comp-header { background: rgba(255, 255, 255, 0.04); }
.comp-cell {
  padding: 22px 26px;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.comp-row:last-child .comp-cell { border-bottom: none; }
.comp-label {
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(0, 0, 0, 0.15);
}
.comp-souto {
  background: rgba(37, 211, 102, 0.1);
  border-left: 3px solid var(--verde-whatsapp);
  font-weight: 600;
}
.comp-bank {
  background: rgba(255, 80, 80, 0.05);
  color: rgba(255,255,255,0.65);
}
.comp-pos {
  background: rgba(37, 211, 102, 0.06);
  border-left: 3px solid var(--verde-whatsapp);
}
.comp-pos .lucide { color: var(--verde-whatsapp); flex-shrink: 0; }
.comp-neg { color: rgba(255,255,255,0.65); }
.comp-neg .lucide { color: #ff6b6b; flex-shrink: 0; opacity: 0.7; }
.comp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
}
.comp-logo {
  width: 28px;
  height: auto;
}
.comp-cta {
  text-align: center;
  margin-top: 56px;
  color: white;
}
.comp-cta p {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  font-family: var(--font-display);
}

/* ============================================
   FAQ
   ============================================ */
.faq { padding: 120px 0; background: white; }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border: 1px solid rgba(10, 77, 144, 0.1);
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
}
.faq-item[open] {
  border-color: var(--azul-souto);
  box-shadow: var(--shadow-md);
}
.faq-item summary {
  padding: 22px 26px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  list-style: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--azul-escuro);
  transition: background 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--cinza-fundo); }
.faq-icon {
  color: var(--azul-souto);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 26px 22px; }
.faq-answer p {
  color: var(--cinza-medio);
  line-height: 1.7;
  font-size: 14px;
}
.faq-answer strong { color: var(--azul-souto); font-weight: 600; }

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  padding: 140px 0;
  background: linear-gradient(135deg, var(--azul-souto) 0%, var(--azul-profundo) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  color: white;
}
.cta-final-bg { position: absolute; inset: 0; }
.stars-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 15% 25%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 50% 60%, rgba(255,255,255,0.8), transparent),
    radial-gradient(2.5px 2.5px at 85% 35%, rgba(93,163,224,0.8), transparent),
    radial-gradient(1.5px 1.5px at 25% 80%, rgba(255,255,255,0.5), transparent),
    radial-gradient(2px 2px at 70% 90%, rgba(93,163,224,0.7), transparent),
    radial-gradient(1px 1px at 10% 55%, rgba(255,255,255,0.6), transparent);
  background-size: 100% 100%;
  animation: twinkle 4s ease-in-out infinite;
}
.cta-final-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.cta-final-logo {
  width: 80px;
  height: auto;
  margin: 0 auto 28px;
  filter: drop-shadow(0 0 30px rgba(93, 163, 224, 0.6));
  animation: float-3d 6s ease-in-out infinite;
}
.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.cta-final p {
  font-size: 17px;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 36px;
}
.cta-micro {
  margin-top: 22px !important;
  font-size: 12px !important;
  opacity: 0.6 !important;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--azul-profundo);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 18px;
  letter-spacing: 0.1em;
}
.footer-logo img { width: 36px; height: auto; }
.footer-desc {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.6);
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s var(--ease-out);
}
.footer-social a:hover {
  background: var(--azul-souto);
  border-color: var(--azul-ceu);
  transform: translateY(-3px);
}
.footer-col h4 {
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col li {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-col a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.footer-col a:hover { color: white; }
.footer-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-top: 14px;
}
.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--verde-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: transform 0.3s var(--ease-bounce);
}
.whatsapp-float:hover { transform: scale(1.1) rotate(-5deg); }
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 2;
}
.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--verde-whatsapp);
  animation: whatsapp-pulse 2s ease-out infinite;
}
@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ============================================
   REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 1024px) {
  .hero-left { max-width: 100%; }

  .intro-grid { grid-template-columns: 1fr; gap: 60px; }
  .intro-text .section-title { text-align: center; }
  .intro-text { text-align: center; }
  .intro-3d { order: -1; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .depoimentos-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .orbital-system { height: 700px; max-width: 700px; }
  .orbital-step { width: 240px; padding: 20px; }

  /* Modalidades: imagem em cima, info embaixo */
  .mod-slide { grid-template-columns: 1fr; }
  .mod-slide-img { min-height: 280px; }
  .mod-slides { min-height: 0; }
  .mod-slide:not(.active) { display: none; }
  .mod-tab span { display: none; }
  .mod-tab { padding: 14px; flex: 0 0 auto; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(8, 30, 63, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    border-top: 1px solid rgba(255,255,255,0.1);
    height: calc(100vh - 70px);
  }
  .nav-menu.active { transform: translateX(0); }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }

  .intro-section, .modalidades, .como-funciona,
  .diferenciais, .simulador, .depoimentos,
  .comparativo, .faq, .cta-final {
    padding: 80px 0;
  }
  .section-header { margin-bottom: 48px; }

  .hero-cta-group { flex-direction: column; width: 100%; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
  .hud-element { display: none; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-card { padding: 24px 16px; }
  .stat-number { font-size: 26px; }
  .diferenciais-grid { grid-template-columns: 1fr; }

  /* Modalidades mobile */
  .mod-tabs {
    border-radius: 20px;
    flex-wrap: wrap;
  }
  .mod-tab { flex: 1 1 40%; }
  .mod-tab span { display: inline; font-size: 13px; }
  .mod-slide-info { padding: 28px 24px; }
  .mod-features { grid-template-columns: 1fr; gap: 12px; }
  .mod-arrow { width: 44px; height: 44px; }
  .mod-slider { gap: 8px; }

  .orbital-system { height: auto; max-width: 100%; }
  .orbit-rings, .orbital-center { display: none; }
  .orbital-step {
    position: relative;
    top: auto; bottom: auto; left: auto; right: auto;
    width: 100%;
    margin-bottom: 16px;
  }

  .simulador-card { padding: 32px 22px; }
  .result-value { font-size: 36px; }

  .comp-header { display: none; }
  .comp-row {
    grid-template-columns: 1fr;
    padding: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .comp-row:last-child { border-bottom: none; }
  .comp-cell {
    padding: 10px 0;
    border-bottom: none;
  }
  .comp-label {
    background: transparent;
    padding: 0;
    margin-bottom: 8px;
  }
  .comp-pos, .comp-bank {
    background: transparent;
    border-left: none;
    padding-left: 0;
  }
  .comp-pos { border-left: 3px solid var(--verde-whatsapp); padding-left: 12px; }
  .comp-neg { border-left: 3px solid rgba(255,107,107,0.5); padding-left: 12px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .whatsapp-float { width: 54px; height: 54px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 0.9rem; }
  .hero-micro { font-size: 11px; gap: 12px; }
  .btn-large { padding: 14px 24px; font-size: 13px; }
  .btn-huge { padding: 18px 32px; font-size: 15px; }
  .nav-logo span { display: none; }
  .simulador-card { padding: 24px 16px; }
  .stat-card { padding: 20px 12px; }
  .stat-number { font-size: 22px; }
  .stat-label { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
