/* ---------------------------------------------------------------------- */
/*	cores do projeto
/* ---------------------------------------------------------------------- */
:root {
    --primaryColor: #b61d37;
    --bgColor: #fcfcfc !important;
    --fontColor: #333;
    --boxColor: #fdfcfa;
    --whiteColor: #ffffff;
    --redColor: #c1012c;
    --greenColor: #10b981;
    --grayColor: #f8f7f7;
    --gray2Color: #dedede;
    --gray3Color: #f5f5f5;
    --boxShadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    --borderInputColor: #dee2e6;
    --borderRadius: 5px;
    --transition: all 0.3s ease;
}

/* ---------------------------------------------------------------------- */
/*	global
/* ---------------------------------------------------------------------- */
body {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', serif;
    background: var(--bgColor);
    color: var(--fontColor);
    font-size: 15px;
    font-weight: 400;
}

.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: var(--primaryColor);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn,
button {
    font-size: 14px !important;
}

.btn-main,
.btn-main:hover {
    background: var(--primaryColor) !important;
    color: var(--whiteColor) !important;
}

ul,
li,
h1,
a {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

a {
    color: var(--fontColor);
}

img {
    max-width: 100%;
}

.tags {
    opacity: 0;
    height: 0;
}

.mobile {
    display: none;
}

/* Skip to main content link - visually hidden but accessible */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primaryColor);
    color: var(--whiteColor);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
    border-radius: 0 0 8px 0;
    font-weight: 600;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

.form-control {
    width: 100%;
    padding: 8px 16px;
    border: 2px solid var(--borderInputColor);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: var(--bgColor);
    box-sizing: border-box;
}

/* Router View */
.router-view-loading,
.router-view-error {
    position: fixed;
    inset: 0;
    color: var(--fontColor);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.6);
}

.router-view-loading .spinner,
.router-view-error .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--gray2Color);
    border-top-color: var(--fontColor);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

.router-view-loading.is-hidden,
.router-view-error.is-hidden {
    opacity: 0;
    visibility: hidden;
}

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

.router-view-loading p,
.router-view-error p {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* ---------------------------------------------------------------------- */
/*	container
/* ---------------------------------------------------------------------- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ---------------------------------------------------------------------- */
/*	header
/* ---------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--transition);
}

/* Top bar */
.site-header .top {
    padding-top: 10px;
    padding-bottom: 5px;
    background: var(--primaryColor);
    color: var(--whiteColor);
}

.site-header .top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

/* Área principal (logo + menu) */
.header-main {
    background: var(--grayColor);
    border-bottom: 1px solid var(--borderInputColor);
    box-shadow: var(--boxShadow);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.site-header .logo {
    flex-shrink: 0;
    padding-top: 10px;
}

.site-header .logo img {
    display: block;
    max-height: 80px;
    transition: var(--transition);
}

/* Logo reduzida no scroll */
.site-header.is-shrink .logo img {
    max-height: 45px;
}

/* ---------------------------------------------------------------------- */
/*	menu
/* ---------------------------------------------------------------------- */
.fence-menu {
    flex: 1;
    margin-left: 30px;
    background: transparent;
    border-top: none;
}

.fence-menu .menu {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    padding: 0;
    margin: 0;
    list-style: none;
    overflow-x: auto;
}

.fence-menu .menu li {
    white-space: nowrap;
}

.fence-menu .menu li h1 {
    padding: 8px 14px;
    font-size: 0.85em;
    font-weight: 500;
    text-transform: uppercase;
}

.fence-menu .menu li h1 a {
    color: var(--fontColor) !important;
}

.fence-menu .menu li h1:hover,
.fence-menu .menu li h1.active {
    background: var(--fontColor);
    border-radius: var(--borderRadius);
}

.fence-menu .menu li h1:hover a,
.fence-menu .menu li h1.active a {
    color: var(--grayColor) !important;
    border-radius: var(--borderRadius);
}

/* ---------------------------------------------------------------------- */
/*	error-page
/* ---------------------------------------------------------------------- */
.error-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    text-align: center;
    font-size: 20px;
    gap: 20px;
}

.error-page img {
    max-height: 50vh;
}

/* ---------------------------------------------------------------------- */
/*	skeleton
/* ---------------------------------------------------------------------- */
.skeleton {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.vehicle-card.skeleton {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border-radius: var(--borderRadius);
    background: var(--whiteColor);
    box-shadow: var(--boxShadow);
}

.card .thumb {
    width: 100%;
    padding-top: 56%;
    border-radius: var(--borderRadius);
    background: var(--gray3Color);
    position: relative;
    overflow: hidden;
}

.card .info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card .tag,
.card .title,
.card .excerpt {
    height: 14px;
    border-radius: var(--borderRadius);
    background: var(--gray3Color);
    position: relative;
    overflow: hidden;
}

.card .tag {
    width: 30%;
}

.card .title {
    height: 18px;
    width: 80%;
}

.card .excerpt {
    height: 14px;
}

.card .excerpt + .excerpt {
    width: 90%;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(300%);
    }
}

/* ---------------------------------------------------------------------- */
/*	home
/* ---------------------------------------------------------------------- */
.fade-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    transition: height 0.3s ease;
    margin-bottom: 20px;
}

