/* Font Awesome com font-display: swap */
@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.woff2?v=4.6.3') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Flaticon com font-display: swap (carregado aqui pois flaticon.css é adiado) */
@font-face {
  font-family: 'Flaticon';
  src: url('../fonts/Flaticon.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Honeypot anti-spam - manter invisível */
.ls-hp {
  display: none !important;
}

/* Rodapé: links sem sublinhado */
footer a,
footer a:hover,
footer a:focus,
footer .usefull-link a,
footer .footer-nav a,
footer .copyright a,
footer .social a {
  text-decoration: none !important;
}

/* Contraste: texto do corpo acima do mínimo WCAG AA */
body {
  color: #595959;
}

.section-title > span {
  color: #595959;
}

 .ls-filter-toggle {
   background: none;
   border: 0;
   padding: 0;
   color: inherit;
   font: inherit;
   cursor: pointer;
   text-align: left;
   width: 100%;
   position: relative;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 8px;
 }

 .product-listing ul li.list-group-item .ls-filter-toggle {
   color: #000000;
 }

 /* Evita seta duplicada do tema (:after) + ícone interno */
 .product-listing ul li.list-group-item .ls-filter-toggle:after,
 .product-listing ul li.list-group-item a:after {
   content: none !important;
 }

 .ls-filter-toggle__icon {
   flex: 0 0 auto;
   width: 20px;
   text-align: right;
   line-height: 1;
 }

 .ls-filter-toggle__icon::before,
 .ls-estoque-mais-filtros__toggle .ls-filter-toggle__icon::before {
   content: "\f107";
   font: normal normal normal 18px/1 FontAwesome;
   color: #888;
   speak: none;
 }

 .ls-filter-toggle.current .ls-filter-toggle__icon::before,
 .ls-estoque-mais-filtros.is-open .ls-estoque-mais-filtros__toggle .ls-filter-toggle__icon::before {
   content: "\f106";
   color: #e78807;
 }

 .visually-hidden-focusable {
   position: absolute;
   width: 1px;
   height: 1px;
   padding: 0;
   margin: -1px;
   overflow: hidden;
   clip: rect(0, 0, 0, 0);
   white-space: nowrap;
   border: 0;
 }

 .visually-hidden-focusable:focus {
   position: static;
   width: auto;
   height: auto;
   margin: 0;
   overflow: visible;
   clip: auto;
   white-space: normal;
   padding: 8px 16px;
   background: #e78807;
   color: #fff;
   z-index: 10000;
   display: inline-block;
 }
.ls-hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Botão de Contato */
.contact button[type=submit]:disabled {
  background: #e39c3b;
}

/* Slider */
@media screen and (max-width: 991px) {
  .tp-mr1 {
    margin-right: 4%;
  }

  .tp-mr2 {
    margin-right: 2%;
  }

  .tp-mr3 {
    margin-right: 26%;
  }

  .tp-mr4 {
    margin-right: 5%;
  }
}

@media (max-width: 767px) {
  .tp-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .tp-mobile {
    display: none !important;
  }
}

/* Caixa de pesquisa */
.search {
  margin-top: 34px;
  height: 79%;
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
}

@media (max-width: 767px) {
  .search {
    margin-top: 0px;
    height: 100%;
  }
}

/* Setas animadas */
@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

.arrow-bounce {
  animation: bounce 2s infinite;
  margin-bottom: -20px;
}

/* Text Custom */
.text-custom {
  color: #e39c3b;
}

/* Newsletter Mobile */
@media (max-width: 991px) {
  .news-mobile {
    width: 100% !important;
  }
}

/* Botão de Paginação */
.page-item.disabled .page-link-alt {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}

.product-listing .pagination-nav {
  margin-top: 24px;
  width: 100%;
}

.product-listing .pagination-nav .pagination {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-listing .pagination-nav .pagination > .page-item {
  display: inline-flex;
  margin: 0;
  float: none;
}

.product-listing .pagination-nav .page-link-alt {
  min-height: 40px;
  min-width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 0;
  background: #fff;
  color: #626262;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  box-sizing: border-box;
}

.product-listing .pagination-nav .page-item:not(.disabled):not(.active) .page-link-alt:hover {
  background-color: #e78807;
  border-color: #e78807;
  color: #fff;
}

.product-listing .pagination-nav .page-item.active .page-link-alt {
  background-color: #e78807;
  border-color: #e78807;
  color: #fff;
}

.product-listing .pagination-nav .page-item.disabled .page-link-alt {
  opacity: 0.55;
  cursor: default;
}

.ls-page-nav {
  font-size: 14px;
  font-weight: 600;
}

/* Footer copyright centralizado */
.ls-site-copyright {
  text-align: center;
  width: 100%;
}

.ls-site-copyright p {
  margin-bottom: 0;
}

/* Estoque — listagem e estado vazio */
.carros-js {
  width: 100%;
  margin-top: 0.5rem;
}

.carros-js > .car-grid {
  width: 100%;
}

.ls-estoque-empty {
  width: 100%;
  padding: 1.5rem 0 2.5rem;
}

.ls-estoque-empty-card {
  text-align: center;
  padding: 2.75rem 1.75rem;
  background: #f8f8f8;
  border: 1px dashed #d8d8d8;
  border-radius: 6px;
}

.ls-estoque-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: rgba(231, 136, 7, 0.12);
  color: #e78807;
  font-size: 1.75rem;
}

.ls-estoque-empty-title {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: #323232;
}

.ls-estoque-empty-text {
  max-width: 34rem;
  margin: 0 auto 1.5rem;
  color: #666;
  line-height: 1.6;
}

.ls-estoque-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.ls-estoque-empty-actions .button {
  margin: 0;
}

@media (max-width: 575.98px) {
  .ls-estoque-empty-card {
    padding: 2rem 1.25rem;
  }

  .ls-estoque-empty-actions .button {
    width: 100%;
  }
}

/* Depoimentos — rich text (TinyMCE) */
.testimonial-3 .testimonial-quote {
  display: table;
  width: 100%;
}

.testimonial-3 .testimonial-quote > i {
  display: table-cell;
  padding: 0 15px;
  color: #ffffff;
  font-size: 24px;
  vertical-align: top;
}

.testimonial-3 .testimonial-quote-text {
  display: table-cell;
  color: #ffffff;
  font-style: italic;
  vertical-align: top;
}

.testimonial-3 .testimonial-quote-text p {
  margin: 0 0 0.5rem;
  color: #ffffff;
  font-style: italic;
}

.testimonial-3 .testimonial-quote-text p:last-child {
  margin-bottom: 0;
}

.testimonial-3 .testimonial-quote-text ul,
.testimonial-3 .testimonial-quote-text ol {
  margin: 0 0 0.5rem 1.25rem;
  padding: 0;
  color: #ffffff;
}

/* Screen reader only */
.ls-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ls-estoque-sidebar {
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 22px 18px;
}

.ls-estoque-sidebar__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #121212;
}

.ls-estoque-sidebar__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: #e78807;
  margin-top: 8px;
}

