* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Prevent zoom on mobile */
html {
  touch-action: manipulation;
}

body {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* Prevent image dragging and selection */
img {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: auto;
}

/* Prevent zoom on interactive elements */
button,
a,
.vehicle-image,
.thumbnail,
.main-image {
  touch-action: manipulation;
}

:root {
  --primary: #d4af37;
  --primary-dark: #b8941f;
  --primary-2: #f9e076;
  --primary-rgb: 212, 175, 55;
  --success: #22b07d;
  --danger: #e0504f;
  --dark: #0a0a0a;
  --dark-light: #141414;
  --gray: #6b7280;
  --gray-light: #9ca3af;
  --light: #1a1a1a;
  --white: #ffffff;
  --bg: #0a0a0a;
  --surface: #111111;
  --card: #1a1a1a;
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.18);
  --text: #f0f0f0;
  --text-2: #b0b0b0;
  --muted: #808080;
  --accent-bg: rgba(212, 175, 55, 0.15);
  --hero1: #0a0a0a;
  --hero2: #0a0a0a;
  --shadow: 0 16px 36px -22px rgba(0, 0, 0, 0.6);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 12px 22px -10px rgba(212, 175, 55, 0.4);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --transition-spring: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-gentle: all 0.35s cubic-bezier(0.33, 1, 0.68, 1);
  --shadow-inner: 0 4px 30px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 30px 60px -15px rgba(212, 175, 55, 0.35);
  --shadow-gold-hover: 0 0 40px rgba(212, 175, 55, 0.4);
  --glass-bg: rgba(17, 17, 17, 0.6);
  --glass-border: rgba(255, 255, 255, 0.1);
}

body {
  font-family:
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header */
.header {
  background: var(--surface);
  box-shadow: 0 22px 36px -14px rgba(0, 0, 0, 0.6);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid var(--border);
}

.header.scrolled {
  box-shadow: 0 24px 40px -14px rgba(0, 0, 0, 0.7);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 13px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  font-family: "Sora", sans-serif;
  color: var(--primary);
}

.empresa-nome-header {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-2);
  margin-left: 0;
  padding-left: 12px;
  border-left: 2px solid var(--border-2);
}

/* ===== BLOQUEIO DE ROLAGEM QUANDO SISTEMA INATIVO ===== */
body.modal-inativo-aberto {
  overflow: hidden;
  height: 100vh;
}

/* ===== MODAL DE SISTEMA INATIVO (TELA CHEIA) ===== */
.modal-inativo-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  z-index: 99999;
  background: linear-gradient(145deg, #0a0a0a 0%, #141414 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  overflow-y: auto;
}

.modal-inativo-content {
  background: var(--surface);
  color: var(--text);
  border: 1px solid rgba(224, 80, 79, 0.35);
  border-radius: 24px;
  padding: 36px 28px 28px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
  text-align: center;
}

.modal-inativo-icone {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(224, 80, 79, 0.12);
  color: #ff6b6b;
  font-size: 34px;
}

.modal-inativo-topo h2 {
  color: #ff6b6b;
  font-size: clamp(24px, 6vw, 30px);
  font-weight: 800;
  margin-bottom: 8px;
}

.modal-inativo-topo > p {
  color: var(--text-2);
  margin-bottom: 22px;
  line-height: 1.6;
}

.modal-inativo-debito {
  background: rgba(224, 80, 79, 0.08);
  border: 1px solid rgba(224, 80, 79, 0.25);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 20px;
  text-align: left;
}

.debito-total {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 10px;
}

.debito-total i {
  color: #ffb020;
  margin-right: 8px;
}

.debito-total strong {
  color: #ff6b6b;
  font-size: 18px;
}

.debito-meses {
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.7;
  word-break: break-word;
}

.debito-meses strong {
  color: var(--text);
}

.modal-inativo-pix {
  background: linear-gradient(145deg, #1a1a1a, #161616);
  border: 1px solid var(--border-2);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 20px;
}

.pix-titulo {
  color: var(--text-2);
  font-size: 13px;
  margin-bottom: 10px;
}

.pix-titulo i {
  color: var(--primary);
  margin-right: 6px;
}

.pix-chave {
  background: var(--bg);
  border: 1px dashed var(--border-2);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--text);
  word-break: break-all;
  margin-bottom: 14px;
}

