/* ==========================================================================
   TOP BRASIL PROTEÇÃO VEICULAR - MASTER CLEAN STYLESHEET
   Correção Completa de SVGs, Enquadramento, Header, Simulador & Responsividade
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Kanit:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600;1,700&display=swap");

:root {
  --font-heading: "Kanit", sans-serif;
  --font-body: "Inter", sans-serif;

  --primary: #ff6500;
  --primary-hover: #ff7a1a;
  --primary-dark: #d65100;
  --primary-glow: rgba(255, 101, 0, 0.35);
  --primary-soft: rgba(255, 101, 0, 0.12);

  --bg-main: #0a0a0c;
  --bg-surface: #121216;
  --bg-card: #16161b;
  --bg-card-hover: #1e1e24;

  --text-main: #ffffff;
  --text-body: #e2e8f0;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-highlight: rgba(255, 101, 0, 0.45);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 35px var(--primary-glow);

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-main);
  color: var(--text-main);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  touch-action: manipulation;
}

/* REGRA DE OURO PARA SVGS: NUNCA EXPLODIR NA TELA */
svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  max-width: 100%;
  max-height: 100%;
}

/* Background Gradients */
.bg-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
}

.orb-1 {
  width: min(500px, 90vw);
  height: min(500px, 90vw);
  background: radial-gradient(circle, rgba(255, 101, 0, 0.35) 0%, transparent 70%);
  top: 2%;
  right: -80px;
}

.orb-2 {
  width: min(500px, 90vw);
  height: min(500px, 90vw);
  background: radial-gradient(circle, rgba(255, 101, 0, 0.2) 0%, transparent 70%);
  top: 35%;
  left: -150px;
}

.orb-3 {
  width: min(450px, 90vw);
  height: min(450px, 90vw);
  background: radial-gradient(circle, rgba(255, 101, 0, 0.2) 0%, transparent 70%);
  bottom: 8%;
  right: 5%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3.5vw, 24px);
  position: relative;
  z-index: 1;
}

/* Badges & Pills */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-primary {
  background: var(--primary-soft);
  color: var(--primary);
  border: 1px solid rgba(255, 101, 0, 0.3);
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
  animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 0 0 rgba(255, 101, 0, 0.7); }
  70% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 8px rgba(255, 101, 0, 0); }
  100% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 0 0 rgba(255, 101, 0, 0); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  min-height: 46px;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: all var(--transition-normal);
  text-align: center;
  position: relative;
  overflow: hidden;
  user-select: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #ff7a1a 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px var(--primary-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff7a1a 0%, #ff8a33 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 101, 0, 0.45);
  color: #ffffff;
}

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

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  border: 1px solid var(--border-medium);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2ae06d 0%, #17a090 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   TOP BAR & HEADER
   ========================================================================== */
.top-bar {
  background-color: #060608;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 6px 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.top-bar-item:hover {
  color: var(--primary);
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  max-width: 14px;
  max-height: 14px;
  fill: currentColor;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
}

.header.scrolled {
  background: rgba(8, 8, 10, 0.98);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 20px;
}

.brand-logo img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 24px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-actions .btn {
  height: 40px;
  min-height: 40px;
  padding: 0 20px;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 6px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: #101014;
  z-index: 200;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.7);
  transition: right var(--transition-normal);
  border-left: 1px solid var(--border-subtle);
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  display: block;
  padding: 4px 0;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 150;
  display: none;
}

.mobile-menu-backdrop.open {
  display: block;
}

/* ==========================================================================
   HERO SECTION & SIMULATOR ENQUADRADO
   ========================================================================== */
.hero-section {
  padding: clamp(28px, 4vw, 56px) 0 clamp(40px, 5vw, 72px);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 3.5vw, 40px);
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.125rem);
  font-weight: 800;
  line-height: 1.12;
  color: #ffffff;
  letter-spacing: -0.03em;
}

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

.hero-subtitle {
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.6;
}

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-body);
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
}