.ls-estoque-sidebar__intro {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.45;
  color: #666;
}

.ls-estoque-sidebar__count {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 700;
  color: #121212;
}

.ls-estoque-sidebar__field + .ls-estoque-sidebar__field {
  margin-top: 16px;
}

.ls-estoque-sidebar__label {
  display: block;
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  color: #121212;
}

.ls-estoque-input-wrap {
  position: relative;
}

.ls-estoque-input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 14px;
  pointer-events: none;
  z-index: 2;
}

.ls-estoque-sidebar .ls-estoque-input {
  width: 100%;
  min-height: 44px;
  padding: 10px 36px 10px 36px;
  border: 1px solid #d5d5d5;
  border-radius: 0;
  background: #fff;
  color: #121212 !important;
  font-size: 14px;
  line-height: 1.3;
  box-sizing: border-box;
}

.ls-estoque-sidebar .ls-estoque-input:focus {
  border-color: #e78807;
  box-shadow: none;
  outline: none;
}

.ls-estoque-sidebar .ls-estoque-input::placeholder {
  color: #9a9a9a !important;
  opacity: 1;
}

.ls-estoque-sidebar .ls-estoque-input::-webkit-input-placeholder {
  color: #9a9a9a !important;
}

.ls-estoque-input-clear {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #666 !important;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.ls-estoque-input-clear:hover {
  color: #121212 !important;
}

.ls-estoque-sidebar__hint {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: #777;
}

