/* ============================================
   048 TURISMO — Site Institucional
   Estilos para paginas institucionais:
   home, sobre, frota, contato, trabalhe-conosco,
   plantao, privacidade, termos.

   Este arquivo sera preenchido nas fases seguintes.
   ============================================ */


/* ---------- HOME — SERVICO CARDS LINK ---------- */
.card--servico {
  text-decoration: none;
  display: block;
  cursor: pointer;
  position: relative;
}

.card--servico:hover .card__title {
  color: var(--orange);
}

/* Badge pequeno no topo do card */
.card__badge-top {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--orange);
  background: rgba(255, 102, 0, 0.08);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}

/* ---------- DIFERENCIAIS GRID 3 COLUNAS (3x2) ---------- */
#diferenciais .diferenciais__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  #diferenciais .diferenciais__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  #diferenciais .diferenciais__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- HOME — FROTA GRID 3 COLUNAS ---------- */
.frota__grid--3col {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .frota__grid--3col {
    grid-template-columns: repeat(3, 1fr);
  }
}

.frota__grid--2col {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .frota__grid--2col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin-inline: auto;
  }
}


.frota__grid--4col {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .frota__grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .frota__grid--4col {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ---------- GRID 3x2 CENTRALIZADO (5 items) ---------- */
.frota__grid--3x2 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .frota__grid--3x2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .frota__grid--3x2 {
    grid-template-columns: repeat(6, 1fr);
  }
  .frota__grid--3x2 > :nth-child(1) { grid-column: 1 / span 2; }
  .frota__grid--3x2 > :nth-child(2) { grid-column: 3 / span 2; }
  .frota__grid--3x2 > :nth-child(3) { grid-column: 5 / span 2; }
  .frota__grid--3x2 > :nth-child(4) { grid-column: 2 / span 2; }
  .frota__grid--3x2 > :nth-child(5) { grid-column: 4 / span 2; }
}


/* ---------- VEICULOS RELACIONADOS — 5 COLUNAS ---------- */
.frota__related-5col {
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .frota__related-5col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .frota__related-5col {
    grid-template-columns: repeat(5, 1fr);
  }
}


/* ---------- NO-HERO HEADER FIX ---------- */
/* Paginas sem .page-hero (fundo navy) precisam de header opaco */
.page--no-hero .header {
  background: rgba(var(--navy-rgb), 0.95);
  backdrop-filter: blur(12px);
}


/* ---------- PAGE HERO (institucional — paginas internas) ---------- */
/* Hero curto, centralizado, sem parallax — para sobre, contato, etc. */
.page-hero {
  background: var(--navy);
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
  text-align: center;
  color: var(--white);
}

.page-hero__title {
  font-size: var(--fs-3xl);
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

.page-hero__subtitle {
  font-size: var(--fs-base);
  color: var(--white-alpha-75);
  max-width: 600px;
  margin: 0 auto;
}


/* ---------- HERO CTAs (2 botoes lado a lado) ---------- */
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}


/* ---------- CONTENT BLOCK (texto longo centrado) ---------- */
.content-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.content-block__title {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}

.content-block__text {
  font-size: var(--fs-base);
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.content-block__text:last-child {
  margin-bottom: 0;
}


/* ---------- DIFERENCIAL LIST (check + texto em grid) ---------- */
.diferencial-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

.diferencial-list__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.diferencial-list__item:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
}

.diferencial-list__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--orange-rgb), 0.1);
  border-radius: 50%;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.diferencial-list__text {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--gray-800);
}

@media (min-width: 768px) {
  .diferencial-list {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}


/* ---------- SEGMENTOS GRID ---------- */
.segmentos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

.segmentos__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--gray-50);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.segmentos__item:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.segmentos__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--navy-rgb), 0.06);
  border-radius: var(--radius-sm);
  color: var(--navy);
  flex-shrink: 0;
}

.segmentos__text {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--gray-800);
}

@media (min-width: 768px) {
  .segmentos__grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ---------- MEDIA GRID (press/mídia cards) ---------- */
.media__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.media__card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition);
}

