/* Estrutura principal — tokens Canal VE (substitui vars Elementor) */
:root {
  --transition: all 0.3s ease;
  --veh-brand: var(--color-brand, #DB0000);
  --veh-brand-dark: var(--color-brand-dark, #b80000);
  --veh-heading: var(--color-text, #17171a);
  --veh-text: var(--color-text-body, #232326);
  --veh-meta: var(--color-text-meta, #9a9a9a);
  --veh-border: var(--color-border, #ececec);
  --veh-bg: var(--color-bg-section, #f3f2f0);
  --veh-font: var(--font-ui, 'Archivo', Helvetica, Arial, sans-serif);
}

.vehicle-template {
  font-family: var(--veh-font);
  color: var(--veh-text);
}

.vehicle-template h1,
.vehicle-template h2,
.vehicle-template h3,
.vehicle-template h4,
.vehicle-template button,
.vehicle-template input,
.vehicle-template select,
.vehicle-template label,
.vehicle-template legend,
.vehicle-template .page-title,
.vehicle-template .comparison-title {
  font-family: var(--veh-font);
}

.vehicle-filter-desktop {
  display: block;
}

.mobile-filter-toggle,
.mobile-filter-bottom-sheet {
  display: none;
}

.breadcrumb_last{
	color: #000 !important;
}

/* noUiSlider — visual limpo (todos os range filters) */
.vehicle-filter-form .noUi-target,
.vehicle-filter-form-mobile .noUi-target,
.range-slider.noUi-target,
.range-slider.noUi-horizontal {
  height: 3px !important;
  border: none !important;
  border-radius: 100px !important;
  background: #e5e5e5 !important;
  box-shadow: none !important;
  margin: 18px 10px 12px !important;
}

.vehicle-filter-form .noUi-base,
.vehicle-filter-form-mobile .noUi-base,
.range-slider .noUi-base {
  background: transparent;
}

.vehicle-filter-form .noUi-connect,
.vehicle-filter-form-mobile .noUi-connect,
.range-slider .noUi-connect {
  background: var(--veh-brand) !important;
  box-shadow: none !important;
}

.vehicle-filter-form .noUi-horizontal .noUi-handle,
.vehicle-filter-form-mobile .noUi-horizontal .noUi-handle,
.range-slider.noUi-horizontal .noUi-handle,
.vehicle-filter-form .noUi-handle,
.vehicle-filter-form-mobile .noUi-handle,
.range-slider .noUi-handle {
  width: 14px !important;
  height: 14px !important;
  border-radius: 50% !important;
  right: -7px !important;
  top: -6px !important;
  background: #fff !important;
  border: 2px solid var(--veh-brand) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.14) !important;
  cursor: grab;
  outline: none !important;
}

.vehicle-filter-form .noUi-handle:focus,
.vehicle-filter-form-mobile .noUi-handle:focus,
.range-slider .noUi-handle:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(219, 0, 0, 0.18) !important;
}

.vehicle-filter-form .noUi-handle::before,
.vehicle-filter-form .noUi-handle::after,
.vehicle-filter-form-mobile .noUi-handle::before,
.vehicle-filter-form-mobile .noUi-handle::after,
.range-slider .noUi-handle::before,
.range-slider .noUi-handle::after,
.noUi-handle::before,
.noUi-handle::after {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}

.range-labels {
  font-size: 12px;
  font-weight: 600;
  color: var(--veh-meta);
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  padding: 0 2px;
}

.manufacturers-strip::before,
.manufacturers-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.manufacturers-strip::before {
  left: 0;
  background: linear-gradient(to right, #f8f9fa, transparent);
}

.manufacturers-strip::after {
  right: 0;
  background: linear-gradient(to left, #f8f9fa, transparent);
}

.manufacturers-strip {
  padding: 0 10px;
}

.manufacturers-navigation {
  display: flex;
  align-items: center;
  gap: 15px;
}

.manufacturers-wrapper {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  scroll-behavior: smooth;
}

.image-caption{
	background: #fff;
    font-size: 13px;
    font-style: italic;
    text-align: center;
    padding: 3px;
    margin-bottom: 30px;
    border: solid 1px #f0f0f0;
    color: #666;
}

@media (min-width: 769px) {
  .nav-arrow {
      align-items: center;
      justify-content: center;
      top: 50%;
      width: 30px;
      height: 30px;
      background: var(--veh-heading);
      color: white;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      z-index: 10;
      transition: all 0.3s ease;
  }

  .nav-arrow:hover {
    background: var(--veh-brand);
  }

  .nav-arrow.prev {
    left: 5px;
  }

  .nav-arrow.next {
    right: 5px;
  }
}

.manufacturers-wrapper::-webkit-scrollbar {
  display: none;
}

/* Links na faixa de fabricantes */
.manufacturers-wrapper .manufacturer-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 10px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--veh-heading);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.manufacturers-wrapper .manufacturer-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--veh-heading);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1;
}

.manufacturers-wrapper .manufacturer-link span {
  position: relative;
  z-index: 2;
}

.manufacturers-wrapper .manufacturer-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.manufacturers-wrapper .manufacturer-link:hover::before {
  opacity: 1;
}

.vehicle-template {
  line-height: 1.5;
  max-width: var(--container, 1240px);
  margin: 0 auto;
  padding: 24px var(--gutter, 24px) 48px;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

.vehicle-template.vehicle-template--compare {
  padding-top: 32px;
}

#primary.content-area {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.vehicle-page-header {
  margin-bottom: 15px;
  margin-top: 15px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-title {
  color: var(--veh-heading);
  font-family: var(--veh-font);
  font-weight: 700;
  font-size: 2rem;
  margin: 0;
}

.vehicle-count {
  color: var(--veh-text);
  font-size: 0.9rem;
}

.vehicle-content-page {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  padding: 0;
}

.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 30px;
  margin-top: 20px;
}

/* Taxonomia fabricante */
.vehicle-template--taxonomy {
  padding-top: 28px;
}

.vehicle-taxonomy-header {
  display: block;
  margin: 0 0 28px;
  padding: 0;
}

.vehicle-taxonomy-header .page-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.vehicle-taxonomy-header__desc {
  max-width: 64ch;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--veh-text);
  margin: 0 0 10px;
}

.vehicle-taxonomy-header__desc p:first-child {
  margin-top: 0;
}

.vehicle-taxonomy-header__desc p:last-child {
  margin-bottom: 0;
}

.vehicle-taxonomy-header__count {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--veh-meta);
  letter-spacing: 0.02em;
}

.vehicle-content-category {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.vehicle-taxonomy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}

.vehicle-taxonomy-main {
  min-width: 0;
}

.vehicle-taxonomy-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  min-width: 0;
}

.vehicle-taxonomy-main .vehicle-archive-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* Sidebar de filtros */
.vehicle-filters-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  min-width: 0;
  max-width: 100%;
}