.ls-estoque-sidebar__filters {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #ececec;
}

.ls-estoque-sidebar__filters-title {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #121212;
  letter-spacing: 0.03em;
}

.ls-estoque-filter-list {
  margin-bottom: 0;
}

.ls-filter-options-empty,
.ls-estoque-sidebar__empty {
  margin: 8px 0 0;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.4;
  color: #666;
  background: #f7f7f7;
  border-left: 3px solid #e78807;
}

.ls-estoque-sidebar__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.ls-estoque-sidebar__actions .button {
  width: 100%;
  min-height: 48px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  padding: 10px 14px;
  white-space: nowrap;
}

.ls-estoque-clear-all.button,
.ls-estoque-clear-all.button:hover,
.ls-estoque-clear-all.button:focus,
.ls-estoque-clear-all.button:active,
.ls-estoque-clear-filters.button,
.ls-estoque-clear-filters.button:hover,
.ls-estoque-clear-filters.button:focus,
.ls-estoque-clear-filters.button:active {
  border: 0 !important;
  outline: none;
  box-shadow: none;
}

@media (max-width: 991px) {
  .ls-estoque-sidebar__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 10px;
  }

  .ls-estoque-sidebar__actions > .button {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    font-size: 13px;
    padding: 10px 12px;
  }
}

.ls-estoque-see-results {
  margin-top: 0;
}

.ls-estoque-sidebar--sticky {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.ls-estoque-sidebar__ranges {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.ls-estoque-range-row + .ls-estoque-range-row {
  margin-top: 12px;
}

.ls-estoque-range-pair {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ls-estoque-range-pair .ls-estoque-range-input {
  flex: 1 1 0;
  min-width: 0;
  padding-left: 12px;
}

.ls-estoque-range-sep {
  flex: 0 0 auto;
  font-size: 13px;
  color: #666;
}

.ls-filter-count {
  font-size: 13px;
  color: #666;
  font-weight: 400;
}

.ls-estoque-filter-list .form-check-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 1.15em;
  height: 1.15em;
  margin-top: 0.15em;
  flex-shrink: 0;
  vertical-align: top;
  background-color: #fff !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1.5px solid #c9c9c9 !important;
  border-radius: 0.25em;
  cursor: pointer;
  accent-color: #e78807;
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
}

.ls-estoque-filter-list .form-check-input:focus {
  border-color: #e78807 !important;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(231, 136, 7, 0.28) !important;
}

.ls-estoque-filter-list .form-check-input:checked {
  background-color: #e78807 !important;
  border-color: #e78807 !important;
}

.ls-estoque-filter-list .form-check-input:checked[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e") !important;
}

.ls-estoque-filter-list .form-check-input[type="checkbox"]:indeterminate {
  background-color: #e78807 !important;
  border-color: #e78807 !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e") !important;
}

.ls-estoque-filter-list .form-check-label {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 36px;
  font-size: 14px;
  line-height: 1.35;
  padding: 2px 0;
  cursor: pointer;
}

.product-listing .ls-estoque-filter-list > .list-group-item.is-open > ul {
  display: block !important;
}

.ls-estoque-filter-list > .list-group-item {
  display: block !important;
}

.ls-estoque-filter-list .ls-filter-toggle {
  display: flex !important;
  min-height: 36px;
  padding: 8px 0;
  font-weight: 600;
  color: #121212;
}

.ls-estoque-cascade-hint {
  margin-top: 8px;
}

.ls-estoque-mais-filtros {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #ececec;
}

.ls-estoque-mais-filtros__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 0;
  border: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #121212;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.ls-estoque-mais-filtros__panel {
  padding-top: 12px;
}

.ls-estoque-mais-filtros__panel .ls-estoque-filter-list--extra {
  margin-top: 16px;
}

.ls-active-filters {
  margin-bottom: 18px;
}

.ls-active-filters__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.ls-active-filters__label {
  font-size: 14px;
  font-weight: 600;
  color: #121212;
  margin-right: 4px;
}

.ls-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid #ddd;
  border-radius: 999px;
  background: #f7f7f7;
  color: #121212;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
}

.ls-filter-chip:hover {
  border-color: #e78807;
  background: #fff8ef;
}

.ls-filter-chip__remove {
  font-size: 18px;
  line-height: 1;
  color: #666;
}