.media__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.media__card-thumb {
  position: relative;
  background: var(--gray-100);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  overflow: hidden;
}

.media__card-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media__card-thumb svg {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
  color: var(--white);
}

.media__card-thumb img + svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(0,0,0,.45);
  border-radius: 50%;
  padding: 14px;
}

.media__card-body {
  padding: var(--space-lg);
}

.media__card-source {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.media__card-title {
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .media__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
  }
}


/* ---------- STATS GRID — 4 COLUMNS (sobre) ---------- */
.stats-grid--4col {
  max-width: 900px;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .stats-grid--4col {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ---------- CARD SERVICO CTA LINK ---------- */
.card__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--orange);
  margin-top: var(--space-md);
  transition: gap var(--transition);
}

.card--servico:hover .card__cta {
  gap: var(--space-sm);
}


/* ---------- CONTENT LAYOUTS ---------- */
/* Layouts de texto para sobre, privacidade, termos */


/* ---------- CONTACT PAGE ---------- */
/* Grid: formulario + mapa + dados de contato */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: stretch;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid__info {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-grid__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.card--contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-xs);
  padding: var(--space-lg);
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}

.card--contact:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card--contact strong {
  font-size: var(--fs-md);
  color: var(--navy);
}

.card--contact span {
  font-size: var(--fs-sm);
  color: var(--gray-600);
}

@media (max-width: 767px) {
  .contact-grid__info {
    grid-template-columns: 1fr 1fr;
  }

  .card--contact {
    padding: var(--space-md);
  }
}

/* Outros Canais — inline */
.canais-inline {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: nowrap;
}

.canais-inline .card--diferencial {
  flex: 1;
  max-width: 280px;
}

@media (max-width: 767px) {
  .canais-inline {
    flex-wrap: wrap;
  }
}


/* ---------- FLEET PAGE ---------- */
/* Cards por categoria, filtros, galeria */


/* ---------- CAREERS PAGE ---------- */
/* Cultura, beneficios, formulario */


/* ---------- EMERGENCY PAGE ---------- */
/* Cards de contato plantao 24h */


/* ---------- BREADCRUMBS ---------- */
.breadcrumb {
  padding: calc(var(--header-height) + var(--space-md)) 0 var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--gray-500);
}

.breadcrumb a {
  color: var(--gray-500);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb__separator {
  margin: 0 var(--space-xs);
  color: var(--gray-400);
}

.breadcrumb__current {
  color: var(--navy);
  font-weight: 600;
}


/* ---------- VEHICLE DETAIL PAGE ---------- */
.vehicle-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 768px) {
  .vehicle-hero {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

.vehicle-hero__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.vehicle-hero__title {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
}

.vehicle-hero__desc {
  font-size: var(--fs-base);
  color: var(--gray-600);
  line-height: 1.7;
}

.vehicle-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.vehicle-hero__badges .badge {
  background: var(--gray-100);
  color: var(--navy);
  border: 1px solid var(--gray-200);
  font-size: var(--fs-xs);
  font-weight: 600;
}

.vehicle-hero__stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.vehicle-hero__stats > div {
  min-width: 0;
}

.vehicle-hero__stats .btn {
  flex-shrink: 0;
}

.vehicle-hero__stat-number {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--navy);
  white-space: nowrap;
}

.vehicle-hero__stat-label {
  font-size: var(--fs-xs);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vehicle-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* Gallery Swiper */
.vehicle-hero__gallery {
  min-width: 0;
}

.vehicle-hero__gallery .swiper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.vehicle-hero__gallery .swiper-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .vehicle-hero__gallery .swiper-slide img {
    height: 280px;
  }
}

.vehicle-hero__gallery .swiper-pagination-bullet-active {
  background: var(--orange);
}

.vehicle-hero__gallery .swiper-button-next,
.vehicle-hero__gallery .swiper-button-prev {
  color: var(--white);
  background: rgba(0, 0, 0, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.vehicle-hero__gallery .swiper-button-prev::after {
  content: '\2039';
  font-family: inherit;
  font-size: 1rem;
}
.vehicle-hero__gallery .swiper-button-next::after {
  content: '\203a';
  font-family: inherit;
  font-size: 1rem;
}

/* ---------- GALLERY THUMBNAILS ---------- */
.vehicle-hero__thumbs {
  display: flex;
  gap: var(--space-xs);
  margin-top: var(--space-sm);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.vehicle-hero__thumbs::-webkit-scrollbar {
  display: none;
}

.vehicle-hero__thumb {
  flex: 0 0 auto;
  width: 64px;
  height: 48px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition), border-color var(--transition);
  padding: 0;
  background: none;
}

.vehicle-hero__thumb:hover {
  opacity: 0.9;
}

.vehicle-hero__thumb.is-active {
  opacity: 1;
  border-color: var(--orange);
}

.vehicle-hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* "Ideal Para" section */
.vehicle-ideal__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .vehicle-ideal__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .vehicle-ideal__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .vehicle-ideal__grid--5col {
    grid-template-columns: repeat(5, 1fr);
  }
}

.vehicle-ideal__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all var(--transition);
}

.vehicle-ideal__card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}