/* conteudo principal */
.vehicle-main-content-page {
  width: 100%;
}

.vehicle-main-content {
  font-size: 1rem;
  flex: 1;
  margin-top: 20px;
}

.vehicle-results-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.vehicle-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vehicle-sort-select {
  padding: 8px 12px;
  border: 1px solid var(--veh-border);
  border-radius: 4px;
  font-family: var(--veh-font);
  background-color: white;
  cursor: pointer;
}

/* Grid de veiculos — 4 por linha no desktop */
.vehicle-archive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.vehicle-archive-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
  display: flex;
  flex-direction: column;
  font-family: var(--veh-font);
  min-width: 0;
}

.vehicle-archive-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.comparison-table thead .vehicle-thumb {
  position: relative;
  display: block;
  max-width: 240px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.comparison-table thead th {
  padding: 20px 16px;
  vertical-align: top;
  background: #f8f9fa;
  border-bottom: 1px solid var(--veh-border);
  text-align: center;
}

.comparison-table thead th:first-child {
  background: #fff;
  border-bottom: 1px solid var(--veh-border);
}

.comparison-table thead th h3 {
  margin: 14px 0 0;
  font-size: 1.05rem;
  color: var(--veh-heading);
  font-family: var(--veh-font);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.vehicle-thumb {
  position: relative;
  display: block;
}

.vehicle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.vehicle-thumb:hover .vehicle-image {
  transform: scale(1.05);
}

.vehicle-category {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background-color: var(--veh-brand);
  color: white;
  padding: 4px 10px;
  border-radius: var(--radius-pill, 100px);
  font-family: var(--veh-font);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.vehicle-category:hover {
  color: white;
}

.vehicle-summary {
  padding: 14px 14px 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  font-family: var(--veh-font);
}

.load-more-container {
  text-align: center;
}

.vehicle-title-page {
  margin: 0 0 10px;
  font-size: 15px;
  font-family: var(--veh-font);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.vehicle-title-page a {
  color: var(--veh-heading);
  text-decoration: none;
  font-family: inherit;
  font-weight: inherit;
}

.vehicle-title-page a:hover {
  color: var(--veh-brand);
}

.vehicle-title {
  font-size: 2.2rem;
  margin: 0px;
  font-family: var(--veh-font);
  font-weight: 800;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  color: #fff !important;
}

.vehicle-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 14px;
  font-family: var(--veh-font);
  font-size: 12px;
  font-weight: 600;
  color: var(--veh-text);
}

/* FA no mesmo span do texto — força Archivo no texto e FA só no ::before */
.vehicle-meta span,
.vehicle-meta .fas,
.vehicle-meta .far,
.vehicle-meta .fab,
.vehicle-archive-item .icon-black {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--veh-font) !important;
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
  line-height: 1.3;
}

.vehicle-meta .fas::before,
.vehicle-meta .far::before,
.vehicle-meta .fab::before,
.vehicle-archive-item .icon-black::before {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900;
  font-style: normal;
  font-size: 11px;
  color: var(--veh-heading);
  flex-shrink: 0;
}

.vehicle-motor,
.vehicle-year {
  display: flex;
  align-items: center;
  gap: 5px;
}

.vehicle-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
}

.btn-ver-mais,
.btn-comparador {
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--veh-font);
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
  letter-spacing: 0.01em;
}