.ls-filter-chip--clear {
  border-color: #e78807;
  background: #fff;
  font-weight: 600;
}

.ls-estoque-results {
  position: relative;
  min-height: 120px;
}

.ls-estoque-results--loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.65);
  z-index: 2;
}

.ls-estoque-results--loading::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 50%;
  width: 36px;
  height: 36px;
  margin-left: -18px;
  border: 3px solid #ddd;
  border-top-color: #e78807;
  border-radius: 50%;
  animation: ls-spin 0.8s linear infinite;
  z-index: 3;
}

.ls-estoque-mobile-bar {
  margin-bottom: 16px;
}

.contador--mobile {
  margin: 10px 0 0;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #121212;
}

.ls-estoque-filter-open {
  min-height: 48px;
}

@media (max-width: 991px) {
  .ls-estoque-mobile-bar .ls-estoque-filter-open.button,
  .ls-estoque-mobile-bar .ls-estoque-filter-open.button:hover,
  .ls-estoque-mobile-bar .ls-estoque-filter-open.button:focus,
  .ls-estoque-mobile-bar .ls-estoque-filter-open.button:active,
  .ls-estoque-see-results.button,
  .ls-estoque-see-results.button:hover,
  .ls-estoque-see-results.button:focus,
  .ls-estoque-see-results.button:active {
    border: 0 !important;
    outline: none;
    box-shadow: none;
  }

  .product-listing .sorting-options-main {
    border: 0;
    padding: 0;
  }
}

.ls-estoque-filter-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1040;
}

.ls-estoque-filter-close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  color: #121212;
  cursor: pointer;
}

.ls-page-nav {
  font-size: 14px;
  font-weight: 600;
}

.pagination .page-link-alt {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
}

.ls-home-search-input {
  min-height: 50px;
  border-radius: 0;
  border: 1px solid #d5d5d5;
  color: #121212 !important;
  font-size: 15px;
}

.ls-home-search-input::placeholder {
  color: #9a9a9a !important;
}

.ls-home-search-btn {
  width: 100%;
  min-height: 50px;
  margin-top: 24px;
  font-size: 15px;
}

@media (max-width: 767px) {
  .ls-home-search-btn {
    margin-top: 12px;
  }
}

@media (max-width: 991px) {
  .ls-estoque-sidebar--sticky {
    position: fixed;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    width: min(92vw, 420px);
    max-height: min(88vh, 680px);
    margin: 0;
    z-index: 1050;
    transform: translate(-50%, -48%) scale(0.97);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
    overflow-y: auto;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
  }

  .ls-estoque-sidebar--sticky.is-open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.ls-estoque-filter-open {
    overflow: hidden;
  }

  .ls-estoque-results-col {
    margin-top: 0 !important;
  }
}

@media (min-width: 992px) {
  .ls-estoque-filter-backdrop,
  .ls-estoque-filter-close,
  .ls-estoque-see-results,
  .ls-estoque-filter-open,
  .contador--mobile {
    display: none !important;
  }
}

.search .select2-container--bootstrap-5 .select2-selection {
  min-height: 50px;
  border-radius: 0;
}

.search .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
  line-height: 48px;
}

.news-letter-form .ls-newsletter-email,
.news-letter-form input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid #d5d5d5;
  border-radius: 0;
  background: #fff;
  color: #121212 !important;
  font-size: 15px;
  line-height: 1.3;
  box-sizing: border-box;
}

.news-letter-form .ls-newsletter-email::placeholder,
.news-letter-form input[type="email"]::placeholder {
  color: #9a9a9a !important;
  opacity: 1;
}

.news-letter-form .ls-newsletter-email:focus,
.news-letter-form input[type="email"]:focus {
  border-color: #e78807;
  outline: none;
  box-shadow: none;
}

.news-letter-main .news-letter-form .row.g-0 {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
}

.news-letter-main .news-letter-form .row.g-0 > [class*="col-"]:first-child {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  max-width: none;
}

.news-letter-main .news-letter-form .row.g-0 > [class*="col-"]:last-child {
  flex: 0 0 auto;
  width: auto !important;
  max-width: none;
}

.news-letter-main .news-letter-form .button {
  float: none;
  width: 100%;
  min-height: 48px;
  padding: 10px 16px;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.car-item-2 .car-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: #ececec;
}