.btn-copiar-pix {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-copiar-pix:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-copiar-pix.copiado {
  background: linear-gradient(145deg, #22b07d, #1a8f67);
}

.modal-inativo-rodape > p {
  color: var(--text-2);
  font-size: 13px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.modal-inativo-rodape > p i {
  color: var(--primary);
  margin-right: 6px;
}

.btn-enviar-comprovante {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(145deg, #25d36e, #1da85a);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-enviar-comprovante:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(37, 211, 110, 0.5);
}

.nav-menu {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-link {
  color: var(--text-2);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary);
}

.btn-whatsapp-header {
  background: var(--primary);
  color: #000;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  border: none;
  cursor: pointer;
}

.btn-whatsapp-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px -10px rgba(212, 175, 55, 0.6);
  color: #000;
}

.mobile-menu-toggle {
  display: none;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  width: 44px;
  height: 44px;
  font-size: 22px;
  color: var(--text-2);
  cursor: pointer;
  transition: var(--transition);
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle:hover {
  color: var(--primary);
  border-color: var(--border-2);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--hero1), var(--hero2));
  color: white;
  padding: 80px 20px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.06" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,96C1248,75,1344,53,1392,42.7L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>')
    no-repeat bottom;
  background-size: cover;
  opacity: 0.5;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-car-image {
  width: 100%;
  max-width: 550px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(255, 255, 255, 0.15));
  animation: heroCarFloat 4s ease-in-out infinite;
  border-radius: 20px;
  cursor: pointer;
  transform-origin: center center;
  position: relative;
  z-index: 2;
  transition:
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.6s ease;
}

.hero-car-image:hover {
  animation-play-state: paused;
  transform: scale(1.1) rotate(-5deg) !important;
  filter: drop-shadow(0 30px 80px rgba(255, 255, 255, 0.3)) !important;
}

@keyframes heroCarFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.hero h1 {
  font-size: 44px;
  font-weight: 800;
  font-family: "Sora", sans-serif;
  margin-bottom: 18px;
  line-height: 1.2;
  color: #fff;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.92;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  padding: 13px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.btn-primary {
  background: #fff;
  color: var(--hero1);
  box-shadow: 0 12px 26px -12px rgba(0, 0, 0, 0.55);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -12px rgba(0, 0, 0, 0.6);
  color: var(--hero1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
  color: #fff;
}

/* Stats Section */
.stats {
  padding: 0px 20px;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.stat-card {
  text-align: center;
  padding: 26px 20px;
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-2);
  box-shadow: 0 26px 46px -24px rgba(212, 175, 55, 0.3);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-bg);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--primary);
  font-size: 26px;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  font-family: "Sora", sans-serif;
  color: var(--text);
  margin-bottom: 4px;
}

.stat-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

/* Section */
.section {
  padding: 70px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 44px;
}

.section-title {
  font-size: 34px;
  font-weight: 800;
  font-family: "Sora", sans-serif;
  color: var(--text);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--muted);
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 18px;
}

.badge-destaque-section {
  display: inline-block;
  background: var(--accent-bg);
  color: var(--primary);
  padding: 7px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* Vehicle Grid */
/* Barra de Filtros */
.filtros-home {
  background: var(--card);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 25px;
  border: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: flex-end;
}

.filtros-home .filtro-item {
  flex: 1;
  min-width: 140px;
}

.filtros-home label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filtros-home input,
.filtros-home select {
  width: 100%;
  padding: 10px 14px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 13px;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: var(--transition);
}

.filtros-home input:focus,
.filtros-home select:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
  background: var(--dark);
}

.filtros-home .btn-filtrar-home {
  background: var(--primary);
  color: #000;
  padding: 10px 24px;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}