.btn-ver-mais,
.btn-compare {
  background-color: var(--veh-brand) !important;
  color: #fff !important;
  border: 1px solid var(--veh-brand) !important;
  cursor: pointer;
  font-family: var(--veh-font);
  font-weight: 700;
}

.btn-ver-mais:hover,
.btn-compare:hover {
  background-color: var(--veh-brand-dark) !important;
  border-color: var(--veh-brand-dark) !important;
  color: #fff !important;
}

.btn-compare.active {
  background-color: var(--veh-heading) !important;
  border-color: var(--veh-heading) !important;
  color: #fff !important;
}

.btn-comparador {
  background-color: white;
  color: var(--veh-heading);
  border: 1px solid var(--veh-heading);
}

.btn-comparador:hover {
  background-color: rgba(0, 13, 89, 0.05);
}

/* Sem resultados */
.vehicle-no-results {
  text-align: center;
  padding: 50px 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.vehicle-no-results svg {
  color: var(--veh-border);
  margin-bottom: 20px;
}

.vehicle-no-results h3 {
  color: var(--veh-heading);
  margin-bottom: 10px;
}

.vehicle-no-results p {
  color: var(--veh-text);
  margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   Página single veículo
   -------------------------------------------------------------------------- */
.vehicle-template--single {
  padding-top: 24px;
}

.vehicle-content-single {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}

.vehicle-main-column {
  min-width: 0;
}

.vehicle-specification {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0;
  border: 1px solid var(--veh-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.vehicle-header {
  position: relative;
}

.vehicle-featured-image {
  position: relative;
  height: clamp(280px, 42vw, 460px);
  overflow: hidden;
  background: #111;
}

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

.vehicle-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 35%,
    rgba(0, 0, 0, 0.55) 78%,
    rgba(0, 0, 0, 0.78) 100%
  );
  pointer-events: none;
}

.vehicle-title-container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 28px 32px;
  z-index: 1;
}

.vehicle-header__brand {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: var(--radius-pill, 100px);
  background: var(--veh-brand);
  color: #fff;
  font-family: var(--veh-font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vehicle-header__brand:hover {
  color: #fff;
  background: var(--veh-brand-dark);
}

.vehicle-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0;
  font-family: var(--veh-font);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  color: #fff !important;
}

.vehicle-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffd600;
  font-family: var(--veh-font);
}

.vehicle-content-container {
  padding: 28px;
}

.vehicle-intro {
  margin-bottom: 28px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--veh-text);
}

.vehicle-intro p:first-child {
  margin-top: 0;
}

.vehicle-intro p:last-child {
  margin-bottom: 0;
}