.car-item-2 .car-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.car-item-2:hover .car-image img {
  transform: scale(1.05);
}

.feature-car .owl-carousel,
.testimonial-2 .owl-carousel {
  min-height: 380px;
}

.feature-car .car-item-2 {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.feature-car .car-item-2:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
  transform: translateY(-4px);
}

.feature-car .owl-carousel .owl-dots {
  margin-top: 18px;
}

.feature-car .owl-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  background: #cfcfcf;
  transition: background 0.2s ease, transform 0.2s ease;
}

.feature-car .owl-carousel .owl-dot.active span,
.feature-car .owl-carousel .owl-dot:hover span {
  background: #e78807;
  transform: scale(1.15);
}

/* Evita colapso do Owl antes de .owl-loaded (display:none no owl.carousel.css) */
.owl-carousel:not(.owl-loaded) {
  display: block !important;
  overflow: hidden;
}

.blog-2 .blog-image {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: #ececec;
}

.blog-2 .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero estático da home */
.ls-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 420px;
  max-height: 780px;
  overflow: hidden;
  background: #111111;
}

.ls-hero-slides {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ls-hero-slide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  display: none;
  background: #111111;
}

.ls-hero-slide.ls-hero-slide--active,
.ls-hero-slide:not([hidden]).ls-hero-slide--active {
  display: block;
}

.ls-hero-slide[hidden] {
  display: none !important;
}

.ls-hero__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center;
  display: block !important;
  border: 0;
}

.ls-hero__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.ls-hero__content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 2rem 1.25rem 2.5rem;
  color: #fff;
  text-align: left;
  box-sizing: border-box;
}

.ls-hero__title {
  margin: 0 0 0.75rem;
  font: 900 clamp(1.6rem, 5vw, 3rem)/1.15 Roboto, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #ffffff !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.ls-hero__subtitle {
  margin: 0;
  max-width: 36rem;
  font: 400 clamp(0.95rem, 2.8vw, 1.25rem)/1.45 'Open Sans', sans-serif;
  color: #ffffff !important;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.ls-hero__arrows {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  pointer-events: none;
}

.ls-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  pointer-events: auto;
  cursor: pointer;
}

.ls-hero__arrow:hover,
.ls-hero__arrow:focus {
  background: #e78807;
  border-color: #e78807;
  outline: none;
}

.ls-hero__arrow--prev {
  left: 0.75rem;
}

.ls-hero__arrow--next {
  right: 0.75rem;
}

@media (min-width: 768px) {
  .ls-hero {
    height: min(68vw, 780px);
    min-height: 480px;
  }

  .ls-hero__content {
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    padding: 2.5rem 3rem;
  }

  .ls-hero__arrow {
    width: 3.25rem;
    height: 3.25rem;
  }

  .ls-hero__arrow--prev {
    left: 1.25rem;
  }

  .ls-hero__arrow--next {
    right: 1.25rem;
  }
}

/* Loader leve em CSS (substitui GIF de 700+ KiB) */
.ls-loader {
  display: inline-block;
  width: 48px;
  height: 48px;
  border: 4px solid #333;
  border-top-color: #e78807;
  border-radius: 50%;
  animation: ls-spin 0.8s linear infinite;
}

@keyframes ls-spin {
  to {
    transform: rotate(360deg);
  }
}

#loading-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Links distinguíveis na seção Sobre nós (home) */
.about.custom-block-2 p a {
  text-decoration: none;
  text-underline-offset: 2px;
}

.about.custom-block-2 p a:hover {
  color: #c56f00;
}

/* Topbar: texto visível no desktop; ícones-only no mobile (ver media query) */
#header .topbar-left a,
#header .topbar-right a {
  color: inherit;
  text-decoration: none;
}

#header .topbar-left a .ls-topbar-label {
  margin-left: 8px;
}

#header .topbar-left a i {
  margin-right: 0;
}

footer .usefull-link a:hover,
footer .footer-nav a:hover,
footer .copyright a:hover {
  color: #e78807;
}

/* Contraste em textos secundários */
.text-gray,
.about-content .text-gray,
.ls-estoque-empty-text {
  color: #4a4a4a;
}