.fade-carousel ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: relative;
}

.fade-carousel li {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.fade-carousel li.active {
    opacity: 1;
    z-index: 1;
}

.fade-carousel img {
    width: 100%;
    height: auto;
    display: block;
}

/* Setas */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: #fff;

    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 2.8rem; /* aumenta a seta sem afetar layout */
    line-height: 1;
}

.carousel-control.prev {
    left: 16px;
}

.carousel-control.next {
    right: 16px;
}

.carousel-control:hover {
    background: rgba(0, 0, 0, 0.6);
}

/* Mobile-first */
@media (max-width: 768px) {
    .fade-carousel {
        aspect-ratio: 4 / 3;
    }
    .carousel-control {
        display: none;
    }
}

.fade-carousel ul {
    min-height: 1px;
}

.fade-carousel li.active {
    opacity: 1;
    visibility: visible;
}

.vehicles-list-content {
    display: flex;
    gap: 30px;
}

.filters-toggle {
    display: none;
}

@media (max-width: 768px) {
    .top {
        display: none;
    }

    .header-flex {
        flex-direction: column;
        align-items: center;
    }

    .fence-menu {
        width: 100%;
        margin-left: 0;
    }

    .fence-menu .menu {
        justify-content: flex-start;
    }
}

/* ================================================
   FILTERS SECTION
   ================================================ */

.filters-section {
    width: 20%;
    background: var(--primaryColor);
    padding: 20px;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filters-section h2 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--whiteColor);
    font-weight: 400;
}

.filter-group {
    margin-bottom: 20px;
    box-sizing: border-box;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--whiteColor);
    font-size: 14px;
}

.filter-select,
.price-range {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--borderInputColor);
    border-radius: 4px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: var(--t);
    box-sizing: border-box;
}

.filter-select:hover,
.filter-select:focus,
.price-range:hover,
.price-range:focus {
    border-color: var(--primaryColor);
    outline: none;
}

.price-range {
    padding: 5px;
}

.clear-filters-btn {
    width: 100%;
    padding: 10px;
    background: var(--redColor);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.clear-filters-btn:hover {
    background: var(--redColor);
}

/* ================================================
   VEHICLES SECTION
   ================================================ */

.vehicles-section {
    flex: 1;
}

.vehicles-header {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vehicles-header h2 {
    font-size: 28px;
    color: var(--fontColor);
}

.vehicles-count {
    color: var(--fontColor);
    font-size: 14px;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* ================================================
   VEHICLE CARD
   ================================================ */

.vehicle-card {
    background: white;
    border: 1px solid var(--borderInputColor);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primaryColor);
}

.vehicle-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--bgColor);
}

.vehicle-card-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vehicle-brand {
    font-size: 12px;
    color: var(--primaryColor);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.vehicle-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--fontColor);
    margin-bottom: 10px;
    line-height: 1.4;
}

.vehicle-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 12px;
}

.spec {
    background: var(--borderInputColor);
    padding: 4px 8px;
    border-radius: 4px;
    color: var(--fontColor);
}

.vehicle-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primaryColor);
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--borderInputColor);
}

.vehicle-source {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 8px;
}

.vehicle-tags {
    opacity: 0;
    height: 1px;
}

