/* =============================================================
   DESAFIO VIGORITO NISSAN – STYLESHEET PRINCIPAL
   Organização:
   1. Nissan Brand Font (@font-face)
   2. Variáveis / Tokens
   3. Reset & Base
   4. Seção 1 – Hero
   5. Utilitários
============================================================= */

/* ─────────────────────────────────────────────
   1. NISSAN BRAND FONT – @font-face
   Arquivos hospedados em: assets/fonts/
   Pesos: Light (300) | Regular (400) | Bold (700)
───────────────────────────────────────────── */
@font-face {
  font-family: 'NissanBrand';
  src: url('../fonts/NissanBrand-Light.woff') format('woff'),
    url('../fonts/NissanBrand-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NissanBrand';
  src: url('../fonts/NissanBrand-Regular.woff') format('woff'),
    url('../fonts/NissanBrand-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'NissanBrand';
  src: url('../fonts/NissanBrand-Bold.woff') format('woff'),
    url('../fonts/NissanBrand-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* ─────────────────────────────────────────────
   1. VARIÁVEIS / TOKENS
───────────────────────────────────────────── */
:root {
  /* Cores principais */
  --color-red: #E60626;
  --color-red-dark: #9B0B22;
  --color-red-light: #E8192C;
  --color-btn-red: #C50E2A;
  --color-black: #0A0A0A;
  --color-dark: #1A1A1A;
  --color-dark-mid: #2A2A2A;
  --color-white: #FFFFFF;
  --color-gray-light: #F5F5F5;
  --color-gray: #888888;
  --color-yellow: #F5C518;

  /* Tipografia */
  --font-base: 'NissanBrand', sans-serif;

  /* Transições */
  --transition-base: all 0.3s ease;
}

/* ─────────────────────────────────────────────
   2. RESET & BASE
───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  color: var(--color-dark);
  background-color: var(--color-black);
  overflow-x: hidden;
}

/* .container {
  max-width: 1194px !important;
  margin: 0 auto;
} */



/* ─────────────────────────────────────────────
   COMPONENTS / DESIGN TOKENS (Arquitetura Limpa)
───────────────────────────────────────────── */
/* Componente de Botão em Pílula (Pill Button) */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-base);
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 42px;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition-base);
  border: none;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  height: 52px;

}

/* Modificador: Branco com texto vermelho */
.btn-pill--white {
  background-color: var(--color-white);
  color: var(--color-btn-red);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-pill--white:hover {
  background-color: var(--color-gray-light);
  color: var(--color-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

/* Modificador: Vermelho com texto branco */
.btn-pill--red {
  background-color: var(--color-btn-red);
  color: var(--color-white);
}

.btn-pill--red:hover {
  background-color: var(--color-red-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(197, 14, 42, 0.5);
}

/* Componente de Contador de Urgência (Countdown Card) */
.countdown-card {
  background-color: var(--color-red);
  border-radius: 16px;
  padding: 24px 28px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.countdown-card__header {
  color: var(--color-white);
  font-size: 32px;
  font-weight: 300;
  line-height: 1.2;
}

.countdown-card__header strong {
  font-weight: 800;
}

.countdown-card__title {
  color: var(--color-white);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-top: 2px;
  margin-bottom: 7px;
}

.countdown-card__timer {
  background-color: var(--color-white);
  border-radius: 6px;
  padding: 5px 71px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 65px;
}

.countdown-item__value {
  color: var(--color-dark);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.countdown-item__label {
  color: var(--color-dark-mid);
  font-size: 12px;
  font-weight: 700;
  margin-top: 4px;
}



/* ─────────────────────────────────────────────
   3. SEÇÃO 1 – HERO
───────────────────────────────────────────── */
.section-hero {
  position: relative;
  /* min-height: 100vh;
  display: flex;
  align-items: center; */
  overflow: hidden;
  background-color: var(--color-black);
}

/* Background da seção */
.hero-bg {
  /* position: absolute; */
  inset: 0;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
  height: 1245px;
  aspect-ratio: auto;
}

/* Overlay escuro para contraste do texto */
/* .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.55) 60%,
      rgba(0, 0, 0, 0.75) 100%);
} */

/* ── Carros ── */
.hero-cars {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-car {
  position: absolute;
  /* Reduz levemente a largura ideal e o teto máximo para 520px para garantir vão livre central */
  width: clamp(220px, 32vw, 520px);
  height: auto;
  transition: var(--transition-base);
  z-index: 3;
}

.hero-car--left {
  left: 0;
  transform: translateX(-12%);
  bottom: 16%;
}

.hero-car--right {
  right: 0;
  transform: translateX(12%);
  bottom: 22%;
}

/* ── Conteúdo central ── */
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Logo da campanha */
.hero-logo {
  margin-top: -74px;
}

.hero-logo img {
  margin: 0 auto;
}

/* Tagline */
.hero-tagline {
  color: var(--color-white);
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.05px;
  margin-bottom: 24px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  margin-top: -58px;
}

/* ── Bloco de benefícios ── */
.hero-benefits {
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 16px 24px;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}

.hero-benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-label {
  color: var(--color-yellow);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.benefit-desc {
  color: var(--color-white);
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.85;
}

.hero-benefit-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.25);
  align-self: stretch;
  margin: 4px 0;
}

/* ── Preço ── */
.hero-price-info {
  color: var(--color-white);
  font-size: 0.85rem;
  margin-bottom: 28px;
  opacity: 0.9;
}

.hero-price-info strong {
  color: var(--color-yellow);
  font-weight: 700;
}

/* ─────────────────────────────────────────────
   4. SEÇÃO 2 – DESTAQUE LOTE LIBERADO
───────────────────────────────────────────── */
.section-lote {
  background-image: url('../img/bg-sec-2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
  aspect-ratio: auto;
  min-height: 574px;
}



.lote-title {
  color: var(--color-white);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.lote-desc {
  color: var(--color-white);
  font-size: 24px;
  line-height: 27px;
  opacity: 0.95;
  margin-bottom: 12px;
  font-weight: 300;
}

.lote-desc strong {
  font-weight: 800;
}

.lote-desc-sub {
  color: var(--color-white);
  font-size: 24px;
  line-height: 27px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Wrapper dos carros sobrepostos à direita */
.lote-cars-wrapper {
  position: relative;
  z-index: 2;
  transition: var(--transition-base);
}



@media (max-width: 767.98px) {
  .lote-cars-wrapper img {
    max-width: 100%;
    height: auto;
  }
}


/* ─────────────────────────────────────────────
   5. SEÇÃO 3 – PACOTE DE VANTAGENS
───────────────────────────────────────────── */
.section-vantagens {
  background-image: url('../img/bg-sec-3.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 25px 0;
  position: relative;
  padding-bottom: 53px;
}

.vantagens-title {
  color: var(--color-red);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.vantagens-subtitle {
  color: var(--color-dark-mid);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
}

.vantagens-grid {
  margin-top: 55px;
}

/* Cards estilizados idênticos ao layout */
.card-vantagem {
  background-color: var(--color-red);
  border-radius: 30px;
  padding: 8px;
  width: 283px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: var(--transition-base);
}

.card-vantagem:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(200, 16, 46, 0.15);
}

/* Topo do card com destaque vermelho */
.card-vantagem-header {
  background-color: transparent;
  width: 100%;
  padding: 20px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  min-height: 255px;
  margin-top: -88px;
}

.vantagem-icon {}

.vantagem-percent {
  color: var(--color-white);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

/* Corpo do card */
.card-vantagem-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
  background-color: var(--color-gray-light);

  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.vantagem-item-title {
  color: var(--color-white);
  font-size: 31px;
  font-weight: 800;
  line-height: 33px;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
  text-align: center;
  font-weight: bold;
}

.vantagem-divider {
  width: 40px;
  height: 3px;
  background-color: var(--color-red);
  margin-bottom: 14px;
  border-radius: 2px;
}

.vantagem-item-desc {
  color: #000000;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: bold;
}


/* ─────────────────────────────────────────────
   6. SEÇÃO 4 – SUPERAVALIAÇÃO DO USADO
───────────────────────────────────────────── */
.section-avaliacao {
  background-image: url('../img/bg-sec-4.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 45px 0 45px;
}

.avaliacao-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/avaliacao/avaliacao-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.35;
  z-index: 1;
}

.avaliacao-header-wrapper {
  margin-bottom: 50px;
  padding: 0 20px;
}

.avaliacao-main-text {
  color: var(--color-white);
  font-size: 31px;
  font-weight: 300;
  line-height: 42px;
  margin: 0 auto;
  max-width: 1028px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.avaliacao-main-text strong {
  font-weight: 800;
}

/* Selo posicionado à direita no desktop */
.selo-seminovo {
  position: absolute;
  top: 160%;
  transform: translateY(-50%);
  z-index: 3;
  left: -20px;
}

/* Caixa de Alerta Vermelha */
.alerta-box {
  position: relative;
  background-color: var(--color-btn-red);
  border-radius: 25px;
  padding: 60px 48px 53px;
  max-width: 818px;
  margin: 123px auto 39px;
}

/* Ícone circular de exclamação no topo da caixa */
.alerta-icon-top {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background-color: var(--color-red);
  border: 3px solid var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: 900;
}

.alerta-text {
  color: var(--color-white);
  font-size: 40px;
  font-weight: 800;
  line-height: 45px;
  margin: 0;
}

/* Faixa / Pílula Brinde (Ducha Grátis) */
.brinde-box {
  background-color: var(--color-white);
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  position: relative;
  padding-right: 10px;
}

.brinde-icon {
  width: 120px;
  height: 120px;
  background-color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Projeção vertical e horizontal milimétrica para criar o emblema saliente esquerdo */
  margin-top: -24px;
  margin-bottom: -24px;
  margin-left: -35px;
  margin-right: 8px;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.brinde-icon img {
  max-width: 65%;
  height: auto;
  object-fit: contain;
}

.brinde-text {
  color: var(--color-btn-red);
  font-size: 33px;
  font-weight: 800;
  text-align: left;
  line-height: 1.2;
}


/* ─────────────────────────────────────────────
   7. SEÇÃO 5 – MODELOS EM DESTAQUE
───────────────────────────────────────────── */
.section-modelos {
  background-image: url('../img/bg-sec-5.jpg');
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  padding: 60px 0 57px;
  min-height: 616px;
}

.section-modelos .container-full {
  padding-left: 37px;
  padding-right: 37px;
}

.modelos-title {
  color: var(--color-white);
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 0;
}

/* Card horizontalizado com texto na esquerda e imagem na direita */
.card-modelo {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition-base);
}

.card-modelo:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.card-modelo-content {
  flex: 1;
  padding-right: 16px;
  text-align: left;
}

.modelo-name {
  color: var(--color-dark);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.modelo-desc {
  color: var(--color-gray);
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 0;
}

.card-modelo-img {
  width: 50%;
  max-width: 180px;
  flex-shrink: 0;
  text-align: right;
}

.card-modelo-img img {
  max-height: 120px;
  object-fit: contain;
  margin-left: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
}


/* ─────────────────────────────────────────────
   7. SEÇÃO 7 – PRESENTES EXCLUSIVOS
───────────────────────────────────────────── */
.section-presentes {
  background-image: url('../img/bg-sec-7.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  position: relative;
  padding-bottom: 27px;


}


.presentes-img-wrapper .img-fluid-mobile {

  animation: floatBrinde 4s ease-in-out infinite;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.25));
}

.presentes-content-row {
  max-width: 978px;
  width: 100%;
}

.presentes-title {
  color: var(--color-white);
  font-size: 48px;
  font-weight: 800;
  line-height: 48px;
  margin-bottom: 24px;
}

.presentes-desc {
  color: var(--color-white);
  font-size: 24px;
  margin-bottom: 0;
}

.presentes-img-wrapper {
  position: relative;
  display: inline-block;
  padding: 20px;
}





@keyframes floatBrinde {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@media (max-width: 991.98px) {
  .img-fluid-mobile {
    max-width: 100%;
    height: auto;
  }
}


/* ─────────────────────────────────────────────
   8. SEÇÃO 6 – COMPARE, DIRIJA E UNIDADES
───────────────────────────────────────────── */
.section-unidades {
  background-image: url('../img/bg-sec-6.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 123px 0 60px;
  overflow: hidden;
}

.unidades-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/unidades/unidades-bg.jpg');
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  z-index: 1;
}

.unidades-title {
  color: var(--color-btn-red);
  font-size: 48px;
  font-weight: bold;
  line-height: 48px;
  margin-bottom: 0;
}

.unidades-desc {
  color: var(--color-white);
  font-size: 32px;
  line-height: 38px;
}

.unidades-desc-sub {
  color: var(--color-white);
  font-size: 32px;
  line-height: 38px;
  margin-bottom: 24px;
}

.unidades-lojas-subtitle {
  color: var(--color-white);
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  margin-bottom: 16px;
}

/* Links dinâmicos das Concessionárias (Imagens Consolidadas) */
.loja-link {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
}

.loja-link:hover {
  transform: translateY(-6px) scale(1.02);
  filter: drop-shadow(0 15px 35px rgba(200, 16, 46, 0.3));
}


/* ─────────────────────────────────────────────
   8B. SEÇÃO 8 – FORMULÁRIO DE CONVERSÃO E ENCERRAMENTO
───────────────────────────────────────────── */
.section-formulario {
  background-color: #D4D4D4;
  padding: 45px 0 39px;
  position: relative;
}


.section-formulario .row-1 {
  max-width: 1095px;
  margin: 0 auto;
}

.form-section-title {
  color: var(--color-dark);
  font-size: 48px;
  font-weight: 800;
  line-height: 48px;
  letter-spacing: -0.5px;
  margin-bottom: 0;
}

.form-section-desc {
  color: #000000;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 0;
  max-width: 936px;
  margin: 0 auto;
}

.form-check.form-check-1 {
  padding-left: 0px !important;
}

.form-card {
  background-color: var(--color-white);
  padding: 48px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-card .form-input {
  background-color: #D6D6D6;
  border: none;
  border-radius: 6px;
  height: 54px;
  padding: 0 20px;
  font-size: 16px;
  color: var(--color-dark);
  font-weight: 500;
}

.form-card .form-input::placeholder {
  color: #7D7D7D;
}

.form-card .form-input:focus {
  background-color: #CDCDCD;
  box-shadow: none;
  outline: 2px solid var(--color-red);
}

/* Customização dos Radio Buttons */
.custom-radio {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-dark);
  cursor: pointer;
}

.custom-radio:checked {
  background-color: var(--color-dark);
  border-color: var(--color-dark);
}

.form-alert-text {
  color: var(--color-dark);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  max-width: 800px;
}

.form-submit-btn {
  font-size: 24px;
  font-weight: 800;
  padding: 16px 40px;
  letter-spacing: -0.5px;
}


/* ─────────────────────────────────────────────
   8C. SEÇÃO 9 – CONDIÇÕES GERAIS E RODAPÉ
───────────────────────────────────────────── */
.section-condicoes {
  background-color: var(--color-white);
  padding: 40px 0 30px;
}

.condicoes-title {
  color: var(--color-dark);
  font-size: 48px;
  font-weight: 800;
  line-height: 48px;
  margin-bottom: 0;
}

.condicoes-text {
  color: #000000;
  font-size: 16px;
  line-height: 15px;
  text-align: justify;
  margin-bottom: 0;
}

.footer-logos .footer-logo-img {
  max-height: 65px;
  object-fit: contain;
}


/* ─────────────────────────────────────────────
   9. RESPONSIVIDADE – GERAL
───────────────────────────────────────────── */
@media (min-width: 1024.98px) {
  .lote-text-col {
    padding-top: 35px;
  }

  .lote-cars-wrapper img {
    position: absolute;
    top: -269px;
    left: -283px;
  }


  .section-unidades .btn {
    font-size: 31px;
    padding: 14px;

  }

  .presentes-img-wrapper .img-fluid-mobile {
    position: absolute;
    top: -227px;
    right: -133px;
    animation: floatBrinde 4s ease-in-out infinite;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.25));
  }

  .section-presentes .row-button {
    margin-top: 186px !important;
  }

}

@media (max-width: 1399.98px) {
  .hero-car {
    width: 31vw;
    /* Enxuga proporcionalmente a largura para monitores médios */
  }

  .hero-car--left {
    bottom: 12%;
    transform: translateX(-16%);
  }

  .hero-car--right {
    bottom: 15%;
    transform: translateX(18%);
  }
}

@media (max-width: 991.98px) {
  br {
    display: none;
  }

  .hero-car {
    width: 48%;
  }


}

@media (max-width:991.98px) {
  .hero-bg {
    height: auto;
    padding-top: 0px;

  }

  .hero-bg .hero-tagline {
    margin-top: -8px;
  }

  .section-hero {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .hero-cars {
    display: none;
  }


  .hero-content {
    padding-bottom: 43px !important;
  }

  .countdown-card__timer {
    padding: 5px 0px;
  }

  p,
  p * {
    font-size: 16px !important;
    line-height: 24px !important;
  }

  .form-check {
    padding-left: 0px !important;
  }


  /* Padronização Universal de Títulos no Mobile */
  .hero-tagline,
  .challenge-title,
  .vantagens-title,
  .modelos-title,
  .unidades-title,
  .lote-title,
  .presentes-title,
  .form-section-title,
  .condicoes-title,
  .avaliacao-main-text,
  .avaliacao-main-text * {
    font-size: 24px !important;
    line-height: 27px !important;
  }

  .btn-pill {
    font-size: 17px;
    padding: 10px 8px;
  }

  .countdown-card__header {
    font-size: 24px;
  }

  .countdown-card__title {
    font-size: 18px;
  }

  .vantagens-subtitle {
    font-size: 18px;
  }

  .avaliacao-main-text {
    font-size: 24px;
    line-height: 32px;
  }

  .section-vantagens {
    padding-bottom: 43px;

  }

  .card-vantagem-header {
    min-height: 184px;
    margin-top: -66px;
  }

  #vantagens .g-4 {
    gap: 28px !important;
  }

  .vantagens-grid {
    margin-top: -9px;
  }

  .card-vantagem-header img {
    width: 68px;
  }

  .vantagem-item-title {
    font-size: 20px;
    line-height: 25px;
  }

  .alerta-icon-top img {
    width: 64px;

  }

  .alerta-box {
    padding: 40px 48px 40px;
    margin: 50px auto 39px;
  }

  .brinde-icon {
    margin-left: -12px;
  }

  .brinde-box {
    padding: 8px 20px 8px 10px;
    border-radius: 50px;
  }

  .brinde-icon {
    width: 75px;
    height: 75px;
    margin-top: -15px;
    margin-bottom: -15px;
    margin-left: -20px;
    margin-right: 12px;
  }

  .section-modelos {
    padding: 30px 0 57px;
  }

  .brinde-text {
    font-size: 18px;
  }

  .section-hero {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 220px;
    /* espaço para carros embaixo */
  }

  .hero-car {
    width: 52%;
  }

  .hero-car--left {
    transform: translateX(-8%);
  }

  .hero-car--right {
    transform: translateX(8%);
  }

  .hero-logo img {
    max-width: 300px;
  }

  .benefit-label {
    font-size: 0.88rem;
  }

  .hero-benefit-divider {
    display: none;
  }

  .hero-benefits {
    flex-direction: column;
    gap: 12px !important;
  }

  /* Ajustes da Seção 4 no mobile */
  .selo-seminovo {
    position: static;
    transform: none;
    margin: 20px auto 0;
  }

  .avaliacao-main-text {
    font-size: 1.15rem;
  }

  .alerta-text {
    font-size: 1.1rem;
  }

  .brinde-text {
    font-size: 0.85rem;
  }

  /* Ajustes da Seção 5 no mobile */
  .card-modelo {
    flex-direction: column;
    text-align: center;
  }

  .card-modelo-content {
    padding-right: 0;
    margin-bottom: 16px;
    text-align: center;
  }

  .card-modelo-img {
    width: 100%;
    max-width: 220px;
    text-align: center;
  }

  .card-modelo-img img {
    margin: 0 auto;
  }

  .section-unidades {
    padding: 30px 0 60px;
  }

  .section-presentes {
    padding: 30px 0 27px;
  }

  .section-formulario {
    padding: 30px 0 39px;
  }
}

@media (max-width: 575.98px) {
  .hero-car {
    width: 55%;
  }
}