.testimonial-3 .testimonial-info .ls-testimonial-author,
.testimonial-3 .testimonial-info .ls-testimonial-location {
  margin: 0 0 0.25rem;
  color: #ffffff;
}

.testimonial-3 .testimonial-info .ls-testimonial-author span,
.testimonial-3 .testimonial-info .ls-testimonial-location {
  font-weight: 400;
  text-transform: none;
}

/* Botão voltar ao topo */
.car-top .button.yellow {
  border: 0;
  background: transparent;
  padding: 0;
}

.car-top {
  right: 0;
  max-width: 85px;
}

/* Evita scroll horizontal no mobile (home e demais páginas) */
html {
  overflow-x: clip;
}

body {
  overflow-x: clip;
  max-width: 100%;
}

#main-content {
  overflow-x: clip;
  max-width: 100%;
}

#main-content img:not(.ls-hero__img),
#main-content picture,
#main-content video {
  max-width: 100%;
  height: auto;
}

.ls-hero {
  overflow: hidden;
  max-width: 100%;
}

/* home.css define .owl-carousel .owl-item img { width: auto } */
.ls-lazy-owl .owl-carousel .owl-item img,
.feature-car .owl-carousel .owl-item img,
.testimonial-3 .owl-carousel .owl-item img {
  width: 100% !important;
  max-width: 100%;
  height: auto;
}

/* No mobile as colunas de foto e card empilham em largura cheia (col-12),
   então a foto fica grande. style.css define .testimonial-avtar
   { margin-top: -65px }, pensado pro avatar pequeno "flutuando" sobre o
   card — com a foto grande isso puxava a imagem pra cima, sobrepondo o
   título da seção. Zeramos só no mobile (desktop mantém o comportamento
   atual) e encostamos a foto no card, sem respiro entre eles. */
@media (max-width: 575.98px) {
  .testimonial-3 .testimonial-avtar {
    margin-top: 0;
    margin-bottom: 0;
  }

  .testimonial-3 .testimonial-avtar img {
    display: block;
  }
}

.ls-lazy-owl .owl-carousel .owl-stage-outer,
.testimonial-2 .owl-carousel .owl-stage-outer,
.testimonial-3 .owl-carousel .owl-stage-outer {
  overflow: hidden !important;
}

.ls-lazy-owl .owl-carousel {
  max-width: 100%;
}

.blog-2 .blog-image img,
.car-item .car-image img,
.car-item-2 .car-image img,
.about.custom-block-2 img,
.our-service img {
  max-width: 100%;
}

.select2-container {
  max-width: 100% !important;
}

.search .select2-container {
  width: 100% !important;
  max-width: 100% !important;
}

.search .select2-container--bootstrap-5 .select2-selection {
  min-height: 50px;
  border-radius: 0;
}

.search .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
  line-height: 48px;
}

/* Estoque: selects Mostrar X / ordenação */
#ls-estoque-toolbar.sorting-options {
  align-items: flex-end;
  margin-bottom: 12px;
}

#ls-estoque-toolbar .selected-box {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
}

#ls-estoque-toolbar .select2-container,
#ls-estoque-toolbar select.form-control,
#ls-estoque-toolbar select.form-select {
  width: 100% !important;
  max-width: 100%;
}

#ls-estoque-toolbar .select2-container--bootstrap-5 .select2-selection--single {
  min-height: 44px;
  border-radius: 0;
  border: 1px solid #d5d5d5;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  color: #121212;
  font-size: 14px;
  box-shadow: none;
  padding: 0 2.25rem 0 12px;
}

#ls-estoque-toolbar .select2-container--bootstrap-5.select2-container--open .select2-selection--single {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23e78807' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 11l6-6 6 6'/%3e%3c/svg%3e");
  border-color: #e78807;
  box-shadow: none;
}

#ls-estoque-toolbar .select2-container--bootstrap-5.select2-container--focus .select2-selection--single {
  border-color: #e78807;
  box-shadow: none;
}

#ls-estoque-toolbar .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
  line-height: 42px;
  padding: 0;
  color: #121212;
}

#ls-estoque-toolbar .select2-container--bootstrap-5 .select2-selection--single .select2-selection__arrow {
  display: none;
}

#ls-estoque-toolbar select.form-control,
#ls-estoque-toolbar select.form-select {
  min-height: 44px;
  border-radius: 0;
  border: 1px solid #d5d5d5;
  background-color: #fff;
  color: #121212;
  font-size: 14px;
  box-shadow: none;
}