.vehicle-ideal__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 102, 0, 0.1);
  border-radius: var(--radius-md);
  color: var(--orange);
}

.vehicle-ideal__title {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.vehicle-ideal__desc {
  font-size: var(--fs-xs);
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
}

/* Vehicle Cards Grid */
.vehicle-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .vehicle-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vehicle-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.vehicle-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.vehicle-card__slider {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--gray-100);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.vehicle-card__slider .swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.vehicle-card__slider .swiper-slide {
  overflow: hidden;
}

.vehicle-card__slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vehicle-card__slider .swiper-pagination-bullet-active {
  background: var(--orange);
}

.vehicle-card__slider .swiper-button-next,
.vehicle-card__slider .swiper-button-prev {
  color: var(--white);
  background: var(--black-alpha-35);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background var(--transition);
}

.vehicle-card__slider .swiper-button-next:hover,
.vehicle-card__slider .swiper-button-prev:hover {
  background: var(--black-alpha-55);
}

.vehicle-card__slider .swiper-button-prev::after {
  content: '\2039';
  font-family: inherit;
  font-size: 0.875rem;
}
.vehicle-card__slider .swiper-button-next::after {
  content: '\203a';
  font-family: inherit;
  font-size: 0.875rem;
}

.vehicle-card__body {
  padding: var(--space-md);
}

/* Botão "Ver Detalhes" — alinhado com .frota__card-btn (categoria) */
.vehicle-card .btn--primary {
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
}

.vehicle-card__badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-xs);
}

.vehicle-card__name {
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.vehicle-card__capacity {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 800;
  color: var(--orange);
  margin-bottom: var(--space-sm);
}

.vehicle-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vehicle-card__feature {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--fs-xs);
  color: var(--gray-600);
  background: var(--gray-50);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.vehicle-card__feature svg {
  color: var(--orange);
  flex-shrink: 0;
}

/* PDF Button */
.btn--pdf {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}

.btn--pdf:hover {
  background: var(--navy);
  color: var(--white);
}

/* ---------- SOBRE PAGE — STATS 3 COLUNAS ---------- */
#numeros .stats-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 480px) {
  #numeros .stats-grid {
    grid-template-columns: 1fr;
  }
}


/* ---------- SOBRE PAGE — VALORES GRID 4 COLUNAS ---------- */
#valores .diferenciais__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  #valores .diferenciais__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  #valores .diferenciais__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ---------- SOBRE PAGE — COMPLIANCE CARDS ---------- */
#compliance .seguranca__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

#compliance .seguranca__card {
  background: var(--white-alpha-06);
  border: 1px solid var(--white-alpha-10);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: background var(--transition), border-color var(--transition);
}

#compliance .seguranca__card:hover {
  background: var(--white-alpha-10);
  border-color: var(--orange);
}

#compliance .seguranca__card-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xs);
}

#compliance .seguranca__card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 102, 0, 0.15);
  border-radius: var(--radius-sm);
  color: var(--orange-light);
  flex-shrink: 0;
}

#compliance .seguranca__card h3 {
  font-size: var(--fs-base);
  font-weight: 800;
  color: var(--white);
  margin: 0;
}