.specs-row {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.spec-card {
  background: var(--veh-bg);
  border-radius: 12px;
  padding: 20px 18px;
  border: 1px solid var(--veh-border);
  min-width: 0;
}

.spec-card.full-width {
  background: transparent;
  border: none;
  padding: 8px 0 0;
  margin-top: 8px;
}

.spec-card-title {
  font-size: 13px;
  color: var(--veh-heading);
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--veh-border);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--veh-font) !important;
  font-style: normal;
  line-height: 1.3;
}

.spec-card-title .fas,
.spec-card-title .far,
.spec-card-title i {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900;
  font-style: normal;
  font-size: 14px;
  color: var(--veh-brand);
  margin: 0;
  flex-shrink: 0;
}

.motor-container {
  display: grid;
  grid-column: span 1;
  overflow: hidden;
  background: var(--veh-bg);
  border: 1px solid var(--veh-border);
  border-radius: 12px;
  min-width: 0;
}

.motor-container.dual {
  grid-template-columns: 1fr 1fr;
  grid-column: span 2;
}

.motor-container .spec-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  height: 100%;
}

.motor-section {
  padding: 20px 18px;
  position: relative;
  min-width: 0;
}

.motor-section:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  right: 0;
  width: 1px;
  background: var(--veh-border);
}

.spec-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.spec-item dt {
  font-family: var(--veh-font);
  font-weight: 600;
  font-size: 13px;
  color: var(--veh-meta);
  margin: 0;
  flex-shrink: 0;
}

.spec-item dd {
  margin: 0;
  font-family: var(--veh-font);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--veh-heading);
  text-align: right;
}

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

.equipment-category {
  background: var(--veh-bg);
  border-radius: 12px;
  padding: 18px 16px;
  border: 1px solid var(--veh-border);
  min-width: 0;
}

.equipment-title {
  font-size: 13px;
  color: var(--veh-heading);
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--veh-font) !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.equipment-title .fas,
.equipment-title i {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900;
  color: var(--veh-brand);
  font-size: 13px;
}

.equipment-items {
  font-family: var(--veh-font);
  font-size: 13.5px;
  color: var(--veh-text);
  line-height: 1.5;
}

.equipment-items p {
  margin: 0 0 8px;
  padding-left: 14px;
  position: relative;
}

.equipment-items p:last-child {
  margin-bottom: 0;
}

.equipment-items p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--veh-brand);
}

/* Galeria */
.vehicle-section.gallery-section {
  margin-top: 28px;
  padding-top: 8px;
}

.gallery-section .section-title {
  font-family: var(--veh-font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--veh-heading);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--veh-border);
}

.circular-thumbnails {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scrollbar-width: thin;
}

.thumbnail {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  width: 88px;
  height: 88px;
  flex: 0 0 auto;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  background: #111;
}

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

.thumbnail:hover {
  transform: translateY(-2px);
}

.thumbnail.active {
  border-color: var(--veh-brand);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 24px;
  box-sizing: border-box;
}

.modal-content {
  position: relative;
  border-radius: 14px !important;
  width: min(1100px, 100%) !important;
  max-height: 90vh;
  border: none !important;
  overflow: hidden;
  background: #111;
}

.modal-content .modal-image {
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}

.modal-close,
.modal-prev,
.modal-next {
  position: absolute;
  z-index: 2;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--veh-heading);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.15s, transform 0.15s;
}

.modal-close:hover,
.modal-prev:hover,
.modal-next:hover {
  background: #fff;
  transform: scale(1.05);
}

.modal-close {
  top: 14px;
  right: 14px;
}

.modal-prev,
.modal-next {
  top: 50%;
  transform: translateY(-50%);
}

.modal-prev:hover,
.modal-next:hover {
  transform: translateY(-50%) scale(1.05);
}

.modal-prev { left: 14px; }
.modal-next { right: 14px; }

.modal-counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 14px;
  border-radius: var(--radius-pill, 100px);
  font-family: var(--veh-font);
  font-size: 13px;
  font-weight: 600;
  z-index: 10;
}

/* Sidebar single */
.sidebar-noticias {
  width: auto;
  min-width: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  position: sticky;
  top: 96px;
  align-self: start;
}

.vehicle-sidebar-news {
  background: #fff;
  border: 1px solid var(--veh-border);
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.vehicle-sidebar-news__title {
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--veh-border);
  font-family: var(--veh-font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--veh-heading);
  line-height: 1.3;
}

.vehicle-sidebar-news__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vehicle-sidebar-news__link {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
}

.vehicle-sidebar-news__thumb {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
}