@media (max-width: 991px) {
  #ls-estoque-toolbar .col-lg-3,
  #ls-estoque-toolbar .col-lg-4,
  #ls-estoque-toolbar .col-md-6 {
    margin-bottom: 10px;
  }
}

/* Home: cards Procedência/Contato/etc. — título h3 branco no hover */
.welcome-3 .feature-box-2.box-hover:hover .content h3,
.welcome-3 .feature-box-2.box-hover.active .content h3,
.welcome-3 .feature-box-2.box-hover:hover .content p,
.welcome-3 .feature-box-2.box-hover.active .content p,
.welcome-3 .feature-box-2.box-hover:hover .icon i,
.welcome-3 .feature-box-2.box-hover.active .icon i {
  color: #ffffff;
}

.ls-featured-empty {
  max-width: 480px;
  margin: 0 auto;
}

.ls-featured-static {
  margin: 0 -10px;
}

.ls-featured-static__col {
  padding: 0 10px 24px;
}

.ls-featured-static .car-item-2 {
  height: 100%;
  background: #fff;
}

.ls-related-empty {
  margin-top: 12px;
  padding: 28px 20px;
  text-align: center;
  background: #f7f7f7;
  border-left: 3px solid #e78807;
}

.ls-related-empty__text {
  margin: 0 0 16px;
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

.ls-related-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.ls-related-empty__actions .button {
  margin: 0;
}

.ls-related-static {
  margin: 0 -8px;
}

.ls-related-static__col {
  padding: 0 8px 20px;
}

.ls-featured-empty .car-item-2 {
  background: #fff;
}

.ls-featured-empty__title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #121212;
}

.ls-featured-empty .info p {
  margin: 0;
  color: #595959;
}

@media (max-width: 991px) {
  #header .topbar .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  #header .ls-topbar-row {
    margin: 0;
  }

  #header .ls-topbar-row > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
  }

  #header .topbar-left,
  #header .topbar-right {
    display: block !important;
  }

  #header .topbar-icons,
  #header .topbar-right {
    display: block !important;
  }

  #header .topbar-left ul,
  #header .topbar-right ul {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 2px;
  }

  #header .topbar-left ul {
    justify-content: flex-start;
  }

  #header .topbar-right ul {
    justify-content: flex-end;
  }

  #header .topbar-left li,
  #header .topbar-right li {
    margin: 0 !important;
    padding: 0 !important;
  }

  #header .topbar-left a,
  #header .topbar-right a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    padding: 0 6px;
    color: #fff;
    text-decoration: none;
  }

  #header .topbar-left a i,
  #header .topbar-right a i {
    margin: 0 !important;
    font-size: 16px;
    line-height: 1;
  }

  #header .ls-topbar-label {
    display: none !important;
  }

  #header .mega-menu,
  #header .mega-menu .menu-list-items,
  #header .mega-menu .container,
  #header .mega-menu .row,
  #header .mega-menu .col-md-12 {
    overflow: visible;
    max-width: 100%;
  }

  #header .mega-menu .menu-links {
    z-index: 1100;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  #header .mega-menu .menu-mobile-collapse-trigger {
    z-index: 1101;
    min-width: 44px;
    min-height: 44px;
  }
}

