/* ============================================================
   SANTA PROTEÇÃO VEICULAR — styles-v2.css (Design System V2)
   ============================================================ */

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

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

:root {
  /* Cores HSL */
  --bg:           hsl(0, 0%, 4%);
  --surface:      hsl(0, 0%, 7%);
  --surface-2:    hsl(0, 0%, 11%);
  --surface-3:    hsl(0, 0%, 15%);
  --primary:      hsl(0, 85%, 48%);
  --primary-light:hsl(0, 95%, 58%);
  --primary-dark: hsl(0, 90%, 30%);
  --accent:       hsl(38, 92%, 52%);
  --accent-light: hsl(38, 95%, 62%);
  --success:      hsl(142, 70%, 45%);
  --success-light:hsl(142, 76%, 53%);
  --text:         hsl(0, 0%, 98%);
  --text-muted:   hsl(0, 0%, 72%);
  --text-dim:     hsl(0, 0%, 55%);
  --white:        #ffffff;
  
  /* Fontes */
  --font-title:   'Sora', sans-serif;
  --font-body:    'Inter', sans-serif;
  
  /* Efeitos */
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-full:  999px;
  --shadow-lg:    0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow:  0 0 30px rgba(212, 0, 0, 0.2);
  --shadow-green: 0 0 30px rgba(37, 211, 102, 0.25);
  --transition:   all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

button, input, select {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
}

/* ---------- SCROLLBAR PERSONALIZADA ---------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--surface-3);
  border-radius: var(--radius-full);
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* ---------- GRID & CONTAINER ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- EFEITOS AURORA DE BACKGROUND ---------- */
.aurora-bg {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(212, 0, 0, 0.15) 0%, rgba(212, 0, 0, 0) 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.aurora-1 { top: -200px; right: -200px; }
.aurora-2 { bottom: 20%; left: -300px; background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, rgba(245, 166, 35, 0) 70%); }
.aurora-3 { bottom: -100px; right: -200px; }

/* ---------- COMPONENTES REUTILIZÁVEIS ---------- */
.section-tag-v2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 0, 0, 0.08);
  border: 1px solid rgba(212, 0, 0, 0.3);
  color: var(--primary-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

.section-tag-v2::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--primary-light);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary-light);
}

.btn-whatsapp-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--success), var(--success-light));
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-green);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-whatsapp-v2::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-25deg);
  transition: 0.75s;
}

.btn-whatsapp-v2:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp-v2:hover::before {
  left: 150%;
}

.btn-whatsapp-v2 svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.btn-secondary-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px 30px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary-v2:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-secondary-v2 svg {
  transition: transform 0.3s ease;
}

.btn-secondary-v2:hover svg {
  transform: translateY(3px);
}

/* ============================================================
   NAVBAR (V2 Glassmorphism)
   ============================================================ */