.hero-badge-item svg {
  width: 14px;
  height: 14px;
  max-width: 14px;
  max-height: 14px;
  color: var(--primary);
  fill: currentColor;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* Card Simulador de Cotação */
.quote-card {
  background: linear-gradient(180deg, rgba(22, 22, 28, 0.96) 0%, rgba(16, 16, 20, 0.98) 100%);
  border: 1px solid rgba(255, 101, 0, 0.35);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 3vw, 26px) clamp(16px, 2.5vw, 24px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.55), 0 0 30px rgba(255, 101, 0, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.quote-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #ff944d);
}

.quote-header {
  margin-bottom: 14px;
  text-align: center;
}

.quote-title {
  font-size: 1.375rem;
  margin-bottom: 2px;
  color: #ffffff;
}

.quote-subtitle {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.vehicle-type-selector-4 {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 6px !important;
  margin-bottom: 14px !important;
}

.vehicle-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 6px 2px;
  height: 52px;
  min-height: 52px;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  transition: all var(--transition-fast);
}

.vehicle-btn svg {
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  fill: currentColor;
}

.vehicle-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
}

.vehicle-btn.active {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 12px rgba(255, 101, 0, 0.2);
}

.form-group {
  margin-bottom: 10px;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  height: 42px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0 12px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.18);
  background: rgba(0, 0, 0, 0.65);
}

.form-control::placeholder {
  color: var(--text-subtle);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.quote-security-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.6875rem;
  color: var(--text-subtle);
  margin-top: 8px;
  text-align: center;
}

.quote-security-note svg {
  width: 12px;
  height: 12px;
  max-width: 12px;
  max-height: 12px;
  color: #22c55e;
  fill: currentColor;
  flex-shrink: 0;
}

/* Hero Showcase Banner */
.hero-showcase {
  margin-top: 32px;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.hero-showcase img {
  width: 100%;
  height: clamp(220px, 30vw, 360px);
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-showcase:hover img {
  transform: scale(1.02);
}

.hero-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 12, 0.95) 0%, rgba(10, 10, 12, 0.15) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(16px, 3vw, 24px);
}

/* ==========================================================================
   STATS BAR (PROVA SOCIAL)
   ========================================================================== */
.stats-section {
  padding: clamp(20px, 3vw, 32px) 0;
  background: #0d0d10;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

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

.stat-card {
  text-align: center;
  padding: 8px 6px;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border-subtle);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 2px;
}

.stat-subtext {
  font-size: 0.75rem;
  color: var(--text-subtle);
}

/* ==========================================================================
   SEÇÃO ESPECIALIZADA: BIKE ELÉTRICA & E-BIKE
   ========================================================================== */
.bike-section {
  padding: clamp(48px, 6vw, 88px) 0;
  background: linear-gradient(180deg, #0d0d10 0%, #131318 100%);
  position: relative;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.bike-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}

.bike-showcase-box {
  background: rgba(255, 101, 0, 0.03);
  border: 1px solid rgba(255, 101, 0, 0.25);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 3vw, 28px);
  text-align: center;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.bike-showcase-box img {
  max-height: clamp(240px, 30vw, 340px);
  margin: 0 auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.7));
}

.bike-card-feature {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition-fast);
}

.bike-card-feature:hover {
  border-color: var(--primary);
  transform: translateX(4px);
  background: var(--bg-card-hover);
}

.bike-card-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 10px;
  background: rgba(255, 101, 0, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bike-card-icon svg {
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  fill: currentColor;
}

/* ==========================================================================
   SOBRE A TOP BRASIL
   ========================================================================== */
.about-section {
  padding: clamp(48px, 6vw, 88px) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto clamp(24px, 3.5vw, 44px);
}

.section-title {
  font-size: clamp(1.625rem, 3.2vw, 2.375rem);
  font-weight: 800;
  margin-top: 8px;
  margin-bottom: 10px;
  line-height: 1.15;
}

.section-subtitle {
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  color: var(--text-muted);
  line-height: 1.6;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}

.about-images-cluster {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  position: relative;
}

.about-img-main, .about-img-sub {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  height: clamp(200px, 28vw, 320px);
}

.about-img-main img, .about-img-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0 24px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 101, 0, 0.2);
}

.about-feature-icon svg {
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  fill: currentColor;
}

.about-feature-title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: #ffffff;
}

.about-feature-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ==========================================================================
   COBERTURAS COMPLETAS
   ========================================================================== */