/* ---------------------------------------------------------------------- */
/*	featured
    /* ---------------------------------------------------------------------- */
.featured {
    margin-top: 20px;
    padding: 5px;
    background: var(--borderInputColor);
}

.featured .featured-items h2 {
    margin: 5px;
    text-align: center;
}

/* ---------------------------------------------------------------------- */
/*	DIVISOR
/* ---------------------------------------------------------------------- */
.colored-separator {
    margin-bottom: 13px;
    text-align: center;
    vertical-align: top;
    font-size: 0;
}

.colored-separator .first-long {
    margin-right: 3px;
}

.colored-separator .first-long,
.colored-separator .last-short {
    display: inline-block;
    vertical-align: top;
    width: 33px;
    height: 5px;
    -webkit-transform: skew(-40deg, 0deg);
    transform: skew(-40deg, 0deg);
    border-radius: 2px;
    background-color: var(--fontColor);
}

.stm-base-background-color {
    background-color: var(--fontColor) !important;
}

.colored-separator .last-short {
    width: 16px !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primaryColor) !important;
}

.map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ---------------------------------------------------------------------- */
/*	inner-page
/* ---------------------------------------------------------------------- */
.inner-page {
    margin-top: 2%;
    margin-bottom: 3%;
}

.inner-page .page-title {
    padding: 10px 0;
}

.inner-page .page-title h1 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
}

.inner-page .page-title h2 {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
}

.inner-page .featured {
    margin-bottom: 0;
}

.inner-page .vehicles {
    margin-top: 2%;
}