.filtros-home .btn-filtrar-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.filtros-home .btn-limpar-home {
  background: transparent;
  color: var(--muted);
  padding: 10px 16px;
  border: 1px solid var(--border-2);
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  font-family: "Plus Jakarta Sans", sans-serif;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.filtros-home .btn-limpar-home:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 22px;
}

.vehicle-card {
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.vehicle-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-2);
  box-shadow: 0 26px 46px -24px rgba(212, 175, 55, 0.3);
}

.vehicle-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--primary);
  color: #000;
  padding: 10px 22px;
  border-radius: 0 0 12px 0;
  font-size: 12px;
  font-weight: 800;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-flex;
  align-items: center;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.vehicle-badge-loja {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(145deg, #6366f1, #4f46e5);
  color: #fff;
  padding: 10px 22px;
  border-radius: 0 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-flex;
  align-items: center;
  box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.3);
}

.vehicle-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  cursor: pointer;
  transition: var(--transition);
}

.vehicle-card:hover .vehicle-image {
  transform: scale(1.05);
}

.vehicle-image-container {
  overflow: hidden;
  position: relative;
  background: var(--light);
}

.vehicle-image-placeholder {
  width: 100%;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  color: var(--muted);
  font-size: 56px;
}

.vehicle-info {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vehicle-title {
  font-size: 18px;
  font-weight: 700;
  font-family: "Sora", sans-serif;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.vehicle-subtitle {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}

.vehicle-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.feature-tag {
  background: var(--accent-bg);
  padding: 5px 10px;
  border-radius: 8px;
  font-size: 11.5px;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.feature-tag i {
  color: var(--primary);
  font-size: 10px;
}

.vehicle-description {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}

.vehicle-price {
  font-size: 26px;
  font-weight: 800;
  font-family: "Sora", sans-serif;
  color: var(--primary);
  margin-bottom: 16px;
}

.vehicle-price small {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

.btn-buy {
  flex: 1;
  padding: 12px;
  background: #fff;
  color: #0a0a0a;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.2px;
}

.btn-buy:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  color: #0a0a0a;
}

.btn-buy:active {
  transform: translateY(-1px);
}

.btn-view {
  flex: 1;
  padding: 12px;
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border-2);
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
  text-decoration: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.2px;
}

.btn-view:hover {
  background: var(--accent-bg);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}

.btn-view:active {
  transform: translateY(-1px);
}

.vehicle-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.vehicle-actions .btn-view,
.vehicle-actions .btn-buy {
  flex: 1 1 50%;
  min-width: 0;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--hero1), var(--hero2));
  color: white;
  padding: 70px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.06" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,96C1248,75,1344,53,1392,42.7L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>')
    no-repeat bottom;
  background-size: cover;
  opacity: 0.5;
  pointer-events: none;
}

.cta-section h2 {
  font-size: 32px;
  font-weight: 800;
  font-family: "Sora", sans-serif;
  margin-bottom: 24px;
  color: #fff;
  position: relative;
  display: inline-block;
}

.cta-section h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.cta-section p {
  font-size: 16px;
  margin-bottom: 26px;
  opacity: 0.92;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

.cta-section .btn-primary {
  position: relative;
}

/* Footer */
.footer {
  background: var(--surface);
  color: var(--text);
  padding: 50px 20px 20px;
  border-top: 1px solid var(--border);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h3 {
  font-size: 16px;
  font-weight: 700;
  font-family: "Sora", sans-serif;
  margin-bottom: 14px;
  color: var(--text);
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-section p,
.footer-section a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 13.5px;
  line-height: 1.8;
  display: block;
  transition: var(--transition);
}

.footer-section a:not(.social-link):hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-2);
  text-decoration: none;
  font-size: 13.5px;
  line-height: 1.8;
  transition: var(--transition);
  cursor: pointer;
}

.footer-contact-link i {
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.footer-contact-link:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact-link .fa-whatsapp {
  color: #25d366;
}

.footer-contact-link:hover .fa-whatsapp {
  color: #1ebe5b;
}

.footer-contact-link .fa-map-marker-alt {
  color: #ea4335;
}

.footer-contact-link:hover .fa-map-marker-alt {
  color: #d33426;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 12.5px;
}

.footer-bottom a {
  color: #47acf9;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: #2198f4;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: var(--accent-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
  border: 1px solid var(--border);
  line-height: 1;
  text-decoration: none;
}

.social-link i {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 16px;
}

.social-link[data-social="whatsapp"] {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.social-link[data-social="whatsapp"]:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-gold);
}