.navbar-v2 {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(4, 4, 4, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.navbar-v2.scrolled {
  padding: 12px 0;
  background: rgba(4, 4, 4, 0.85);
  border-bottom: 1px solid rgba(212, 0, 0, 0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.navbar-v2 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-v2 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.logo-text-v2 {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-subtitle {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links-v2 {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links-v2 a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-links-v2 a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--primary-light);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.nav-links-v2 a:hover {
  color: var(--white);
}

.nav-links-v2 a:hover::after {
  width: 100%;
}

.nav-btn-wa-v2 {
  background: linear-gradient(135deg, var(--success), var(--success-light));
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-green);
  transition: var(--transition);
}

.nav-btn-wa-v2:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.nav-btn-wa-v2 svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.nav-hamburger-v2 {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-hamburger-v2 span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--white);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

/* Hamburger Active State */
.nav-hamburger-v2.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-hamburger-v2.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger-v2.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================================
   HERO SECTION (V2 Ultra Premium com Simulador)
   ============================================================ */
.hero-v2 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
  background-color: var(--bg);
}

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

.hero-v2 .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
}

.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  width: fit-content;
}

.hero-stars {
  color: var(--accent);
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.hero-rating-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-v2 h1 {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-v2 h1 span.gradient-text {
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-v2 p.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-v2 p.hero-subtitle strong {
  color: var(--white);
}

.hero-trust-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-bullet svg {
  width: 18px;
  height: 18px;
  color: var(--success);
}

/* Hero Simulador Card */
.hero-simulador-card {
  background: rgba(18, 18, 18, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-lg), rgba(212, 0, 0, 0.05) 0px 0px 40px;
  position: relative;
  overflow: hidden;
}

.hero-simulador-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% 100%;
  animation: glow-bar 4s linear infinite;
}

@keyframes glow-bar {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.simulador-header {
  margin-bottom: 24px;
}

.simulador-header h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.simulador-header p {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.simulador-vehicle-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.selector-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.selector-option .option-icon {
  font-size: 1.8rem;
  transition: transform 0.2s ease;
}

.selector-option span.option-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
}

.selector-option:hover {
  background: var(--surface-2);
  border-color: rgba(255, 255, 255, 0.15);
}

.selector-option:hover .option-icon {
  transform: scale(1.1);
}

.selector-option.active {
  background: rgba(212, 0, 0, 0.08);
  border-color: var(--primary-light);
  box-shadow: 0 0 15px rgba(212, 0, 0, 0.2);
}

.selector-option.active span.option-label {
  color: var(--white);
}

.simulador-input-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.input-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.input-field input {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.input-field input:focus {
  outline: none;
  border-color: var(--primary-light);
  background: var(--surface-2);
  box-shadow: 0 0 10px rgba(212, 0, 0, 0.15);
}

.simulador-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 14px;
}

/* ============================================================
   TRUST BAR (V2 Barra com Gradiente)
   ============================================================ */
.trust-bar-v2 {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-dark));
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 20;
}

.trust-bar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.trust-bar-card {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-bar-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
}

.trust-bar-icon-wrapper svg,
.trust-bar-icon-wrapper img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.trust-bar-info {
  display: flex;
  flex-direction: column;
}

.trust-bar-title {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
}

.trust-bar-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   STATS / SOlIDEZ (V2 Cards Premium)
   ============================================================ */
.stats-v2 {
  padding: 100px 0;
  position: relative;
  background-color: var(--surface);
}

.section-header-v2 {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-v2 h2 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-header-v2 h2 span.highlight {
  color: var(--primary-light);
}

.section-header-v2 p.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.stats-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.stat-card-v2 {
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 50%, rgba(212,0,0,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.stat-card-v2:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 0, 0, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.stat-icon-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(212, 0, 0, 0.06);
  border: 1px solid rgba(212, 0, 0, 0.15);
  border-radius: 16px;
  margin-bottom: 20px;
  color: var(--primary-light);
  transition: var(--transition);
}

.stat-card-v2:hover .stat-icon-v2 {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(212, 0, 0, 0.35);
  transform: scale(1.05);
}

.stat-icon-v2 svg {
  width: 24px;
  height: 24px;
}

.stat-number-v2 {
  font-family: var(--font-title);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(180deg, var(--white), var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label-v2 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Selos de Credibilidade */
.credibilidade-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.cred-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.cred-badge svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

/* ============================================================
   BENEFÍCIOS / PROTEÇÕES (V2 Grid Premium com SVGs)
   ============================================================ */
.beneficios-v2 {
  padding: 100px 0;
  position: relative;
  background-color: var(--bg);
}

.beneficios-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-card-v2 {
  background: linear-gradient(135deg, var(--surface), rgba(10, 10, 10, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.benefit-card-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.benefit-card-v2:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 0, 0, 0.3);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.benefit-badge-v2 {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(212, 0, 0, 0.08);
  border: 1px solid rgba(212, 0, 0, 0.25);
  color: var(--primary-light);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.benefit-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  margin-bottom: 24px;
  color: var(--primary-light);
  transition: var(--transition);
}

.benefit-card-v2:hover .benefit-icon-wrapper {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 20px rgba(212, 0, 0, 0.35);
  transform: scale(1.05);
}

.benefit-icon-wrapper svg {
  width: 26px;
  height: 26px;
}

.benefit-card-v2 h3 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.benefit-card-v2 p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   CALCULADORA DE PROTEÇÃO DINÂMICA
   ============================================================ */
.calculadora-v2 {
  padding: 100px 0;
  background: var(--surface);
  position: relative;
}

.calculadora-card {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.calc-options-side h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  border-bottom: 1.5px solid rgba(255,255,255,0.06);
  padding-bottom: 12px;
}

.calc-checkboxes-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calc-checkbox-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
}

.calc-checkbox-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--surface-3);
}

.calc-checkbox-item.checked {
  border-color: var(--primary-light);
  background: rgba(212, 0, 0, 0.04);
}

.calc-custom-check {
  width: 22px;
  height: 22px;
  border: 2px solid var(--text-dim);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: var(--white);
  flex-shrink: 0;
}

.calc-custom-check svg {
  width: 14px;
  height: 14px;
  display: none;
}

.calc-checkbox-item.checked .calc-custom-check {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
}

.calc-checkbox-item.checked .calc-custom-check svg {
  display: block;
}

.calc-item-info {
  display: flex;
  flex-direction: column;
}

.calc-item-title {
  font-size: 0.92rem;
  font-weight: 700;
}

.calc-item-desc {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* Result Side */
.calc-result-side {
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  position: relative;
}

.calc-result-header h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.calc-result-header p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.calc-progress-container {
  margin: 24px 0;
}

.calc-progress-bar-bg {
  height: 8px;
  background: var(--surface-3);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 10px;
}

.calc-progress-bar-fill {
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
}

.calc-progress-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.calc-result-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-result-note {
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* ============================================================
   COMPARAÇÃO (V2 Tabela Contrastante Premium)
   ============================================================ */
.comparativo-v2 {
  padding: 100px 0;
  background: var(--bg);
}

.comparativo-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 30px;
  align-items: center;
}

.comp-card-v2 {
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

.comp-card-v2.them {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0.85;
}

.comp-card-v2.us {
  background: linear-gradient(135deg, rgba(20, 10, 10, 0.9), rgba(10, 10, 10, 0.95));
  border: 1.5px solid var(--primary-light);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.comp-card-v2.us::before {
  content: 'MAIS VANTAJOSO';
  position: absolute;
  top: 25px; right: -35px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 35px;
  transform: rotate(45deg);
}

.comp-header-v2 {
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 18px;
}

.comp-badge-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.comp-card-v2.them .comp-badge-v2 {
  background: rgba(255, 255, 255, 0.04);
}

.comp-card-v2.us .comp-badge-v2 {
  background: rgba(212, 0, 0, 0.1);
  color: var(--primary-light);
  box-shadow: 0 0 10px rgba(212, 0, 0, 0.25);
}

.comp-header-v2 h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.comp-header-v2 p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.comp-items-v2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comp-item-v2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.comp-icon-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}

.comp-card-v2.them .comp-icon-indicator {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.comp-card-v2.us .comp-icon-indicator {
  background: rgba(74, 222, 128, 0.1);
  color: var(--success);
}

.comp-icon-indicator svg {
  width: 12px;
  height: 12px;
  stroke-width: 3px;
}

/* ============================================================
   DEPOIMENTOS / PROVA SOCIAL (V2 Carrossel Premium)
   ============================================================ */
.depoimentos-v2 {
  padding: 100px 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.testimonials-viewport-v2 {
  overflow: hidden;
  margin-bottom: 40px;
}

.testimonials-track-v2 {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-slide-v2 {
  min-width: 100%;
}

.testimonial-slide-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* WhatsApp Print Card Estilo */
.whatsapp-print-card {
  background: #0b141a; /* Cor real fundo chat escuro WhatsApp */
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.wa-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.wa-profile-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-avatar-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.wa-profile-text h5 {
  font-size: 0.85rem;
  font-weight: 700;
}

.wa-profile-text span {
  font-size: 0.7rem;
  color: var(--success);
  font-weight: 500;
}

.wa-app-logo {
  color: var(--success);
}

.wa-app-logo svg {
  width: 20px;
  height: 20px;
}

.wa-messages-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.wa-msg-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.8rem;
  line-height: 1.4;
  position: relative;
}

.wa-msg-bubble.received {
  background: #202c33;
  color: var(--text);
  align-self: flex-start;
  border-top-left-radius: 0;
}

.wa-msg-bubble.sent {
  background: #005c4b; /* Fundo verde WhatsApp para msg enviada */
  color: var(--white);
  align-self: flex-end;
  border-top-right-radius: 0;
}

.wa-msg-time {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: right;
  display: block;
  margin-top: 4px;
}

/* Depoimento Card Clássico V2 */
.testimonial-card-v2 {
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.test-header-v2 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.test-avatar-v2 {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
}

.test-info-v2 h5 {
  font-family: var(--font-title);
  font-size: 0.92rem;
  font-weight: 700;
}

.test-info-v2 span {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.test-stars-v2 {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.test-body-v2 p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

/* Controles do Carrossel */
.carousel-controls-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.carousel-btn-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-btn-v2:hover {
  background: var(--surface-3);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--primary-light);
}

.carousel-btn-v2 svg {
  width: 20px;
  height: 20px;
}

.carousel-dots-v2 {
  display: flex;
  gap: 8px;
}

.carousel-dot-v2 {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
}

.carousel-dot-v2.active {
  width: 24px;
  background: var(--primary-light);
  border-radius: var(--radius-full);
}

/* ============================================================
   QUEM SOMOS (V2 Institucional)
   ============================================================ */
.quem-somos-v2 {
  padding: 100px 0;
  background: var(--bg);
}

.about-grid-v2 {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

/* About Visual Side */
.about-visual-side {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-shield-box {
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  border: 1.5px solid rgba(212, 0, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  width: 100%;
  max-width: 440px;
  position: relative;
  text-align: center;
  z-index: 10;
}

.about-shield-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.about-shield-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  background: var(--white);
  border-radius: 20px;
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 24px;
  box-shadow: 0 8px 25px rgba(212, 0, 0, 0.35);
}

.about-shield-icon svg,
.about-shield-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.about-shield-box h3 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.about-shield-box p.about-sub {
  color: var(--accent-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-shield-box p.about-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.about-features-flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.about-feat-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
}

.about-feat-item svg {
  width: 12px;
  height: 12px;
  color: var(--primary-light);
}

/* About Content Side */
.about-content-side p.paragraph-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-values-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.about-value-item {
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.about-value-item:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.about-val-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(212, 0, 0, 0.05);
  border-radius: 12px;
  color: var(--primary-light);
  flex-shrink: 0;
}

.about-val-icon-box svg {
  width: 20px;
  height: 20px;
}

.about-val-text-box h4 {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-val-text-box p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   FAQ (V2 Acordeão Suave com Transições)
   ============================================================ */
.faq-v2 {
  padding: 100px 0;
  background: var(--surface);
}

.faq-wrapper-v2 {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item-v2 {
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item-v2:hover {
  border-color: rgba(212, 0, 0, 0.2);
}

.faq-question-v2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  user-select: none;
}

.faq-question-title-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-q-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  font-size: 1.1rem;
}

.faq-question-title-box span {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
}

.faq-toggle-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  transition: var(--transition);
}

.faq-toggle-v2 svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

/* FAQ Active State */
.faq-item-v2.open {
  border-color: rgba(212, 0, 0, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.faq-item-v2.open .faq-toggle-v2 {
  background-color: var(--primary);
  color: var(--white);
}

.faq-item-v2.open .faq-toggle-v2 svg {
  transform: rotate(45deg);
}

/* Acordeão Content com Transition de Altura */
.faq-answer-v2 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-answer-inner-v2 {
  padding: 0 24px 24px 70px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 16px;
}

.faq-answer-inner-v2 strong {
  color: var(--white);
}

/* ============================================================
   FINAL CTA (V2 Mesh Background)
   ============================================================ */
.final-cta-v2 {
  padding: 120px 0;
  position: relative;
  background-color: var(--bg);
  text-align: center;
  overflow: hidden;
}

.final-cta-mesh {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 120%, rgba(212, 0, 0, 0.25) 0%, transparent 60%),
    radial-gradient(circle at 10% 20%, rgba(245, 166, 35, 0.05) 0%, transparent 40%);
  z-index: 1;
}

.final-cta-v2 .container {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.final-cta-v2 h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}

.final-cta-v2 p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 36px;
}

.final-cta-notes {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 18px;
  font-size: 0.75rem;
  color: var(--text-dim);
}


/* ============================================================
   FOOTER V2
   ============================================================ */
.footer-v2 {
  background-color: var(--surface);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 40px;
  position: relative;
  z-index: 10;
}

.footer-grid-v2 {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-v2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-v2 p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-logo-img {
  display: block;
  max-width: 180px;
  height: auto;
}

.footer-socials-v2 {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-btn-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.social-btn-v2:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.social-btn-v2 svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-links-col-v2 h4 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--white);
  position: relative;
}

.footer-links-menu-v2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-menu-v2 a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links-menu-v2 a:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

.footer-contact-info-list-v2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-card-v2 {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-icon-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(212, 0, 0, 0.06);
  border: 1px solid rgba(212, 0, 0, 0.15);
  border-radius: 8px;
  color: var(--primary-light);
}

.footer-contact-text-v2 h5 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.footer-contact-text-v2 a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition-fast);
}

.footer-contact-text-v2 a:hover {
  color: var(--primary-light);
}

.footer-bottom-v2 {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.footer-bottom-info-v2 {
  max-width: 700px;
}

.footer-bottom-links-v2 {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
}

.footer-bottom-links-v2 a {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: underline;
  transition: var(--transition-fast);
}

.footer-bottom-links-v2 a:hover {
  color: var(--white);
}

.footer-bottom-info-v2 p {
  color: var(--text-dim);
  font-size: 0.78rem;
  line-height: 1.6;
}

.footer-seals-row-v2 {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-seal-item-v2 {
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   WHATSAPP FLOAT & TOOLTIP (V2)
   ============================================================ */
.whatsapp-float-v2 {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.whatsapp-tooltip-v2 {
  background: #202c33;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  position: relative;
  animation: float-tooltip 4s ease-in-out infinite;
  display: none;
  white-space: nowrap;
}

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

.whatsapp-tooltip-v2::after {
  content: '';
  position: absolute;
  bottom: -6px; right: 22px;
  width: 10px;
  height: 10px;
  background: #202c33;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
}

.whatsapp-float-btn-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--success), var(--success-light));
  color: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-green), 0 10px 25px rgba(0,0,0,0.4);
  transition: var(--transition);
  animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 10px 25px rgba(0,0,0,0.3); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0 10px 25px rgba(0,0,0,0.3); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 10px 25px rgba(0,0,0,0.3); }
}

.whatsapp-float-btn-v2:hover {
  transform: scale(1.08) rotate(8deg);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float-btn-v2 svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* ============================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ============================================================ */

@media (max-width: 1024px) {
  /* Global */
  html { font-size: 15px; }
  
  /* Hero */
  .hero-v2 .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-text-col {
    text-align: center;
    align-items: center;
  }
  .hero-v2 p.hero-subtitle {
    margin: 0 auto 30px;
  }
  .hero-simulador-card {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  
  /* Stats */
  .stats-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  /* Benefícios */
  .beneficios-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  /* Calculadora */
  .calculadora-card {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }
  
  /* Comparativo */
  .comparativo-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 500px;
  }
  
  /* Depoimentos */
  .testimonial-slide-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .testimonial-slide-grid-v2 .testimonial-card-v2:nth-child(3) {
    display: none; /* Oculta o 3º no tablet para melhor grid */
  }
  
  /* Quem Somos */
  .about-grid-v2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual-side {
    order: 2;
  }
  .about-content-side {
    text-align: center;
  }
  .about-value-item {
    text-align: left;
  }
}

@media (max-width: 768px) {
  /* Navbar */
  .nav-links-v2 {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 40px;
    gap: 30px;
    transition: var(--transition);
  }
  
  .nav-links-v2.open {
    right: 0;
  }
  
  .nav-hamburger-v2 {
    display: flex;
    z-index: 1001;
  }
  
  .nav-btn-wa-v2 {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
  
  /* Trust Bar */
  .trust-bar-wrapper {
    justify-content: center;
  }
  .trust-bar-divider-v2 {
    display: none;
  }
  
  /* Footer */
  .footer-grid-v2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom-v2 {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 580px) {
  html { font-size: 14px; }
  
  .hero-v2 {
    padding-top: 110px;
  }
  
  .hero-v2 h1 {
    font-size: 2.2rem;
  }
  
  .simulador-vehicle-selector {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  
  .selector-option {
    flex-direction: row;
    justify-content: flex-start;
    padding: 12px 20px;
    gap: 16px;
  }
  
  .selector-option .option-icon {
    font-size: 1.4rem;
  }
  
  /* Grid 1 Coluna para Mobile */
  .stats-grid-v2,
  .beneficios-grid-v2,
  .testimonial-slide-grid-v2 {
    grid-template-columns: 1fr;
  }
  
  .testimonial-slide-grid-v2 .testimonial-card-v2:nth-child(2),
  .testimonial-slide-grid-v2 .testimonial-card-v2:nth-child(3) {
    display: flex; /* Restaura os cartões pois agora o carrossel rola de 1 em 1 no mobile */
  }
  
  .whatsapp-float-v2 {
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float-btn-v2 {
    width: 52px;
    height: 52px;
  }
  
  .whatsapp-float-btn-v2 svg {
    width: 26px;
    height: 26px;
  }
}

/* ---------- ANIMAÇÃO SCROLL REVEAL ---------- */
.reveal-v2 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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