@media (max-width: 767px) {
  .search .search-block {
    padding-left: 15px;
    padding-right: 15px;
  }

  #header .topbar .list-inline > li {
    display: block;
    padding-left: 0;
    padding-right: 0;
    font-size: 12px;
    line-height: 1.5;
    word-break: break-word;
  }

  #header .topbar-left,
  #header .topbar-right {
    text-align: center !important;
  }

  #header .menu-logo img,
  #header .menu-logo picture img {
    max-width: 160px;
    height: auto;
  }

  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel:hover .owl-nav .owl-prev {
    left: 0 !important;
  }

  .owl-carousel .owl-nav .owl-next,
  .owl-carousel:hover .owl-nav .owl-next {
    right: 0 !important;
  }

  .testimonial-3 .testimonial-quote-text {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

/* Links na seção Sobre nós (home) — sem sublinhado */
.about.custom-block-2 p a,
.about.custom-block-2 p a:hover,
.about.custom-block-2 p a:focus {
  text-decoration: none !important;
}

.about.custom-block-2 p a:hover {
  color: #c56f00;
}

/* Galeria de detalhes: setas sempre visíveis + ampliar */
.ls-vehicle-gallery {
  position: relative;
}

.ls-vehicle-gallery .slider-for {
  position: relative;
  margin-bottom: 12px;
  border-radius: 2px;
  overflow: hidden;
  background: #efefef;
}

.ls-vehicle-gallery__slide {
  outline: none;
}

.ls-vehicle-gallery__zoom {
  position: relative;
  display: block;
  cursor: zoom-in;
}

.ls-vehicle-gallery__zoom img {
  width: 100%;
  height: auto;
  display: block;
}

.ls-vehicle-gallery__zoom-icon {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0.9;
  transition: background 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.ls-vehicle-gallery__zoom:hover .ls-vehicle-gallery__zoom-icon {
  background: #e78807;
  transform: scale(1.05);
}

.car-details .ls-vehicle-gallery .slider-for .slick-prev,
.car-details .ls-vehicle-gallery .slider-for .slick-next,
.car-details .ls-vehicle-gallery .slider-for .ls-gallery-arrow {
  opacity: 1 !important;
  visibility: visible !important;
  width: 44px !important;
  height: 44px !important;
  margin: 0 !important;
  margin-top: 0 !important;
  padding: 0 !important;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  z-index: 3;
  top: 50% !important;
  bottom: auto !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%) !important;
  -webkit-transform: translateY(-50%) !important;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.car-details .ls-vehicle-gallery .slider-for .slick-prev,
.car-details .ls-vehicle-gallery:hover .slider-for .slick-prev {
  left: 12px !important;
  right: auto !important;
}

.car-details .ls-vehicle-gallery .slider-for .slick-next,
.car-details .ls-vehicle-gallery:hover .slider-for .slick-next {
  right: 12px !important;
  left: auto !important;
}

.car-details .ls-vehicle-gallery .slider-for .slick-prev:before,
.car-details .ls-vehicle-gallery .slider-for .slick-next:before {
  content: none !important;
  display: none !important;
}

.car-details .ls-vehicle-gallery .slider-for .ls-gallery-arrow i {
  font-size: 22px;
  line-height: 1;
  width: 1em;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #121212;
  margin: 0;
  padding: 0;
}

.car-details .ls-vehicle-gallery .slider-for .slick-prev:hover,
.car-details .ls-vehicle-gallery .slider-for .slick-next:hover,
.car-details .ls-vehicle-gallery .slider-for .slick-prev:focus,
.car-details .ls-vehicle-gallery .slider-for .slick-next:focus {
  background: #e78807 !important;
  box-shadow: 0 3px 12px rgba(231, 136, 7, 0.35);
}

.car-details .ls-vehicle-gallery .slider-for .slick-prev:hover i,
.car-details .ls-vehicle-gallery .slider-for .slick-next:hover i,
.car-details .ls-vehicle-gallery .slider-for .slick-prev:focus i,
.car-details .ls-vehicle-gallery .slider-for .slick-next:focus i {
  color: #fff;
}

.ls-vehicle-gallery .slider-nav {
  margin: 0 -4px;
}

.ls-vehicle-gallery .slider-nav .slick-slide {
  padding: 0 4px;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}

.ls-vehicle-gallery .slider-nav .slick-slide.slick-current,
.ls-vehicle-gallery .slider-nav .slick-slide:hover {
  opacity: 1;
}

.ls-vehicle-gallery__thumb img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  display: block;
  border: 2px solid transparent;
  border-radius: 2px;
}

.ls-vehicle-gallery .slider-nav .slick-current .ls-vehicle-gallery__thumb img {
  border-color: #e78807;
}

.ls-mfp-gallery .mfp-arrow {
  opacity: 1;
}

.ls-mfp-gallery .mfp-close {
  font-size: 32px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ls-sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* style.css define .footer-3.footer-topbar img { height: 60px } sem width
   correspondente, o que estica a logo (180x42) para 180x60. Largura livre
   preserva a proporção real da imagem. */
.footer-3.footer-topbar #logo_footer_dark {
  width: auto;
  height: 60px;
  max-width: 100%;
}