.coverage-section {
  padding: clamp(48px, 6vw, 88px) 0;
  background: #0d0d10;
  position: relative;
}

.coverage-grid-primary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.coverage-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.coverage-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-highlight);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.coverage-card-image {
  height: 170px;
  position: relative;
  overflow: hidden;
}

.coverage-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.coverage-card:hover .coverage-card-image img {
  transform: scale(1.05);
}

.coverage-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(22, 22, 27, 0.95) 100%);
}

.coverage-card-body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.coverage-card-tag {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.coverage-card-title {
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
}

.coverage-card-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 12px;
}

.coverage-card-footer {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.coverage-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Secondary Coverage Pills Grid */
.coverage-pills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.coverage-pill-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition-fast);
}

.coverage-pill-card:hover {
  border-color: rgba(255, 101, 0, 0.3);
  background: var(--bg-card-hover);
}

.coverage-pill-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.coverage-pill-icon svg {
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  fill: currentColor;
}

.coverage-pill-info h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.coverage-pill-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   TABELA COMPARATIVA
   ========================================================================== */
.comparison-section {
  padding: clamp(48px, 6vw, 88px) 0;
  background: #0c0c0f;
  position: relative;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow-x: auto;
  box-shadow: var(--shadow-md);
  margin-top: 24px;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 640px;
}

.comparison-table th, .comparison-table td {
  padding: 14px 18px;
  font-size: 0.8125rem;
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table th {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table th.highlight-col, .comparison-table td.highlight-col {
  background: rgba(255, 101, 0, 0.08);
  color: #ffffff;
  font-weight: 600;
  border-left: 1px solid rgba(255, 101, 0, 0.25);
  border-right: 1px solid rgba(255, 101, 0, 0.25);
}

.comparison-table th.highlight-col {
  color: var(--primary);
  font-size: 0.9375rem;
}

.check-yes {
  color: #22c55e;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.check-no {
  color: #ef4444;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   CIDADES ATENDIDAS NO ESPÍRITO SANTO & BRASIL
   ========================================================================== */
.cities-section {
  padding: clamp(32px, 4vw, 56px) 0;
  background: #08080a;
  border-bottom: 1px solid var(--border-subtle);
}

.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
}

.city-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 6px 12px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-body);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition-fast);
}

.city-chip:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.city-chip svg {
  width: 12px;
  height: 12px;
  max-width: 12px;
  max-height: 12px;
  color: var(--primary);
  fill: currentColor;
}

/* ==========================================================================
   POR QUE ESCOLHER A TOP BRASIL
   ========================================================================== */
.why-section {
  padding: clamp(48px, 6vw, 88px) 0;
  position: relative;
}

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

.why-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(18, 18, 22, 0.6) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: clamp(18px, 2.5vw, 24px);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-highlight);
}

.why-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 101, 0, 0.2);
}

.why-icon svg {
  width: 22px;
  height: 22px;
  max-width: 22px;
  max-height: 22px;
  fill: currentColor;
}

.why-card-title {
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
}

.why-card-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.why-card-link {
  margin-top: auto;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   PASSO A PASSO
   ========================================================================== */
.steps-section {
  padding: clamp(48px, 6vw, 88px) 0;
  background: #09090b;
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  background: var(--bg-card-hover);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.step-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.steps-cta-row {
  margin-top: 32px;
  text-align: center;
}

/* ==========================================================================
   DEPOIMENTOS REAIS
   ========================================================================== */
.testimonials-section {
  padding: clamp(48px, 6vw, 88px) 0;
  position: relative;
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: clamp(18px, 2.5vw, 24px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  border-color: rgba(255, 101, 0, 0.3);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  margin-bottom: 10px;
}

.testimonial-stars svg {
  width: 14px;
  height: 14px;
  max-width: 14px;
  max-height: 14px;
  fill: currentColor;
}

.testimonial-quote {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 14px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
}

.testimonial-location {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   APP TOP BRASIL
   ========================================================================== */
.app-section {
  padding: clamp(40px, 5vw, 72px) 0;
  background: linear-gradient(135deg, #101014 0%, #16120f 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.app-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 36px);
  align-items: center;
}

.app-badge-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 20px;
}

.app-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-body);
}

.app-badge-item svg {
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
  color: var(--primary);
  fill: currentColor;
  flex-shrink: 0;
}

.app-download-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000000;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 8px 14px;
  min-height: 42px;
  color: #ffffff;
  transition: all var(--transition-fast);
}

.app-store-btn:hover {
  border-color: var(--primary);
}

.app-store-btn svg {
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  fill: currentColor;
}

.app-store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.app-store-sub {
  font-size: 0.625rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.app-store-title {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.1;
}

.app-mockup-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.app-mockup-wrapper img {
  max-height: clamp(240px, 32vw, 380px);
  width: auto;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.6));
}

