/* ==========================================
   RESET + VARIÁVEIS
   ========================================== */
:root {
  --bg-dark: #02091a;
  --bg-dark-2: #07101f;
  --bg-card: #101625;
  --bg-card-2: #131c2f;
  --primary-neon: #00ff88;
  --primary-neon-2: #00c853;
  --primary-soft: rgba(0, 255, 136, 0.14);
  --text-main: #ffffff;
  --text-muted: #c3ccd9;
  --text-soft: #94a3b8;
  --border-modern: #1e293b;
  --border-soft: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.03);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.25);
  --shadow-neon: 0 0 0 1px rgba(0, 255, 136, 0.08), 0 14px 40px rgba(0, 255, 136, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
  background:
    radial-gradient(circle at top left, rgba(0, 255, 136, 0.08), transparent 25%),
    radial-gradient(circle at right center, rgba(0, 200, 83, 0.05), transparent 20%),
    linear-gradient(180deg, #02091a 0%, #050d18 45%, #02091a 100%);
  color: var(--text-main);
  line-height: 1.6;
}

body {
  min-height: 100vh;
}

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

a {
  color: inherit;
}

ul {
  list-style: none;
}

section {
  position: relative;
  padding: 100px 0;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

/* ==========================================
   COMPONENTES GERAIS
   ========================================== */
.section-header-modern {
  max-width: 760px;
  margin: 0 auto 56px auto;
  text-align: center;
}

.section-header-modern h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.section-header-modern p {
  color: var(--text-soft);
  font-size: 1rem;
}

.section-kicker,
.badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 136, 0.1);
  color: var(--primary-neon);
  border: 1px solid rgba(0, 255, 136, 0.16);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 20%, #c8ffe5 55%, #00ff88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================
   BANNER INFLUENCER
   ========================================== */
#banner-influencer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10001;
  background: linear-gradient(90deg, #00c853 0%, #00ff88 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.banner-inner {
  width: min(100% - 16px, 1100px);
  margin: 0 auto;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  flex-wrap: wrap;
  padding: 10px 0;
}

.banner-inner i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.banner-inner p {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

#cupom-dinamico {
  background: #000;
  color: #00ff88;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  font-size: 11px;
  display: inline-block;
}

#link-whatsapp-banner {
  background: #fff;
  color: #00c853;
  padding: 7px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 900;
  font-size: 11px;
  text-transform: uppercase;
  transition: 0.25s ease;
}

#link-whatsapp-banner:hover {
  transform: translateY(-2px);
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar-modern {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6, 10, 18, 0.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo-modern img {
  height: 46px;
  width: auto;
}

.nav-links-modern {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links-modern a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  transition: 0.25s ease;
}

.nav-links-modern a:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04);
}

.btn-rastrear-modern {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-soft);
}

.btn-cotacao-modern {
  background: linear-gradient(135deg, var(--primary-neon-2), var(--primary-neon));
  color: #02140b !important;
  border: none;
  box-shadow: 0 12px 30px rgba(0, 255, 136, 0.18);
}

.btn-cotacao-modern:hover {
  background: linear-gradient(135deg, #0bff92, #54ffb0);
  transform: translateY(-2px);
}

/* ==========================================
   MENU MOBILE
   ========================================== */
.menu-checkbox {
  display: none;
}

.menu-btn-hamburguer {
  width: 48px;
  height: 48px;
  display: none;
  cursor: pointer;
  border-radius: 12px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.03);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-btn-hamburguer span {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
  display: block;
}

/* ==========================================
   HERO
   ========================================== */
.hero-modern {
  padding: 110px 0 80px 0;
}

.hero-grid-modern {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.hero-text-modern h1 {
  font-size: clamp(2.5rem, 6vw, 4.7rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
  max-width: 700px;
}

.hero-text-modern p {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 28px;
}

.hero-btns-modern {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-neon-2), var(--primary-neon));
  color: #03160c;
  text-decoration: none;
  font-weight: 900;
  border-radius: 999px;
  padding: 16px 24px;
  box-shadow: 0 14px 35px rgba(0, 255, 136, 0.18);
  transition: 0.3s ease;
}

.btn-primary-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 255, 136, 0.24);
}

.hero-image-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.hero-image-card img {
  width: 100%;
  object-fit: contain;
}

.hero-blur {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.4;
  pointer-events: none;
}

.hero-blur-1 {
  width: 300px;
  height: 300px;
  background: rgba(0, 255, 136, 0.18);
  top: 40px;
  left: -80px;
}

.hero-blur-2 {
  width: 260px;
  height: 260px;
  background: rgba(0, 200, 83, 0.12);
  right: -40px;
  bottom: 20px;
}

/* ==========================================
   CARDS GERAIS
   ========================================== */
.veiculos-grid,
.grid-platform-modern,
.testimonials-grid,
.advantages-grid-modern,
.app-grid,
.footer-grid-modern {
  display: grid;
  gap: 24px;
}

.veiculos-grid {
  grid-template-columns: repeat(3, 1fr);
}

.grid-platform-modern {
  grid-template-columns: repeat(2, 1fr);
}