#compliance .seguranca__card p {
  font-size: var(--fs-sm);
  color: var(--white-alpha-60);
  line-height: 1.5;
}

@media (min-width: 768px) {
  #compliance .seguranca__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  #compliance .seguranca__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ========== VEHICLE DETAIL PAGE (.vdetail-*) ========== */
/* Pagina individual de veiculo — media-first layout com
   galeria, video, lightbox e CTA flutuante mobile */

/* --- Hero: Media + Info grid --- */
.vdetail-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 768px) {
  .vdetail-hero {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .vdetail-hero {
    grid-template-columns: 3fr 2fr;
    gap: clamp(2rem, 3vw, 3rem);
  }
}

/* --- Media column --- */
.vdetail-hero__media {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  min-width: 0;
}

/* Vertical video: side-by-side with gallery on desktop */
@media (min-width: 768px) {
  .vdetail-hero__media--vertical {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr auto;
    gap: var(--space-sm);
  }
  .vdetail-hero__media--vertical .vdetail-hero__video {
    grid-row: 1 / 3;
    max-width: 260px;
    height: 100%;
  }
  .vdetail-hero__media--vertical .vdetail-hero__video--vertical {
    max-height: 440px;
    margin: 0;
    width: 100%;
  }
  .vdetail-hero__media--vertical .vdetail-hero__gallery {
    grid-column: 2;
  }
  .vdetail-hero__media--vertical .vdetail-hero__thumbs {
    grid-column: 1 / -1;
  }
}

/* --- Reels layout: info+gallery left, video right (9:16) --- */

/* Tablet (768px+): 2-column with fixed video width */
@media (min-width: 768px) {
  .vdetail-hero--reels {
    grid-template-columns: 1fr 220px;
    grid-template-rows: auto auto;
    grid-template-areas:
      "info  video"
      "media video";
    gap: var(--space-lg);
    align-items: start;
  }

  /* Info: compact, no sticky, tight gap */
  .vdetail-hero--reels > .vdetail-hero__info {
    grid-area: info;
    position: static;
    gap: var(--space-xs);
  }

  /* Gallery: below info */
  .vdetail-hero--reels > .vdetail-hero__media {
    grid-area: media;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
  }

  /* Video: sticky 9:16 column */
  .vdetail-hero--reels > .vdetail-hero__video {
    grid-area: video;
    position: sticky;
    top: calc(var(--header-height, 72px) + var(--space-lg));
    width: 100%;
    aspect-ratio: 9/16;
    margin: 0;
    background: var(--gray-900);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18),
                0 2px 12px rgba(0, 0, 0, 0.08);
  }

  /* Override base --vertical rules inside reels */
  .vdetail-hero--reels > .vdetail-hero__video--vertical {
    width: 100%;
    max-width: none;
    max-height: none;
    aspect-ratio: 9/16;
    margin: 0;
  }

  .vdetail-hero--reels > .vdetail-hero__video video {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    display: block;
  }

  .vdetail-hero--reels .vdetail-hero__gallery .swiper-slide img {
    height: 240px;
  }

  /* --- Reels info refinements --- */

  /* Badge: prevent flex stretch, keep inline */
  .vdetail-hero--reels .vdetail-hero__info > .badge {
    align-self: flex-start;
  }

  /* Title: slightly smaller for balance */
  .vdetail-hero--reels .vdetail-hero__title {
    font-size: var(--fs-xl);
  }

  /* Description: compact, add breathing room above */
  .vdetail-hero--reels .vdetail-hero__desc {
    font-size: var(--fs-sm);
    line-height: 1.65;
    margin-top: var(--space-xs);
  }

  /* Badges row: tighter, breathing room below */
  .vdetail-hero--reels .vdetail-hero__badges {
    gap: 4px;
    margin-bottom: var(--space-xs);
  }
  .vdetail-hero--reels .vdetail-hero__badges .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.625rem;
  }

  /* Stats + Actions: same row */
  .vdetail-hero--reels .vdetail-hero__stats {
    padding: var(--space-sm) 0;
    gap: var(--space-lg);
    border-bottom: none;
    align-items: center;
    flex-wrap: wrap;
  }
  .vdetail-hero--reels .vdetail-hero__stat-number {
    font-size: var(--fs-lg);
  }
  .vdetail-hero--reels .vdetail-hero__stats > .vdetail-hero__actions {
    padding-top: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
  }
  /* Push stats numbers to the right, centered text */
  .vdetail-hero--reels .vdetail-hero__stats > .vdetail-hero__actions ~ div {
    margin-left: auto;
    text-align: center;
  }
  .vdetail-hero--reels .vdetail-hero__stats > .vdetail-hero__actions ~ div ~ div {
    margin-left: 0;
    text-align: center;
  }

  /* A11y: tighter */
  .vdetail-hero--reels .vdetail-hero__a11y {
    margin-top: 0;
  }
}