/* ==========================================================================
   FAQ (PERGUNTAS FREQUENTES)
   ========================================================================== */
.faq-section {
  padding: clamp(48px, 6vw, 88px) 0;
  background: #0a0a0c;
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 8px;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: rgba(255, 101, 0, 0.4);
  background: var(--bg-card-hover);
}

.faq-question {
  width: 100%;
  padding: 14px 18px;
  min-height: 48px;
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  max-width: 12px;
  max-height: 12px;
  fill: currentColor;
  color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--primary);
}

.faq-item.active .faq-icon svg {
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 18px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 18px 16px;
}

.faq-answer p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   FINAL CTA BANNER
   ========================================================================== */
.final-cta-section {
  padding: clamp(40px, 5vw, 72px) 0;
  position: relative;
}

.final-cta-card {
  background: linear-gradient(135deg, #ff6500 0%, #d65100 100%);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 44px) clamp(16px, 3vw, 32px);
  text-align: center;
  color: #ffffff;
  box-shadow: 0 16px 50px rgba(255, 101, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.final-cta-title {
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 8px;
  color: #ffffff;
}

.final-cta-text {
  font-size: clamp(0.875rem, 1.8vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 580px;
  margin: 0 auto 20px;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-white {
  background: #ffffff;
  color: #0c0c0e;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
  color: #0c0c0e;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #060608;
  border-top: 1px solid var(--border-subtle);
  padding: clamp(36px, 5vw, 56px) 0 24px;
  font-size: 0.8125rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(18px, 2.5vw, 32px);
  margin-bottom: 32px;
}

.footer-brand p {
  margin: 10px 0 14px;
  max-width: 280px;
  font-size: 0.8125rem;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-social-link {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 14px;
  height: 14px;
  max-width: 14px;
  max-height: 14px;
  fill: currentColor;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

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

.footer-link {
  color: var(--text-muted);
  font-size: 0.8125rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-subtle);
  font-size: 0.75rem;
  flex-wrap: wrap;
  gap: 10px;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON & MOBILE STICKY
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: clamp(16px, 3vw, 24px);
  right: clamp(16px, 3vw, 24px);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-whatsapp-tooltip {
  background: #18181e;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
}

.floating-whatsapp-btn {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition-normal);
  position: relative;
}

.floating-whatsapp-btn::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0.6;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.floating-whatsapp-btn:hover {
  transform: scale(1.08);
}

.floating-whatsapp-btn svg {
  width: 26px;
  height: 26px;
  max-width: 26px;
  max-height: 26px;
  fill: currentColor;
}

.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: rgba(12, 12, 16, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 101, 0, 0.3);
  padding: 8px 16px env(safe-area-inset-bottom, 8px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.mobile-sticky-bar.visible {
  transform: translateY(0);
}

.mobile-sticky-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card:nth-child(2)::after {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .bike-grid {
    grid-template-columns: 1fr;
  }
  .coverage-grid-primary {
    grid-template-columns: 1fr;
  }
  .coverage-pills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .app-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .app-badge-list {
    align-items: center;
  }
  .app-download-buttons {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .nav-links, .nav-actions .btn {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .vehicle-type-selector-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .stat-card::after {
    display: none;
  }
  .about-images-cluster {
    grid-template-columns: 1fr;
  }
  .about-img-sub {
    display: none;
  }
  .coverage-pills-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .floating-whatsapp-tooltip {
    display: none;
  }
  .mobile-sticky-bar {
    display: block;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions .btn {
    width: 100%;
  }
}