.advantages-grid-modern {
  grid-template-columns: repeat(2, 1fr);
}

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

.app-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

.footer-grid-modern {
  grid-template-columns: 1.2fr 1fr 1fr;
}

/* ==========================================
   VEÍCULOS
   ========================================== */
.veiculo-card,
.platform-card-modern,
.recurso-item-modern,
.app-card,
.testimonial-card,
.faq-item {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.018));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.veiculo-card {
  overflow: hidden;
  transition: 0.35s ease;
}

.veiculo-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 136, 0.35);
  box-shadow: var(--shadow-neon);
}

.veiculo-img-wrapper {
  position: relative;
  background: linear-gradient(180deg, rgba(0,255,136,0.06), rgba(255,255,255,0.01));
  padding: 24px;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.veiculo-img-wrapper img {
  max-height: 190px;
  object-fit: contain;
}

.veiculo-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(2, 9, 26, 0.82);
  color: var(--primary-neon);
  border: 1px solid rgba(0, 255, 136, 0.14);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.veiculo-info {
  padding: 26px;
}

.veiculo-info h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.veiculo-info p {
  color: var(--text-soft);
}

/* ==========================================
   PLATAFORMA
   ========================================== */
.platform-card-modern {
  position: relative;
  padding: 30px;
  transition: 0.3s ease;
}

.platform-card-modern:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: var(--shadow-neon);
}

.featured-modern {
  border-color: rgba(0, 255, 136, 0.28);
  background:
    radial-gradient(circle at top right, rgba(0, 255, 136, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.card-badge-modern {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(135deg, var(--primary-neon-2), var(--primary-neon));
  color: #03160c;
  font-weight: 900;
  font-size: 11px;
  padding: 8px 12px;
  border-radius: 999px;
}

.icon-box-modern {
  width: 62px;
  height: 62px;
  background: rgba(0, 255, 136, 0.06);
  color: var(--primary-neon);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid rgba(0, 255, 136, 0.14);
  margin-bottom: 20px;
}

.platform-card-modern h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.platform-card-modern p {
  color: var(--text-soft);
  margin-bottom: 18px;
}

.platform-card-modern ul {
  display: grid;
  gap: 12px;
}

.platform-card-modern li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e5edf7;
  font-weight: 500;
}

.platform-card-modern li i {
  color: var(--primary-neon);
  width: 18px;
  height: 18px;
}

/* ==========================================
   VANTAGENS
   ========================================== */
.recurso-item-modern {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  transition: 0.3s ease;
}

.recurso-item-modern:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 136, 0.25);
}

.recurso-item-modern > i {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  padding: 12px;
  border-radius: 14px;
  color: var(--primary-neon);
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.12);
}

.recurso-item-modern h3 {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.recurso-item-modern p {
  color: var(--text-soft);
}

/* ==========================================
   APP
   ========================================== */
.app-section {
  background: linear-gradient(180deg, #0b1120, #08101d);
}

.app-badge {
  background: rgba(0, 200, 83, 0.1);
  color: #00c853;
}

.app-card {
  padding: 30px;
}

.app-features {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
}

.app-card-content h3,
.app-download h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.app-feature-list {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.app-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #e2e8f0;
}

.app-feature-list li i {
  color: #00c853;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.app-mockups {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.app-mockups img {
  width: calc(50% - 8px);
  min-width: 220px;
  border-radius: 18px;
  border: 1px solid rgba(0, 200, 83, 0.25);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
  transition: 0.3s ease;
}

.app-mockups img:hover {
  transform: translateY(-6px) scale(1.01);
}

.app-download {
  text-align: center;
  border-color: rgba(0, 255, 136, 0.28);
  background:
    radial-gradient(circle at top center, rgba(0,255,136,0.07), transparent 35%),
    rgba(0, 200, 83, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.download-icon {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background: #00c853;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px auto;
  box-shadow: 0 16px 30px rgba(0, 200, 83, 0.24);
}

.download-icon i {
  width: 36px;
  height: 36px;
}

.app-download p {
  color: var(--text-soft);
  margin-bottom: 28px;
}

.store-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #000;
  color: #fff;
  padding: 14px 20px;
  border-radius: 16px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  margin-bottom: 14px;
  transition: 0.25s ease;
}

.store-btn:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 255, 136, 0.22);
}

.store-btn i {
  width: 24px;
  height: 24px;
}

.store-btn div {
  text-align: left;
}

.store-btn small {
  display: block;
  font-size: 10px;
  color: #94a3b8;
  text-transform: uppercase;
}

.store-btn span {
  display: block;
  font-size: 16px;
  font-weight: 800;
}

.download-note {
  color: #64748b !important;
  font-size: 12px;
  margin-top: 10px;
  margin-bottom: 0 !important;
}

/* ==========================================
   DEPOIMENTOS
   ========================================== */
.testimonial-card {
  padding: 30px;
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 136, 0.28);
  box-shadow: var(--shadow-neon);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: #ffc107;
  stroke: #ffc107;
  color: #ffc107;
}