/* Desktop (1024px+): wider video, restore info sizes */
@media (min-width: 1024px) {
  .vdetail-hero--reels {
    grid-template-columns: 1fr 280px;
    gap: var(--space-xl);
  }
  .vdetail-hero--reels > .vdetail-hero__info {
    gap: var(--space-sm);
  }
  .vdetail-hero--reels .vdetail-hero__title {
    font-size: var(--fs-2xl);
  }
  .vdetail-hero--reels .vdetail-hero__desc {
    font-size: var(--fs-sm);
    margin-top: var(--space-xs);
  }
  .vdetail-hero--reels .vdetail-hero__badges .badge {
    font-size: var(--fs-xs);
    padding: 0.375rem 0.875rem;
  }
  .vdetail-hero--reels .vdetail-hero__stats {
    padding: var(--space-sm) 0;
    border-bottom: none;
    align-items: center;
  }
  .vdetail-hero--reels .vdetail-hero__gallery .swiper-slide img {
    height: 380px;
  }
}

/* Wide (1280px+) */
@media (min-width: 1280px) {
  .vdetail-hero--reels {
    grid-template-columns: 1fr 320px;
    gap: clamp(2rem, 3vw, 3rem);
  }
  .vdetail-hero--reels .vdetail-hero__gallery .swiper-slide img {
    height: 460px;
  }
}

/* Reels — Mobile (< 768px): vídeo logo após info, antes da galeria */
@media (max-width: 767px) {
  .vdetail-hero--reels {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
  }
  .vdetail-hero--reels > .vdetail-hero__info  { order: 1; }
  .vdetail-hero--reels > .vdetail-hero__video { order: 2; max-height: 480px; align-self: center; }
  .vdetail-hero--reels > .vdetail-hero__media { order: 3; }
}

/* --- Video container --- */
.vdetail-hero__video {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-900);
  box-shadow: var(--shadow-lg);
  position: relative;
}

/* Subtle gradient overlay at bottom for depth */
.vdetail-hero__video::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.08), transparent);
  pointer-events: none;
  z-index: 1;
}

.vdetail-hero__video--youtube {
  aspect-ratio: 16/9;
}

.vdetail-hero__video--youtube lite-youtube {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
}

.vdetail-hero__video--native video {
  width: 100%;
  max-height: 500px;
  display: block;
  object-fit: contain;
  background: #000;
}

.vdetail-hero__video--native.vdetail-hero__video--vertical video {
  height: 100%;
  max-height: 500px;
  object-fit: cover;
}

.vdetail-hero__video--horizontal {
  aspect-ratio: 16/9;
}

.vdetail-hero__video--vertical {
  aspect-ratio: 9/16;
  max-height: 500px;
  margin: 0 auto;
  width: auto;
  max-width: 100%;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18), 0 2px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
  .vdetail-hero__video--vertical {
    max-height: 420px;
  }
}

/* --- Main gallery (Swiper) --- */
.vdetail-hero__gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.vdetail-hero__gallery .swiper-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 767px) {
  .vdetail-hero__gallery .swiper-slide img {
    height: 320px;
  }
}