.social-link[data-social="instagram"] {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcaf45);
  border-color: transparent;
  color: #fff;
}

.social-link[data-social="instagram"]:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-gold);
}

.social-link[data-social="facebook"] {
  background: #1877f2;
  border-color: #1877f2;
  color: #fff;
}

.social-link[data-social="facebook"]:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-gold);
}

.social-link:hover {
  background: var(--primary);
  box-shadow: var(--shadow-gold);
  color: #fff;
  border-color: var(--primary);
}

/* Modal Carrossel */
.modal-carrossel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.modal-carrossel.active {
  display: flex;
}

.modal-carrossel-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
}

.modal-carrossel img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-carrossel-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.modal-carrossel-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.modal-carrossel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.modal-carrossel-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.modal-carrossel-prev {
  left: -70px;
}

.modal-carrossel-next {
  right: -70px;
}

.modal-carrossel-counter {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  color: #000;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  background: var(--primary);
  z-index: 999;
  transition: var(--transition);
  border: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.vehicle-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Propaganda Banner */
.propaganda-banner {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  margin: 40px 0;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

/* Modal Propaganda */
.modal-propaganda {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10001;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-propaganda.active {
  display: flex;
}

.modal-propaganda-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-propaganda img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-propaganda-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: var(--primary);
  border: none;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  font-weight: bold;
}

.modal-propaganda-close:hover {
  transform: scale(1.1) rotate(90deg);
  background: var(--primary-dark);
}

/* Scrollbar - Fundo preto com barra branca */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #000000;
  border-radius: 8px;
}

::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 8px;
  border: 2px solid #000000;
}

::-webkit-scrollbar-thumb:hover {
  background: #e0e0e0;
}

::-webkit-scrollbar-corner {
  background: #000000;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #ffffff #000000;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  transform-origin: left;
  scale-x: 0;
  z-index: 1001;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.scroll-progress.active {
  opacity: 1;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

/* ===== PARALLAX HERO ===== */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(212, 175, 55, 0.08) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.hero-scrolled::before {
  opacity: 1;
}

.hero-car-image {
  transition: var(--transition-spring);
  will-change: transform;
}

/* ===== SECTION REVEAL ANIMATIONS ===== */
.reveal-section {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-section.delay-1 {
  transition-delay: 0.1s;
}
.reveal-section.delay-2 {
  transition-delay: 0.2s;
}
.reveal-section.delay-3 {
  transition-delay: 0.3s;
}
.reveal-section.delay-4 {
  transition-delay: 0.4s;
}

/* ===== STAGGERED GRID ANIMATION ===== */
.stagger-children {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0s,
    transform 0s;
}

.stagger-children.visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.2s ease,
    transform 0.3s ease;
}

.stagger-children .vehicle-card,
.stagger-children .stat-card {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.stagger-children.visible .vehicle-card,
.stagger-children.visible .stat-card {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays (JS adds .stagger-item with increasing delay) */
.stagger-item:nth-child(1) {
  transition-delay: 0.05s;
}
.stagger-item:nth-child(2) {
  transition-delay: 0.1s;
}
.stagger-item:nth-child(3) {
  transition-delay: 0.15s;
}
.stagger-item:nth-child(4) {
  transition-delay: 0.2s;
}
.stagger-item:nth-child(5) {
  transition-delay: 0.25s;
}
.stagger-item:nth-child(6) {
  transition-delay: 0.3s;
}
.stagger-item:nth-child(7) {
  transition-delay: 0.35s;
}
.stagger-item:nth-child(8) {
  transition-delay: 0.4s;
}
.stagger-item:nth-child(9) {
  transition-delay: 0.45s;
}
.stagger-item:nth-child(10) {
  transition-delay: 0.5s;
}
.stagger-item:nth-child(11) {
  transition-delay: 0.55s;
}
.stagger-item:nth-child(12) {
  transition-delay: 0.6s;
}

/* ===== ENHANCED VEHICLE CARD HOVER ===== */
.vehicle-card {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.vehicle-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    transparent,
    rgba(212, 175, 55, 0.3),
    transparent
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.vehicle-card:hover::before {
  opacity: 1;
}

.vehicle-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-card-hover);
}

.vehicle-card:hover .vehicle-image {
  transform: scale(1.08);
}

.vehicle-card:hover .vehicle-info {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.vehicle-card:hover .btn-buy {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-hover);
}

/* ===== GALLERY IMAGE OVERLAY ON HOVER ===== */
.vehicle-image-container {
  position: relative;
  overflow: hidden;
}

.vehicle-image-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.vehicle-card:hover .vehicle-image-container::after {
  opacity: 1;
}

/* ===== ENHANCED BUTTONS ===== */
.btn {
  position: relative;
  overflow: hidden;
  border: none;
  outline: none;
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

/* ===== NAV LINK ENHANCED HOVER ===== */
.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition:
    width 0.3s ease,
    left 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
  left: 0;
}

.nav-link:hover {
  color: var(--primary);
}

/* ===== WHATSAPP FLOAT PULSE ===== */
@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 176, 125, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 14px rgba(34, 176, 125, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34, 176, 125, 0);
  }
}

@keyframes pulse-gold {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(212, 175, 55, 0);
  }
}