.vehicle-sidebar-news__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-sidebar-news__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.vehicle-sidebar-news__date {
  font-family: var(--veh-font);
  font-size: 11px;
  font-weight: 700;
  color: var(--veh-meta);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.vehicle-sidebar-news__headline {
  font-family: var(--veh-font);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--veh-heading);
}

.vehicle-sidebar-news__link:hover .vehicle-sidebar-news__headline {
  color: var(--veh-brand);
}

/* veiculos relacionados */
.related-vehicles-section {
  margin-top: 28px;
}

.related-vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.related-vehicles-section .vehicle-archive-item {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.related-vehicles-section .vehicle-actions {
  display: none;
}

/* breadcrumb */
p#breadcrumbs a {
  color: var(--veh-brand);
}

/* section Principal */
.related-news {
  margin: 40px 0 0;
  padding: 0;
  max-width: none;
}

.latest-news-section {
  margin-top: 48px;
  padding-top: 8px;
}

.comparison-table .comparison-section {
  background: transparent !important;
  display: table-row !important;
}

.comparison-table .comparison-section td {
  background: var(--veh-heading) !important;
  color: #fff !important;
  font-family: var(--veh-font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 18px !important;
  border: none !important;
  border-radius: 0;
  display: table-cell !important;
}

.comparison-table .feature-label {
  font-weight: 700;
  color: var(--veh-text);
  font-size: 13.5px;
  width: 200px;
  background: #fafafa;
}

.latest-news-section .section-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-top: 20px;
}

.section-title {
  font-size: 1.5rem;
  color: var(--veh-heading);
  margin: 0;
}

.view-all {
  color: var(--veh-brand);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.view-all:hover {
  text-decoration: underline;
}

/* Grid de noticias */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

/* Cards */
.news-card {
  background: white;
  border-radius: var(--radius-card, 12px);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

/* Imagem */
.card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 50%
  );
  opacity: 0.7;
}

.card-content {
  padding: 20px;
}

.news-date {
  display: block;
  font-size: 0.85rem;
  color: var(--veh-meta);
  margin-bottom: 8px;
}

.news-title {
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: var(--veh-heading);
  line-height: 1.4;
}