/* Centralizar indicadores de paginação do carrossel */
.vdetail-hero__gallery .swiper-pagination {
  left: 0;
  right: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

/* Subtle Ken Burns on active slide */
.vdetail-hero__gallery .swiper-slide-active img {
  transform: scale(1.04);
}

/* Fix L0-5: Swiper em flex column sem largura definida calcula width absurdo
   (22M+ px em mobile com loop:true). Constrange explicitamente. */
.vdetail-hero__media,
.vdetail-hero__gallery,
.vdetail-hero__gallery .swiper,
.vdetail-hero__gallery .swiper-slide,
.vdetail-hero__gallery .swiper-slide img {
  max-width: 100%;
}
.vdetail-hero__gallery .swiper {
  width: 100%;
}
.vdetail-hero__gallery .swiper-slide img {
  width: 100%;
  object-fit: cover;
}

/* Gallery height: quando há vídeo reels, ocupa o espaço disponível ao lado do vídeo */
.vdetail-hero__media--has-video .vdetail-hero__gallery .swiper-slide img {
  height: 300px;
}

@media (max-width: 767px) {
  .vdetail-hero__media--has-video .vdetail-hero__gallery .swiper-slide img {
    height: 240px;
  }
}

@media (min-width: 1024px) {
  .vdetail-hero__media--has-video .vdetail-hero__gallery .swiper-slide img {
    height: 300px;
  }
  /* Reduzir espaço entre info e media no layout reels */
  .vdetail-hero--reels {
    row-gap: var(--space-sm);
  }
}

@media (min-width: 1280px) {
  .vdetail-hero__media--has-video .vdetail-hero__gallery .swiper-slide img {
    height: 360px;
  }
}

.vdetail-hero__gallery .swiper-button-prev,
.vdetail-hero__gallery .swiper-button-next {
  color: var(--white);
  background: rgba(0, 0, 0, 0.3);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background var(--transition), transform var(--transition);
}

.vdetail-hero__gallery .swiper-button-prev:hover,
.vdetail-hero__gallery .swiper-button-next:hover {
  background: rgba(0, 0, 0, 0.5);
  transform: scale(1.08);
}

.vdetail-hero__gallery .swiper-button-prev:focus-visible,
.vdetail-hero__gallery .swiper-button-next:focus-visible,
.vehicle-card__slider .swiper-button-prev:focus-visible,
.vehicle-card__slider .swiper-button-next:focus-visible,
.vehicle-hero__gallery .swiper-button-prev:focus-visible,
.vehicle-hero__gallery .swiper-button-next:focus-visible,
.vdetail-lightbox .swiper-button-prev:focus-visible,
.vdetail-lightbox .swiper-button-next:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.vdetail-hero__gallery .swiper-button-prev::after {
  content: '\2039';
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
}
.vdetail-hero__gallery .swiper-button-next::after {
  content: '\203a';
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
}

.vdetail-hero__gallery .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--white);
  opacity: 0.5;
  transition: all var(--transition);
}

.vdetail-hero__gallery .swiper-pagination-bullet-active {
  background: var(--orange);
  opacity: 1;
  width: 24px;
  border-radius: var(--radius-pill);
}

/* --- Thumbnail strip --- */
.vdetail-hero__thumbs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 3px;
}

.vdetail-hero__thumbs::-webkit-scrollbar {
  display: none;
}

.vdetail-hero__thumb {
  flex: 0 0 auto;
  width: 76px;
  height: 54px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition), opacity var(--transition), transform var(--transition);
  position: relative;
  opacity: 0.6;
}

.vdetail-hero__thumb:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.vdetail-hero__thumb:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  opacity: 1;
}

.vdetail-hero__thumb.is-active {
  border-color: var(--orange);
  opacity: 1;
  box-shadow: 0 2px 8px rgba(255, 102, 0, 0.25);
}

.vdetail-hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vdetail-hero__thumb--video::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
}

.vdetail-hero__thumb--video::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent var(--white);
}

/* --- Info panel --- */
.vdetail-hero__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .vdetail-hero__info {
    position: sticky;
    top: calc(var(--header-height) + var(--space-lg));
  }
}

.vdetail-hero__title {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
}

.vdetail-hero__desc {
  font-size: var(--fs-base);
  color: var(--gray-600);
  line-height: 1.75;
  margin: 0;
}