@keyframes textReveal {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== HERO TEXT REVEAL ===== */
.hero-text-reveal {
  opacity: 0;
  animation: textReveal 0.8s ease-out 0.3s both;
  animation-play-state: paused;
}

.hero-text-reveal.delay-1 {
  animation-delay: 0.4s;
}
.hero-text-reveal.delay-2 {
  animation-delay: 0.6s;
}
.hero-text-reveal.delay-3 {
  animation-delay: 0.8s;
}

/* ===== MODAL ENHANCEMENTS ===== */
.modal-propaganda,
.modal-carrossel {
  backdrop-filter: blur(8px);
}

.modal-propaganda.active .modal-propaganda-content {
  animation: modalFadeInSpring 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-carrossel.active .modal-carrossel-content {
  animation: modalFadeInSpring 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== STAT CARD HOVER ===== */
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.stat-card:hover .stat-icon {
  transform: scale(1.15) rotate(5deg);
  color: var(--primary);
}

/* ===== WHATSAPP FLOAT PULSE ===== */
.whatsapp-float {
  animation: whatsapp-pulse 3s ease-in-out 2s infinite;
}

.whatsapp-float:hover {
  animation: pulse-gold 1.5s ease-in-out infinite;
  transform: scale(1.1) !important;
}

/* ===== VEHICLE BADGE ANIMATION ===== */
.vehicle-badge {
  animation: pulse-gold 2.5s ease-in-out infinite;
}

/* ===== SMOOTH SCROLL ===== */
html {
  scroll-behavior: smooth;
}

/* ===== MODAL SPRING ANIMATION ===== */
@keyframes modalFadeInSpring {
  0% {
    opacity: 0;
    transform: scale(0.85) translateY(-30px);
  }
  65% {
    transform: scale(1.03) translateY(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes ripple {
  to {
    transform: translate(-50%, -50%) scale(4);
    opacity: 0;
  }
}

/* ===== SECTION HEADER REVEAL ===== */
.section-header {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO BUTTONS STAGGER ===== */
.hero-buttons .btn {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.hero-buttons.visible .btn:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
}
.hero-buttons.visible .btn:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

/* ===== FILTRO ITEM ENHANCED ===== */
.filtro-item:hover {
  transform: translateY(-2px);
}

.filtro-item:hover label {
  color: var(--primary);
}

/* ===== FOOTER SOCIAL LINK HOVER ===== */
.social-link:hover {
  transform: translateY(-3px) scale(1.12);
}

.social-link[data-social="whatsapp"] {
  color: #25d36e;
}
.social-link[data-social="facebook"] {
  color: #1877f2;
}
.social-link[data-social="instagram"] {
  background: linear-gradient(45deg, #f09433, #e6683e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== LOADING SKELETON ===== */
.skeleton-image {
  background: linear-gradient(90deg, var(--card), var(--surface), var(--card));
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
}

/* ===== NAV LINK ACTIVE STATE ===== */
.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  width: 100%;
  left: 0;
}

@media (max-width: 1200px) {
  .hero-content {
    gap: 40px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-car-image {
    max-width: 480px;
  }

  .vehicles-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

/* Tablet Portrait (até 968px) */
@media (max-width: 968px) {
  .hero-content {
    gap: 40px;
  }

  .hero-car-image {
    max-width: 450px;
  }

  .nav-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    right: 0px;
    left: auto;
    background: var(--surface);
    flex-direction: column;
    padding: 20px 25px;
    box-shadow: var(--shadow-lg);
    gap: 12px;
    z-index: 9999;
    border-bottom-left-radius: 16px;
    text-align: right;
    min-width: 220px;
    border: 1px solid var(--border);
    border-top: none;
  }

  .nav-menu.active {
    display: flex !important;
  }

  .nav-menu .nav-link {
    color: var(--text-2);
    font-size: 14px;
    padding: 8px 0;
    text-align: right;
  }

  .nav-menu .btn-whatsapp-header {
    justify-content: center;
    width: 100%;
    margin-top: 5px;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .vehicles-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }

  .modal-carrossel-nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .modal-carrossel-prev {
    left: 10px;
  }

  .modal-carrossel-next {
    right: 10px;
  }
}

/* Tablet pequeno / Celular grande (até 768px) */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-car-image {
    max-width: 400px;
  }

  .header {
    position: relative;
  }

  .section-title {
    font-size: 26px;
  }

  .stat-card {
    padding: 10px;
  }

  .stat-number {
    font-size: 28px;
  }
}

/* Celular médio (até 600px) */
@media (max-width: 600px) {
  .hero {
    padding: 60px 15px 80px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-car-image {
    max-width: 320px;
  }

  .stats {
    padding: 30px 15px;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .section {
    padding: 44px 15px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-section:nth-child(3),
  .footer-section:nth-child(4),
  .footer-section:nth-child(5) {
    grid-column: 1 / -1;
  }

  .vehicles-grid {
    gap: 18px;
  }

  .vehicle-info {
    padding: 18px;
  }

  .vehicle-price {
    font-size: 24px;
  }

  .vehicle-image {
    height: 250px;
  }

  .vehicle-image-placeholder {
    height: 250px;
  }

  .feature-tag {
    padding: 6px 10px;
    font-size: 10px;
  }

  .btn-buy {
    padding: 16px 14px;
    font-size: 12px;
  }
}

/* Celular pequeno (até 480px) */
@media (max-width: 480px) {
  .hero {
    padding: 50px 15px 70px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 13px;
  }

  .btn {
    padding: 11px 22px;
    font-size: 13px;
  }

  .vehicle-info {
    padding: 16px;
  }

  .vehicle-price {
    font-size: 22px;
  }

  .vehicle-title {
    font-size: 16px;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stat-card {
    padding: 10px;
  }

  .stat-number {
    font-size: 26px;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .header-container {
    padding: 10px 14px;
  }

  .logo img {
    height: 36px;
  }

  .logo-text {
    font-size: 18px;
  }

  .empresa-nome-header {
    font-size: 13px;
    padding-left: 8px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-subtitle {
    font-size: 13px;
  }

  .cta-section h2 {
    font-size: 26px;
  }

  .cta-section p {
    font-size: 14px;
  }

  .section {
    padding: 36px 15px;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    justify-content: center;
  }

  .btn {
    padding: 14px 22px;
    font-size: 14px;
  }

  .btn-whatsapp-header {
    padding: 12px 16px;
    font-size: 13px;
  }

  .feature-tag {
    padding: 6px 10px;
    font-size: 10.5px;
  }

  .btn-buy {
    padding: 16px 14px;
    font-size: 12px;
  }
  .btn-view {
    font-size: 12px;
  }
}