.news-excerpt {
  color: var(--veh-text);
  margin: 0 0 15px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.noUi-connect {
  background: var(--veh-brand) !important;
}

.range-slider {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 0 4px;
}

.read-more {
  color: var(--veh-brand);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  transition: var(--transition);
}

.news-card:hover .read-more {
  transform: translateX(5px);
}

/* aba motor */
.filtro-tabs-internas {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.tab-btn-interno {
  padding: 8px 14px;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--veh-border);
  border-radius: 8px;
  font-family: var(--veh-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--veh-text);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.tab-btn-interno:hover {
  border-color: var(--veh-brand);
  color: var(--veh-brand);
}
.tab-btn-interno.active {
  background: var(--veh-brand);
  border-color: var(--veh-brand);
  color: #fff;
}
.tab-content-interno {
  display: none;
}
.tab-content-interno.active {
  display: block;
}

/* Container principal do form */
.vehicle-filter-form,
.vehicle-filter-form-mobile {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 20px;
  font-family: var(--veh-font);
  margin-bottom: 30px;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Grupos de filtros */
.filtro-grupo {
  border: 1px solid var(--veh-border);
  border-radius: 10px;
  padding: 14px 12px 12px;
  margin: 0 0 14px;
  background-color: var(--veh-bg);
  min-width: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  display: block;
}

.filtro-grupo:last-child {
  margin-bottom: 0;
}

.filtro-identificacao,
.filtro-dimensoes,
.filtro-motor,
.filtro-especificacoes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

/* Legenda do grupo */
.filtro-grupo legend {
  font-family: var(--veh-font);
  font-weight: 800;
  color: var(--veh-heading);
  font-size: 12px;
  padding: 0 6px;
  margin-left: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  float: none;
  width: auto;
  line-height: 1.2;
}

/* Campos individuais */
.filtro-campo {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
}

.filtro-campo:last-child {
  margin-bottom: 0;
}

.filtro-campo label {
  font-family: var(--veh-font);
  font-weight: 600;
  color: var(--veh-text);
  margin-bottom: 6px;
  font-size: 13px;
}

/* Inputs de texto */
.filtro-campo input[type="text"] {
  padding: 10px 12px;
  border: 1px solid var(--veh-border);
  border-radius: 8px;
  font-family: var(--veh-font);
  font-size: 14px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.filtro-campo input[type="text"]:focus {
  border-color: var(--veh-brand);
  outline: none;
  box-shadow: 0 0 0 2px rgba(219, 0, 0, 0.1);
}

/* Selects */
.filtro-campo select {
  padding: 10px 36px 10px 12px;
  border: 1px solid var(--veh-border);
  border-radius: 8px;
  background-color: white;
  font-family: var(--veh-font);
  font-size: 14px;
  cursor: pointer;
  appearance: none;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%237A7A7A'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 18px;
  transition: all 0.3s ease;
}

.filtro-campo select:focus {
  border-color: var(--veh-brand);
  outline: none;
  box-shadow: 0 0 0 2px rgba(219, 0, 0, 0.1);
}

.filtro-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.limpar-filtros,
.filtro-actions button,
.load-more-button {
  background-color: var(--veh-brand);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: var(--veh-font);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}

.limpar-filtros:hover,
.filtro-actions button:hover,
.load-more-button:hover {
  background-color: #c00000;
  transform: translateY(-1px);
  color: white;
}

.filtro-campo select:hover {
  border-color: var(--veh-brand);
}

.filtro-campo select option {
  padding: 8px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 100%;
  min-width: 0;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--veh-text);
  line-height: 1.35;
  margin: 0;
  word-break: break-word;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--veh-brand);
}

.vehicle-compare-checkbox {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.vehicle-compare-checkbox:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.compare-vehicle-checkbox {
  cursor: pointer;
  accent-color: var(--veh-brand);
}

.compare-vehicle-checkbox + label {
  font-size: 0.85rem;
  color: var(--veh-heading);
  cursor: pointer;
  margin-bottom: -1px;
}

/* Barra de comparação */
.compare-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.compare-bar.active {
  transform: translateY(0);
}

.compare-bar-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.compare-vehicles-container {
  display: flex;
  gap: 15px;
  flex-grow: 1;
}

.compare-vehicle-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5f5f5;
  padding: 8px;
  border-radius: 4px;
  position: relative;
}

.compare-vehicle-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}

.compare-vehicle-item .vehicle-info {
  font-size: 0.9rem;
  color: var(--veh-heading);
}

.compare-vehicle-item .remove-vehicle {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--veh-brand);
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.3s ease;
}

.compare-vehicle-item .remove-vehicle:hover {
  background: #c00000;
  transform: scale(1.1);
}

.compare-bar-actions {
  display: flex;
  gap: 10px;
}

.compare-button {
  background: var(--veh-brand) !important;
  color: #fff !important;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--veh-font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.compare-button:disabled {
  background: #c8c8c8 !important;
  color: #fff !important;
  cursor: not-allowed;
  opacity: 1;
}

.compare-button:not(:disabled):hover {
  background: var(--veh-brand-dark) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.clear-compare {
  background: transparent;
  color: var(--veh-heading);
  border: 1px solid currentColor;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--veh-font);
  font-weight: 700;
  transition: all 0.3s ease;
}

.clear-compare:hover {
  color: var(--veh-brand);
  transform: translateY(-2px);
}

/* Página comparação de veiculos */
.vehicle-template.vehicle-template--compare,
.vehicle-template .comparison-container {
  max-width: var(--container, 1240px);
  margin-left: auto;
  margin-right: auto;
}

.comparison-container {
  width: 100%;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.comparison-header {
  margin-bottom: 28px;
  text-align: left;
}

.comparison-title {
  color: var(--veh-heading);
  font-family: var(--veh-font);
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.comparison-subtitle {
  color: var(--veh-meta);
  font-size: 1rem;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--veh-border);
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--veh-border);
  font-family: var(--veh-font);
  font-size: 14px;
  vertical-align: middle;
}

.comparison-table th:first-child {
  width: 200px;
}

.comparison-table tbody tr:nth-child(even):not(.comparison-section) {
  background: #fafafa;
}

.comparison-table tbody tr.comparison-section {
  background: transparent;
}

.comparison-table .category-header {
  background: var(--veh-bg);
  font-weight: 700;
  color: var(--veh-heading);
}

.highlight {
  font-weight: 500;
  color: var(--veh-brand);
}

.share-comparison {
  margin-top: 30px;
  text-align: center;
}