.testimonial-text {
  color: #e6edf5;
  margin-bottom: 24px;
  min-height: 120px;
}

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

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #00c853, #00ff88);
  color: #03160c;
  font-weight: 900;
}

.testimonial-author h4 {
  font-size: 1rem;
}

.testimonial-author span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

/* ==========================================
   FAQ
   ========================================== */
.faq-section {
  background: #070a13;
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
}

.faq-item details {
  padding: 22px 22px 20px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  color: #00c853;
  flex-shrink: 0;
  transition: 0.25s ease;
}

.faq-item details[open] summary i {
  transform: rotate(180deg);
}

.faq-item p {
  color: #94a3b8;
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.75;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer-modern {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 60px;
}

.footer-logo {
  text-align: center;
  margin-bottom: 34px;
}

.footer-logo img {
  height: 52px;
  width: auto;
  margin: 0 auto;
}

.footer-brand-modern p,
.footer-contact-modern p,
.footer-links-modern a,
.footer-brand-modern small {
  color: var(--text-soft);
}

.footer-contact-modern h4,
.footer-links-modern h4 {
  margin-bottom: 14px;
}

.footer-contact-modern p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-contact-modern i {
  width: 18px;
  height: 18px;
  color: var(--primary-neon);
}

.footer-links-modern ul {
  display: grid;
  gap: 10px;
}

.footer-links-modern a {
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-links-modern a:hover {
  color: var(--primary-neon);
}

.footer-bottom-modern {
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
  padding: 20px 0 28px;
}

.footer-bottom-modern p {
  color: #70819a;
  font-size: 14px;
}

/* ==========================================
   WHATSAPP FLUTUANTE
   ========================================== */
.btn-whatsapp-flutuante {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.3);
  animation: pulsar 2s infinite;
}

.btn-whatsapp-flutuante i {
  width: 30px;
  height: 30px;
}

.tooltip-whatsapp {
  position: absolute;
  right: 78px;
  background: #0b1321;
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: 0.25s ease;
}

.btn-whatsapp-flutuante:hover .tooltip-whatsapp {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulsar {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================
   RESPONSIVIDADE
   ========================================== */
@media (max-width: 1100px) {
  .hero-grid-modern,
  .app-grid,
  .veiculos-grid,
  .testimonials-grid,
  .grid-platform-modern,
  .footer-grid-modern,
  .advantages-grid-modern {
    grid-template-columns: 1fr;
  }

  .hero-text-modern {
    text-align: center;
  }

  .hero-text-modern p,
  .hero-text-modern h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns-modern {
    justify-content: center;
  }

  .hero-image-modern {
    max-width: 700px;
    margin: 0 auto;
  }

  .testimonial-text {
    min-height: auto;
  }
}

@media (max-width: 992px) {
  .menu-btn-hamburguer {
    display: inline-flex;
    z-index: 1001; 
    position: relative;
  }

  .menu-btn-hamburguer span {
    transition: 0.3s ease;
  }

  .menu-checkbox:checked ~ .menu-btn-hamburguer span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .menu-checkbox:checked ~ .menu-btn-hamburguer span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-checkbox:checked ~ .menu-btn-hamburguer span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links-modern {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: 100%;
    max-width: 300px; 
    background: rgba(4, 8, 15, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-left: 1px solid rgba(255, 255, 255, 0.05); 
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 100px 24px 24px 24px; 
    transform: translateX(100%); 
    opacity: 0;
    pointer-events: none;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
    gap: 12px;
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    overflow-y: auto;
  }

  .nav-links-modern a {
    width: 100%;
    text-align: left; 
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
  }

  .menu-checkbox:checked ~ .nav-links-modern {
    transform: translateX(0); 
    opacity: 1;
    pointer-events: all;
  }
  
  .nav-links-modern .btn-rastrear-modern,
  .nav-links-modern .btn-cotacao-modern {
    text-align: center;
    margin-top: 8px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }

  .nav-container {
    min-height: 76px;
  }

  .hero-modern {
    padding: 90px 0 60px 0;
  }

  .hero-text-modern h1 {
    font-size: 2.2rem;
  }

  .section-header-modern {
    margin-bottom: 38px;
  }

  .section-header-modern h2 {
    font-size: 2rem;
  }

  .platform-card-modern,
  .testimonial-card,
  .recurso-item-modern,
  .app-card,
  .veiculo-info,
  .faq-item details {
    padding: 22px;
  }

  .veiculo-img-wrapper {
    min-height: 220px;
  }

  .btn-primary-modern,
  .btn-cotacao-modern,
  .btn-rastrear-modern {
    width: 100%;
  }

  .tooltip-whatsapp {
    display: none;
  }

  .btn-whatsapp-flutuante {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  .app-mockups img {
    width: 100%;
    min-width: 100%;
  }
}

@media (max-width: 520px) {
  .banner-inner {
    gap: 8px;
  }

  .banner-inner p {
    font-size: 11px;
  }

  #link-whatsapp-banner {
    font-size: 10px;
    padding: 6px 10px;
  }

  .hero-text-modern h1 {
    font-size: 1.95rem;
  }

  .section-header-modern h2 {
    font-size: 1.75rem;
  }
}