.inner-page .vehicles .articles {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.inner-page .vehicles .articles li {
    width: calc((100% - 2 * 20px) / 3);
}

.inner-page .vehicles .articles img {
    border-radius: var(--borderRadius);
    box-shadow: var(--boxShadow);
}

.inner-page .vehicles .last-articles {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.inner-page .vehicles .last-articles li {
    flex: 0 0 calc((100% - 40px) / 3);
    box-sizing: border-box;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 30px 0;
}

.pagination .page-btn {
    background: #eee;
    border: none;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.2s;
}

.pagination .page-btn.active {
    background: #333;
    color: #fff;
}

.pagination .page-btn:hover {
    background: #555;
    color: #fff;
}

/* ---------------------------------------------------------------------- */
/*	inner-page > breadcrumbs
/* ---------------------------------------------------------------------- */
.breadcrumbs {
    margin: 20px 0;
    padding: 10px;
    background: var(--gray2Color);
    border-radius: 3px;
    font-size: 14px;
    color: var(--fontColor);
}

.breadcrumbs a {
    padding-bottom: 5px;
    text-decoration: underline;
    text-underline-offset: 4px;
    color: var(--fontColor);
}

/* ---------------------------------------------------------------------- */
/*	inner-page > block
/* ---------------------------------------------------------------------- */
.inner-page .block {
    display: flex;
    width: 100%;
    gap: 20px;
    padding: 0;
    list-style: none;
}

.inner-page .block .left {
    width: calc((100% - 10px) * 2 / 3);
}

.inner-page .block .left .page-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px;
    background: var(--borderInputColor);
}

/* ---------------------------------------------------------------------- */
/*	wpp
/* ---------------------------------------------------------------------- */
.wpp {
    padding: 10px 20px;
    background: var(--greenColor);
    color: var(--whiteColor);
    text-decoration: none;
    font-size: 15px;
    border-radius: var(--borderRadius);
    animation: piscar 1s infinite;
}

.wpp:hover {
    color: var(--whiteColor);
}

/* Definir a animação */
@keyframes piscar {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.inner-page .block .left .text {
    margin-top: 50px;
    font-size: 12pt;
}

.inner-page .block .left .text figure {
    margin: 0 !important;
    padding: 0 !important;
}

.inner-page .block .left .text .editor-image figcaption {
    font-size: 13px;
    font-style: italic;
    font-weight: bold;
}

.inner-page .block .left .text img {
    width: 100%;
}

.inner-page .block .right {
    width: calc((100% - 2 * 20px) / 3);
    padding-left: 20px;
    display: flex;
    flex-direction: column;
}

.inner-page .block .right .amount {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-size: 30px;
    background: var(--primaryColor);
    color: var(--whiteColor);
}

.inner-page .block .right .data-vehicle {
    margin-bottom: 20px;
    background: var(--borderInputColor);
}

.inner-page .block .right .data-vehicle ul li {
    padding: 15px 10px;
    border-bottom: 1px solid var(--grayColor);
}

.inner-page .block .right h2 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
}

.inner-page .block .right .relatedList li {
    margin-bottom: 40px;
}

.inner-page .block .right .relatedList img {
    margin-bottom: 0;
    border-radius: var(--borderRadius);
    box-shadow: var(--boxShadow);
}

.inner-page .block .right .relatedList h3 {
    margin: 0;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--borderRadius);
    box-shadow: var(--boxShadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: block;
    width: calc(25% - 11.25px); /* 4 por linha (25% - gap) */
    height: 150px;
    background: var(--grayColor);
    flex-shrink: 0;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

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

/* Responsivo: 3 colunas */
@media (max-width: 1200px) {
    .gallery-item {
        width: calc(33.333% - 10px); /* 3 por linha */
    }
}

/* Responsivo: 2 colunas */
@media (max-width: 768px) {
    .gallery-item {
        width: calc(50% - 7.5px); /* 2 por linha */
    }
}

/* Responsivo: 1 coluna */
@media (max-width: 480px) {
    .gallery-item {
        width: 100%; /* 1 por linha */
    }
}

/* ---------------------------------------------------------------------- */
/*	pages
/* ---------------------------------------------------------------------- */
.enterprise .images .image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.enterprise .images .image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.enterprise .complements {
    margin-top: 20px;
}

.enterprise .complements h2 {
    margin: 5px 0;
}

.enterprise .complements .mission,
.enterprise .complements .vision {
    margin-bottom: 40px;
}

.fence-gallery {
    margin-top: 20px;
    padding: 20px;
    background: var(--primaryColor);
}

.fence-gallery h1 {
    color: var(--whiteColor);
    text-align: center;
}

.fence-gallery .colored-separator .first-long,
.fence-gallery .colored-separator .last-short {
    background: var(--whiteColor) !important;
}

.fence-gallery .gallery {
    margin-top: 40px;
}

.fence-team {
    padding: 20px;
    background: var(--borderInputColor);
}

.fence-team h1 {
    text-align: center;
}

.fence-team .team {
    margin-top: 40px;
}

.fence-team .data-container {
    padding: 5px;
    background: var(--primaryColor);
    color: var(--whiteColor);
}

.fence-team .data-container a {
    color: var(--whiteColor);
}

.fence-team .data-container h2,
.fence-team .data-container h3,
.fence-team .data-container h4,
.fence-team .data-container h5 {
    margin: 0 0 10px 0;
    text-align: center;
    font-weight: 500;
}

.fence-team .data-container h2 {
    font-size: 20px;
}

.fence-team .data-container h3,
.fence-team .data-container h4,
.fence-team .data-container h5 {
    font-size: 16px;
}

.stock {
    margin-top: 40px;
}

.insurance-top h1 {
    margin-bottom: 5px;
    font-size: 20px;
}

.insurance-top h2 {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}

.insurance-agree {
    display: block;
    margin-bottom: 10px;
    width: 100%;
}

.notices {
    margin-bottom: 40px;
}

.notices ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-item {
    margin-bottom: 16px;
}

.notice-item a {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.notice-item img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.notice-content p {
    margin: 6px 0 0;
    font-size: 14px;
    color: #666;
}

.data-user {
    margin-top: 80px;
    padding-left: 10px;
    padding-right: 0;
    font-size: 18px;
    line-height: 30px;
}

.data-user i {
    margin-right: 10px;
    font-size: 50px;
}

.data-contact {
    margin-top: 80px;
    padding-left: 10px;
    padding-right: 0;
    font-size: 14px;
    line-height: 30px;
}

.data-contact i {
    margin-right: 10px;
}

/* ---------------------------------------------------------------------- */
/*	footer
/* ---------------------------------------------------------------------- */
footer {
    padding: 20px 0;
    background: var(--grayColor);
}

footer .copyright {
    padding: 10px 0;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 768px) {
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 12px;
        margin: 20px 0;
    }

    .gallery-item {
        height: 120px;
    }
}

@media (max-width: 480px) {
    /* ---------------------------------------------------------------------- */
    /*	header
    /* ---------------------------------------------------------------------- */
    header .top {
        flex-direction: column;
    }

    header .data-top {
        z-index: -1;
    }

    /* ---------------------------------------------------------------------- */
    /*	menu
    /* ---------------------------------------------------------------------- */
    .scroll-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 5px 0;
        padding: 5px 10px;
        text-align: center;
    }

    .scroll-mobile i {
        font-size: 20px;
    }

    .scroll-mobile span {
        flex: 1;
        text-align: center;
        font-size: 14px;
        color: #333;
    }

    .fence-menu {
        padding-bottom: 5px;
    }

    .menu {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scrollbar-width: thin;
    }

    .menu::-webkit-scrollbar {
        display: none;
    }

    .menu li {
        flex: 0 0 auto;
    }

    .menu {
        overflow-x: auto;
        scrollbar-width: thin; /* Firefox */
        scrollbar-color: var(--primaryColor, #007bff) transparent;
    }

    /* Chrome, Edge, Safari */
    .menu::-webkit-scrollbar {
        height: 6px; /* espessura */
    }

    .menu::-webkit-scrollbar-track {
        background: transparent; /* trilha */
    }

    .menu::-webkit-scrollbar-thumb {
        background-color: var(--primaryColor, #007bff);
        border-radius: 10px;
        transition: background 0.3s;
    }

    .menu::-webkit-scrollbar-thumb:hover {
        background-color: #0056b3;
    }

    /* ---------------------------------------------------------------------- */
    /*	vehicles
    /* ---------------------------------------------------------------------- */
    .vehicles-list-content {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    /* BOTÃO DE FILTRO */
    .filters-toggle {
        display: block;
        width: 100%;
        margin-bottom: 5px;
        position: relative; /* garante fluxo normal */
        z-index: 1;
    }

    /* ASIDE DO FILTRO */
    .filters-section {
        width: 100%;
        position: relative; /* REMOVE sticky/fixed */
        top: auto;
        max-height: 0;
        overflow: hidden;
        padding: 0 16px;
        border-radius: 8px;
        transition: max-height 0.35s ease, padding 0.35s ease;
        box-sizing: border-box;
    }

    .filters-section.is-open {
        max-height: 2000px; /* espaço suficiente */
        padding: 16px;
    }

    /* LISTA DE VEÍCULOS */
    .vehicles-section {
        width: 100%;
        flex: none;
    }

    .vehicles-header {
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .vehicles-header h2 {
        margin: 0;
        font-size: 28px;
        color: var(--fontColor);
    }

    .vehicles-count {
        color: var(--fontColor);
        font-size: 14px;
    }

    .map {
        padding: 40px;
        background: var(--primaryColor);
    }

    .map .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .map-info {
        width: 100%;
        padding: 20px;
        background: var(--borderInputColor);
    }

    .map-info h3 {
        margin: 0;
        font-size: 36px;
    }

    .map-info h3 p {
        margin: 0;
        color: var(--redColor);
    }

    .map-info h4 {
        font-weight: 500;
    }

    .map iframe {
        margin-top: 10px;
        width: 100%;
        height: 400px;
        border: none;
    }

    /* ---------------------------------------------------------------------- */
    /*	inner page
    /* ---------------------------------------------------------------------- */
    .inner-page .block {
        flex-direction: column;
    }

    .inner-page .block .left {
        width: 100%;
    }

    .inner-page .block .right {
        padding: 0;
        width: 100%;
    }

    .inner-page .vehicles .articles {
        flex-direction: column;
        margin-top: 20px;
    }

    .inner-page .vehicles .articles li {
        width: 100%;
    }

    /* ---------------------------------------------------------------------- */
    /*	gallery
    /* ---------------------------------------------------------------------- */
    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
        margin: 15px 0;
    }

    .gallery-item {
        height: 250px;
    }

    /* ---------------------------------------------------------------------- */
    /*	footer
    /* ---------------------------------------------------------------------- */
    footer {
        padding-bottom: 70px;
    }

    footer .copyright {
        font-size: 12px;
    }
}

.vehicles-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    gap: 12px;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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