.share-button {
  background: var(--veh-heading);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--veh-font);
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.share-button:hover {
  background: var(--veh-brand);
  transform: translateY(-2px);
  color: white;
}

.share-button i {
  font-size: 1.1em;
}

/* Página de Fabricantes */
.manufacturers-template {
  padding-top: 28px;
}

.manufacturers-content {
  max-width: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.manufacturers-header {
  margin-bottom: 32px;
  text-align: left;
}

.manufacturers-header .page-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.manufacturers-header .page-content {
  max-width: 64ch;
  margin: 12px 0 0;
  color: var(--veh-text);
  font-size: 15.5px;
  line-height: 1.6;
}

.manufacturers-header .page-content p:first-child {
  margin-top: 0;
}

.manufacturers-header .page-content p:last-child {
  margin-bottom: 0;
}

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

.manufacturer-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--veh-border);
  min-width: 0;
}

.manufacturer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.manufacturers-grid .manufacturer-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.manufacturer-image {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #f3f2f0;
}

.manufacturer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.manufacturer-info {
  padding: 16px 16px 18px;
}

.manufacturer-title {
  color: var(--veh-heading);
  font-size: 1.05rem;
  margin: 0 0 8px;
  font-family: var(--veh-font);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.manufacturers-grid .vehicle-count {
  color: var(--veh-meta);
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 8px;
}

.manufacturer-description {
  color: var(--veh-text);
  font-size: 13.5px;
  line-height: 1.5;
}

.no-manufacturers {
  text-align: center;
  padding: 48px 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--veh-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  font-family: var(--veh-font);
}

@media (max-width: 992px) {
  .vehicle-archive-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .manufacturers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* Vehicle grid layouts */
  .related-vehicles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .vehicle-content-wrapper,
  .vehicle-content-page,
  .vehicle-content-single,
  .vehicle-taxonomy-layout {
    grid-template-columns: 1fr;
  }

  .vehicle-taxonomy-main .vehicle-archive-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sidebar-noticias,
  .vehicle-taxonomy-sidebar {
    position: static;
    order: 2;
  }

  .vehicle-main-column,
  .vehicle-taxonomy-main {
    order: 1;
  }
  
  .vehicle-content-page {
    padding: 0;
  }
  
  /* Filters sidebar */
  .vehicle-filters-sidebar {
    position: static;
    margin-bottom: 30px;
  }
  
  /* Comparison table */
  .comparison-table {
    display: block;
    overflow-x: auto;
  }
  
  .comparison-table th,
  .comparison-table td {
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  /* Vehicle template */
  .vehicle-template {
    padding: 12px;
  }

  .nav-arrow{
    display: none;
  }
  
  .vehicle-page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0 12px;
    margin-bottom: 20px;
  }
  
  .vehicle-featured-image {
    height: 260px;
  }

  .vehicle-title-container {
    padding: 20px 18px 22px;
  }

  .vehicle-content-container {
    padding: 18px 16px 24px;
  }

  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .motor-container.dual {
    grid-template-columns: 1fr;
    grid-column: span 1;
  }

  .motor-section:not(:last-child)::after {
    display: none;
  }

  .motor-section:not(:last-child) {
    border-bottom: 1px solid var(--veh-border);
  }

  .related-vehicles-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .vehicle-taxonomy-main .vehicle-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vehicle-summary {
    padding: 15px;
  }
  
  .vehicle-meta {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
  }
  
  .vehicle-title-page {
    font-size: 1.1rem;
  }

  /* Related vehicles */
  .related-vehicles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .related-vehicles-section {
    margin-top: 30px;
  }
  
  /* Layout */
  .motor-container,
  .content-with-sidebar {
    display: block;
  }
  
  .latest-news-section .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .view-all {
    margin-top: 10px;
  }
  
  /* News grid */
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .card-image {
    height: 180px;
  }
  
  /* Filters */
  .vehicle-filter-desktop {
    display: none;
  }
  
  .filtro-grupo {
    display: block;
    padding: 14px 12px;
  }
  
  .filtro-campo {
    margin-bottom: 0;
  }
  
  .filtro-campo select,
  .filtro-campo input[type="text"] {
    width: 100%;
    font-size: 14px;
  }
  
  .filtro-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .limpar-filtros,
  .filtro-actions button {
    width: 100%;
    text-align: center;
    padding: 10px;
  }
  
  .limpar-filtros {
    color: var(--veh-heading) !important;
    border: 1px solid var(--veh-border) !important;
    background: #fff !important;
  }
  
  .vehicle-filter-form {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  /* Vehicle archive */
  .vehicle-results-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 0 12px;
  }
  
  .vehicle-archive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 0;
  }
  
  .vehicle-pagination {
    padding: 0 12px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  
  .vehicle-pagination .page-numbers {
    padding: 6px 12px;
    margin: 0;
    font-size: 14px;
  }
  
  .load-more-button {
    margin-bottom: 40px;
  }
  
  /* Manufacturers */
  .manufacturers-strip {
    margin: -12px -12px 20px;
    padding: 16px;
  }
  
  .manufacturers-wrapper {
    gap: 8px;
  }
  
  .manufacturer-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    overflow: visible;
  }
  
  .manufacturers-content {
    padding: 0;
  }
  
  .manufacturers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  
  .manufacturer-image {
    height: 180px;
  }
  
  .manufacturer-info {
    padding: 15px;
  }
  
  .manufacturer-title {
    font-size: 1.2rem;
  }
  
  /* Compare */
  .compare-vehicles-container {
    gap: 10px;
    flex-wrap: wrap;
    margin: 10px;
  }
  
  .btn-compare {
    background-color: var(--veh-brand);
    border: 1px solid var(--veh-brand);
    color: #fff;
    flex: 1;
    transition: all 0.3s ease;
    width: 50%;
  }

  .btn-compare.active {
    background-color: var(--veh-heading);
    border-color: var(--veh-heading);
    color: #fff;
  }
  
  .btn-ver-mais {
    width: 50%;
  }
  
  .comparison-title {
    font-size: 1.5rem;
  }
  
  .comparison-subtitle {
    font-size: 1rem;
  }
  
  .comparison-table th:first-child {
    width: 150px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  /* Mobile filters */
  .mobile-filter-toggle {
    display: block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--veh-brand);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }
  
  .mobile-filter-bottom-sheet {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80vh;
    background: white;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px 20px 0 0;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  
  .mobile-filter-bottom-sheet.active {
    transform: translateY(0);
  }
  
  .bottom-sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
  }
  
  .close-bottom-sheet {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }
  
  .bottom-sheet-content {
    padding: 15px;
    padding-bottom: 80px;
  }
  
  .filter-accordion {
    border-bottom: 1px solid #eee;
  }
  
  .accordion-header {
    width: 100%;
    text-align: left;
    padding: 15px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
  }
  
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .accordion-content.active {
    max-height: 1000px;
    padding-bottom: 15px;
  }
  
  .accordion-icon {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  /* Vehicle template */
  .vehicle-template {
    padding: 8px;
  }
  
  .vehicle-content-page {
    padding: 0 8px;
  }
  
  .vehicle-featured-image {
    height: 280px;
    display: inline-block;
  }
  
  .vehicle-meta {
    font-size: 0.8rem;
    gap: 8px;
  }
  
  .vehicle-title-page {
    font-size: 1rem;
  }
  
  /* Layout */
  .motor-container,
  .content-with-sidebar {
    display: block;
  }
  
  /* Manufacturers */
  .manufacturers-strip {
    margin: -8px -8px 15px;
    padding: 12px 8px;
  }
  
  .manufacturer-link {
    padding: 6px 12px;
    font-size: 0.85rem;
    overflow: visible;
  }
  
  .manufacturer-link:hover {
    transform: translateY(-1px);
  }
  
  .manufacturers-content {
    padding: 0;
  }
  
  .manufacturers-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .manufacturer-image {
    height: 160px;
  }
  
  .manufacturer-title {
    font-size: 1.1rem;
  }
  
  /* Vehicle archive */
  .vehicle-archive-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .vehicle-title-page {
    font-size: 14px;
  }
  
  /* Buttons */
  .btn-ver-mais,
  .btn-compare {
    padding: 8px;
    font-size: 0.8rem;
  }
  
  .load-more-button {
    margin-bottom: 40px;
  }
  
  /* Pagination */
  .vehicle-pagination .page-numbers {
    padding: 4px 8px;
    font-size: 13px;
  }
  
  .vehicle-count {
    font-size: 0.8rem;
  }
  
  /* Compare bar */
  .compare-bar-content {
    display: block;
  }
}