.vdetail-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vdetail-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  position: relative;
}

.vdetail-hero__stats > div {
  min-width: 0;
}

/* Orange accent line on stats top border */
.vdetail-hero__stats::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--orange);
}

.vdetail-hero__stat-number {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  white-space: nowrap;
}

.vdetail-hero__stat-label {
  font-size: var(--fs-xs);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  font-weight: 600;
}

.vdetail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  padding-top: var(--space-xs);
}

.vdetail-hero__actions .btn,
.vdetail-hero__actions .btn--pdf {
  white-space: nowrap;
}

/* --- Accessibility badge --- */
.vdetail-hero__a11y {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  margin-top: var(--space-xs);
}

.vdetail-hero__a11y svg {
  flex-shrink: 0;
  color: var(--gray-400);
}

/* --- Value Proposition section --- */
.vdetail-value__text {
  font-size: var(--fs-base);
  color: var(--gray-700);
  line-height: 1.85;
  max-width: 900px;
  margin: 0 auto var(--space-2xl);
}

@media (min-width: 1024px) {
  .vdetail-value__text {
    columns: 2;
    column-gap: var(--space-3xl);
    column-rule: 1px solid var(--gray-200);
  }
}

.vdetail-value__text p {
  margin: 0 0 var(--space-md);
  break-inside: avoid;
}

.vdetail-value__text p:first-child::first-line {
  font-weight: 600;
  color: var(--gray-800);
}

.vdetail-value__highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .vdetail-value__highlights {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .vdetail-value__highlights {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 5 items centralizados em layout 3+2 (linha 1: 3 cards; linha 2: 2 cards centralizados) */
@media (min-width: 1024px) {
  .vdetail-value__highlights--3x2 {
    grid-template-columns: repeat(6, 1fr);
  }
  .vdetail-value__highlights--3x2 > :nth-child(1) { grid-column: 1 / span 2; }
  .vdetail-value__highlights--3x2 > :nth-child(2) { grid-column: 3 / span 2; }
  .vdetail-value__highlights--3x2 > :nth-child(3) { grid-column: 5 / span 2; }
  .vdetail-value__highlights--3x2 > :nth-child(4) { grid-column: 2 / span 2; }
  .vdetail-value__highlights--3x2 > :nth-child(5) { grid-column: 4 / span 2; }
}

/* --- Specs grouped --- */
.vdetail-specs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .vdetail-specs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Specs group as card */
.vdetail-specs__group {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border-top: 3px solid var(--orange);
  box-shadow: var(--shadow-sm);
}

.vdetail-specs__group-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--gray-100);
}

.vdetail-specs__group-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 102, 0, 0.1);
  border-radius: var(--radius-sm);
  color: var(--orange);
  flex-shrink: 0;
}

.vdetail-specs__group-title {
  font-size: var(--fs-sm);
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

/* --- Full Gallery grid --- */
.vdetail-gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xs);
}

@media (min-width: 768px) {
  .vdetail-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
}

@media (min-width: 1024px) {
  .vdetail-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vdetail-gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/10;
  position: relative;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.vdetail-gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.15), transparent 40%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.vdetail-gallery__item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.08);
}

.vdetail-gallery__item:hover::after {
  opacity: 1;
}

.vdetail-gallery__item img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

@media (min-width: 768px) {
  .vdetail-gallery__item--featured img {
    max-height: 100%;
  }
}

.vdetail-gallery__item:hover img {
  transform: scale(1.06);
}

.vdetail-gallery__item--featured {
  grid-column: span 1;
  grid-row: span 1;
}

@media (min-width: 768px) {
  .vdetail-gallery__item--featured {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
  }
}

/* --- Lightbox --- */
.vdetail-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

.vdetail-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.vdetail-lightbox .swiper {
  width: 92vw;
  height: 88vh;
}

.vdetail-lightbox .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vdetail-lightbox .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.4);
}

.vdetail-lightbox__close {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.375rem;
  cursor: pointer;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  backdrop-filter: blur(8px);
}

.vdetail-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: rotate(90deg);
}

.vdetail-lightbox__counter {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.15em;
  font-variant-numeric: tabular-nums;
}

.vdetail-lightbox .swiper-button-prev,
.vdetail-lightbox .swiper-button-next {
  color: var(--white);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background var(--transition);
}

.vdetail-lightbox .swiper-button-prev:hover,
.vdetail-lightbox .swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.14);
}

.vdetail-lightbox .swiper-button-prev::after {
  content: '\2039';
  font-family: inherit;
  font-size: 1rem;
}
.vdetail-lightbox .swiper-button-next::after {
  content: '\203a';
  font-family: inherit;
  font-size: 1rem;
}

/* --- Sticky mobile CTA --- */
.vdetail-cta-float {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -2px 24px rgba(0, 0, 0, 0.1), 0 -1px 4px rgba(0, 0, 0, 0.04);
  padding: var(--space-sm) var(--space-md);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  /* Safe area padding for notched phones */
  padding-bottom: calc(var(--space-sm) + env(safe-area-inset-bottom, 0px));
}

.vdetail-cta-float.is-visible {
  transform: translateY(0);
}

.vdetail-cta-float .btn {
  flex: 1;
  text-align: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .vdetail-cta-float {
    display: none;
  }
}

/* --- Related vehicles --- */
.vdetail-related__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--orange);
  font-weight: 700;
  font-size: var(--fs-base);
  text-decoration: none;
  margin-top: var(--space-xl);
  transition: gap var(--transition), color var(--transition);
  letter-spacing: 0.01em;
}

.vdetail-related__link:hover {
  gap: var(--space-sm);
  color: var(--orange-hover);
}

.vdetail-related__link svg {
  transition: transform var(--transition);
}

.vdetail-related__link:hover svg {
  transform: translateX(3px);
}

.vdetail-related__categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
}

.vdetail-related__cat-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--navy);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
}

.vdetail-related__cat-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255, 102, 0, 0.04);
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .vdetail-hero__gallery .swiper-slide img,
  .vdetail-gallery__item img,
  .vdetail-lightbox__close,
  .vdetail-cta-float {
    transition: none;
  }
  .vdetail-hero__gallery .swiper-slide-active img {
    transform: none;
  }
}


/* ---------- COMPLIANCE BANNER ---------- */
.compliance-banner {
  position: relative;
  overflow: hidden;
}

.compliance-banner__bg {
  position: absolute;
  inset: 0;
  background: url('/assets/images/banners/frota.webp') center calc(50% - 40px) / cover no-repeat;
  z-index: 0;
}

.compliance-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--navy-rgb), 0.88) 0%, rgba(var(--navy-rgb), 0.75) 100%);
  z-index: 1;
}

.compliance-banner > .container {
  position: relative;
  z-index: 2;
}


/* ---------- SECTION BANNER (reusable) ---------- */
.section-banner {
  position: relative;
  overflow: hidden;
}

.section-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}

.section-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--navy-rgb), 0.88) 0%, rgba(var(--navy-rgb), 0.75) 100%);
  z-index: 1;
}

.section-banner > .container {
  position: relative;
  z-index: 2;
}

.section-banner__bg--midia {
  background-image: url('/assets/images/banners/ponte-hercilio-luz.webp');
}

.section-banner__bg--cta {
  background-image: url('/assets/images/banners/frota-2.webp');
}


/* ---------- PARCEIROS MARQUEE ---------- */
.parceiros__marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.parceiros__track {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
  width: max-content;
  animation: marquee 50s linear infinite;
}

.parceiros__track img {
  flex-shrink: 0;
  width: 120px;
  height: 50px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.5;
  transition: filter var(--transition), opacity var(--transition);
}

.parceiros__track img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Uniasselvi e' renderizado com simbolo+texto fino; +30% para legibilidade. */
.parceiros__track img[alt="Uniasselvi"] {
  width: 156px;
  height: 65px;
}

@media (prefers-reduced-motion: reduce) {
  .parceiros__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }
  .parceiros__marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }
}


/* ---------- PROSE ---------- */
/* Tipografia para paginas legais (privacidade, termos) */
