:root {
    --bs-primary: #2563eb;
    --bs-primary-rgb: 37, 99, 235;
    --bs-primary-text-emphasis: #1d4ed8;
    --bs-primary-bg-subtle: #eff6ff;
    --bs-primary-border-subtle: #bfdbfe;

    --bs-secondary: #64748b;
    --bs-secondary-rgb: 100, 116, 139;

    --bs-info: #2563eb;
    --bs-info-rgb: 37, 99, 235;
    --bs-info-text-emphasis: #1d4ed8;
    --bs-info-bg-subtle: #eff6ff;
    --bs-info-border-subtle: #bfdbfe;

    --bs-dark: #0f172a;
    --bs-dark-rgb: 15, 23, 42;
    --bs-dark-bg-subtle: #e2e8f0;
    --bs-dark-border-subtle: #cbd5e1;

    --bs-body-bg: #f8fafc;
    --bs-body-color: #1f2937;
    --bs-border-color: #dbe3ec;
    --bs-link-color: #1d4ed8;
    --bs-link-hover-color: #1e40af;
    --bs-focus-ring-color: rgba(37, 99, 235, 0.2);
}

* {
    box-sizing: border-box;
}

body {
    background: var(--bs-body-bg);
    color: var(--bs-body-color);
}

a {
    text-decoration-thickness: 1px;
    text-underline-offset: 0.15em;
}

header,
.site-header {
    background: #fff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 1px solid var(--bs-border-color);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.site-header__brandbar {
    background: #fff;
}

.site-header__brandbar .container-xl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
}

.site-header__brandlink {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.site-header__logo {
    display: block;
    width: auto;
}

.site-header__logo--main {
    max-height: 86px;
}

.site-header__logo--partner {
    max-height: 56px;
}

.site-header__copy {
    text-align: right;
    color: #475569;
    line-height: 1.1;
    max-width: 28rem;
}

.site-header__copy span {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--bs-primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.82rem;
    font-weight: 700;
}

.site-header__copy strong {
    display: block;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.site-header .navbar {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.98) 100%);
    border-top: 1px solid rgba(219, 227, 236, 0.55);
    border-bottom: 1px solid rgba(219, 227, 236, 0.75);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
    backdrop-filter: blur(10px);
}

.site-nav-links {
    padding: 0;
}

.site-nav-links .nav-item {
    display: flex;
}

.site-nav-links .nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 0.35rem;
    color: #334155 !important;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: color 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.site-nav-links .nav-link.is-active {
    color: #334155 !important;
    font-weight: 700;
}

.site-nav-links .nav-link:hover,
.site-nav-links .nav-link:focus {
    color: #334155 !important;
    background: linear-gradient(180deg, rgba(239, 246, 255, 0.98) 0%, rgba(225, 236, 251, 0.96) 100%);
    border-color: rgba(191, 219, 254, 0.95);
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.08);
    transform: none;
}

header .navbar.bg-white {
    background: #fff !important;
    border-bottom: 1px solid var(--bs-border-color);
    box-shadow: none !important;
}

header .navbar .navbar-toggler {
    border-color: var(--bs-border-color);
}

header .navbar .navbar-toggler-icon {
    filter: none;
}

header .navbar .nav-link {
    display: inline-flex;
    align-items: center;
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
    color: var(--bs-body-color) !important;
    font-weight: 600;
    transition: color 0.2s ease;
}

header .navbar .nav-link:hover,
header .navbar .nav-link:focus {
    color: var(--bs-body-color) !important;
}

header .navbar-dark .navbar-toggler {
    border-color: var(--bs-border-color);
}

header .navbar-dark .navbar-toggler-icon {
    filter: invert(0.3);
}

header .container-xl a img {
    filter: none;
}

header .navbar-brand {
    gap: 0.5rem;
    padding-top: 0;
    padding-bottom: 0;
}

.btn,
.form-control,
.form-select {
    border-radius: 0.75rem;
}

.btn-info,
.btn-primary {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff;
}

.btn-info:hover,
.btn-info:focus,
.btn-primary:hover,
.btn-primary:focus {
    background: var(--bs-primary-text-emphasis);
    border-color: var(--bs-primary-text-emphasis);
    color: #fff;
}

.btn-outline-secondary {
    border-color: var(--bs-border-color);
    color: var(--bs-body-color);
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    background: #e2e8f0;
    border-color: #cbd5e1;
    color: var(--bs-body-color);
}

.bg-info-subtle {
    background-color: var(--bs-body-bg) !important;
}

.border-info {
    border-color: var(--bs-border-color) !important;
}

.form-control,
.form-select {
    border-color: var(--bs-border-color);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.15);
}

.hero-showcase {
    background: #fff;
    border-bottom: 1px solid var(--bs-border-color);
}

.hero-banner {
    background: #fff;
    border-bottom: 1px solid var(--bs-border-color);
}

.hero-banner__media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 1903px);
    margin: 0 auto;
    aspect-ratio: 1903 / 662;
    max-height: 662px;
    padding: 0;
    background: #e2e8f0;
    overflow: hidden;
}

.hero-banner__image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-banner--home {
    padding: 0;
    border-bottom: 0;
}

.hero-banner--home .hero-banner__media {
    width: 100%;
    max-width: none;
    margin: 0;
    aspect-ratio: 1903 / 662;
    max-height: 662px;
    background: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.hero-carousel--banner {
    width: min(100%, 2378px);
    max-width: 100%;
    max-height: 750px;
    margin: -1px auto 0;
    min-height: 0;
    border: none;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
}

.hero-carousel--banner .carousel-inner,
.hero-carousel--banner .carousel-item {
    height: auto;
}

.hero-carousel--banner .carousel-item {
    position: relative;
}

.hero-carousel--banner picture {
    display: block;
}

.hero-carousel--banner img {
    height: auto !important;
    width: 100%;
    object-fit: contain;
    object-position: center;
    background: #fff;
    display: block;
}

.hero-carousel--banner .carousel-indicators {
    z-index: 3;
    bottom: 0.9rem;
    margin-bottom: 0;
    gap: 0.55rem;
}

.hero-carousel--banner .carousel-indicators [data-bs-target] {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(37, 99, 235, 0.45);
    opacity: 1;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.16);
}

.hero-carousel--banner .carousel-indicators .active {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    transform: scale(1.08);
}

.hero-carousel__control {
    top: 50%;
    width: 3.1rem;
    height: 3.1rem;
    transform: translateY(-50%);
    opacity: 1;
}

.hero-carousel__control--prev {
    left: 0.9rem;
}

.hero-carousel__control--next {
    right: 0.9rem;
}

.hero-carousel__control-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(219, 227, 236, 0.95);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
    color: var(--bs-primary);
}

.hero-carousel__control-icon svg {
    width: 1.1rem;
    height: 1.1rem;
}

.hero-showcase--full {
    position: relative;
    min-height: calc(100svh - 150px);
    overflow: hidden;
    padding: 0;
}

.hero-showcase__overlay {
    position: absolute;
    left: clamp(1rem, 3vw, 3rem);
    bottom: clamp(1rem, 4vw, 3rem);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 24rem;
    padding: 1rem 1.15rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(219, 227, 236, 0.95);
    border-radius: 1rem;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(8px);
}

.hero-showcase__eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--bs-primary);
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: var(--bs-primary-bg-subtle);
    border: 1px solid var(--bs-primary-border-subtle);
}

.hero-carousel--full {
    min-height: calc(100svh - 150px);
    height: calc(100svh - 150px);
    border: none;
    overflow: hidden;
    border-radius: 0;
    background: #e2e8f0;
}

.hero-carousel--full .carousel-inner,
.hero-carousel--full .carousel-item,
.hero-carousel--full picture,
.hero-carousel--full img {
    height: 100%;
}

.hero-carousel--full picture {
    display: block;
}

.hero-carousel--full img {
    width: 100%;
    object-fit: cover;
}

.hero-carousel--full .carousel-caption {
    display: none;
}

.hero-carousel--full .carousel-indicators {
    z-index: 3;
    margin-bottom: 1.25rem;
}

#busca {
    background: var(--bs-body-bg);
    padding: 2rem 0 3rem;
}

#busca .container {
    display: block;
}

#busca h1 {
    color: var(--bs-dark);
    font-size: clamp(1.6rem, 2.6vw, 2.4rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

#busca form {
    background: #fff;
    border: 1px solid var(--bs-border-color);
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: none;
}

#busca form .row {
    row-gap: 0.75rem;
}

#busca .form-control,
#busca .form-select {
    min-height: 2.85rem;
    border-radius: 0.75rem;
}

#busca .btn-info {
    width: 100%;
    margin-top: 1rem;
}

#estoque {
    background: #fff;
    padding: 2rem 0 3rem;
}

#estoque > h2.visually-hidden {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0;
    margin: 0 0 1rem;
    clip: auto !important;
    clip-path: none !important;
    overflow: visible !important;
    display: block !important;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    letter-spacing: -0.02em;
    color: var(--bs-dark);
    text-align: center;
}

#estoque .card {
    border: 1px solid var(--bs-border-color);
    border-radius: 0.875rem;
    overflow: hidden;
    box-shadow: none !important;
    background: #fff;
}

#estoque .card-body {
    height: auto;
}

#estoque .card-title {
    height: auto;
    color: var(--bs-dark);
}

#estoque .card-footer {
    background: #fff;
    border-top: 1px solid var(--bs-border-color);
}

#estoque .btn-outline-info {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
}

#estoque .btn-outline-info:hover,
#estoque .btn-outline-info:focus {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff;
}

#lojas {
    background: var(--bs-body-bg);
    border-top: 1px solid var(--bs-border-color);
}

#lojas .card {
    border: 1px solid var(--bs-border-color);
    border-radius: 0.875rem;
    overflow: hidden;
    box-shadow: none !important;
    background: #fff;
}

#lojas .btn-info {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
}

#lojas .btn-info:hover,
#lojas .btn-info:focus {
    background: var(--bs-primary-text-emphasis);
    border-color: var(--bs-primary-text-emphasis);
}

#contato {
    background: #fff !important;
    border-top: 1px solid var(--bs-border-color);
}

#contato .card {
    border: 1px solid var(--bs-border-color);
    border-radius: 0.875rem;
    box-shadow: none;
}

.nav-footer a,
footer .row:last-child a {
    color: #cbd5e1;
}

.nav-footer a:hover,
footer .row:last-child a:hover {
    color: #fff;
}

footer {
    background: var(--bs-dark) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
}

footer .container {
    position: relative;
}

.logo {
    filter: none;
}

.zoom-hover {
    transition: none;
}

.zoom-hover:hover {
    transform: none;
}

@media (max-width: 991.98px) {
    .site-header__brandbar .container-xl {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .site-header__copy {
        text-align: center;
        max-width: none;
    }

    .hero-showcase__overlay {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
    }
}

@media (max-width: 767.98px) {
    .hero-carousel--banner {
        aspect-ratio: 1 / 1;
    }

    .site-header__brandbar {
        display: none;
    }

    .site-header__brandbar .container-xl {
        padding: 0.85rem 1rem;
    }

    .site-header__logo--main {
        max-height: 58px;
    }

    .site-header__logo--partner {
        max-height: 38px;
    }

    .hero-banner__content {
        padding: 1rem 0 1.35rem;
    }

    .hero-carousel--banner {
        min-height: 240px;
    }

    .hero-carousel--banner .carousel-indicators {
        bottom: 0.55rem;
    }

    .hero-carousel__control {
        width: 2.5rem;
        height: 2.5rem;
    }

    .hero-carousel__control--prev {
        left: 0.55rem;
    }

    .hero-carousel__control--next {
        right: 0.55rem;
    }

    .hero-carousel__control-icon svg {
        width: 0.95rem;
        height: 0.95rem;
    }

    #busca form,
    #estoque .card,
    #lojas .card,
    #contato .card {
        border-radius: 0.875rem;
    }

    .hero-banner__content .btn,
    .hero-showcase__actions .btn,
    #busca .btn-info {
        width: 100%;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(180deg, #f8fbff 0%, #f4f7fb 100%);
}

.site-header {
    backdrop-filter: blur(10px);
}

.site-header__brandbar {
    border-bottom: 1px solid rgba(219, 227, 236, 0.75);
}

.site-header__brandbar .container-xl {
    padding: 0.85rem 1.25rem;
}

.site-header__copy {
    padding-left: 1rem;
    border-left: 3px solid var(--bs-primary);
}

.site-header__copy span {
    color: #1d4ed8;
}

.site-header__copy strong {
    font-size: 1rem;
}

header .navbar {
    border-top: 0;
    border-bottom: 1px solid var(--bs-border-color);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.section-block {
    position: relative;
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.section-heading--light .section-title,
.section-heading--light .section-kicker {
    color: #fff;
}

.section-title {
    margin: 0;
    font-size: clamp(1.55rem, 2.6vw, 2.25rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--bs-dark);
}

.section-title--light {
    color: #fff !important;
}

.section-kicker {
    background: var(--bs-primary-bg-subtle);
    border-color: var(--bs-primary-border-subtle);
}

.section-kicker--light {
    color: #eff6ff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}

.hero-banner--home {
    padding: 0;
    border-bottom: 0;
}

.hero-banner--home .hero-banner__media {
    width: 100%;
    max-width: none;
    margin: 0;
    aspect-ratio: 1903 / 662;
    max-height: 662px;
    background: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.stock-search-section {
    overflow: hidden;
}

#busca .container {
    max-width: 1240px;
}

.stock-search-card {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(219, 227, 236, 0.85);
    border-radius: 1.35rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15);
    padding: 1.25rem;
}

.stock-search-card .form-label {
    margin-bottom: 0.35rem;
    color: #334155;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stock-search-card .form-control,
.stock-search-card .form-select {
    min-height: 3rem;
    border-radius: 0.95rem;
}

.stock-search-card__button {
    min-height: 3rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    white-space: nowrap;
}

.stock-grid-section {
    background: transparent;
    padding-top: 0;
}

#estoque {
    padding-top: 0.5rem;
}

.vehicle-card,
.shop-card,
.contact-card {
    border: 1px solid rgba(219, 227, 236, 0.9);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    background: #fff;
}

.vehicle-card:hover,
.shop-card:hover,
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 44px rgba(15, 23, 42, 0.12);
    border-color: rgba(37, 99, 235, 0.22);
}

.vehicle-card__media-link {
    display: block;
    color: inherit;
}

.vehicle-card__media {
    background: linear-gradient(180deg, #eef4fb 0%, #dde7f2 100%);
}

.vehicle-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.vehicle-card__body {
    gap: 0.15rem;
}

.vehicle-card__version {
    color: #64748b;
    font-size: 0.92rem;
}

.vehicle-specs {
    display: grid;
    gap: 0.55rem;
}

.vehicle-specs li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.85rem;
    align-items: baseline;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid rgba(219, 227, 236, 0.6);
    color: #475569;
    font-size: 0.92rem;
}

.vehicle-specs li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.vehicle-specs span {
    font-weight: 600;
}

.vehicle-specs strong {
    color: #0f172a;
    text-align: right;
}

.vehicle-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--bs-primary-bg-subtle), #fff);
    color: #0f172a;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    padding: 0.7rem 1rem;
}

.shop-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(180deg, #f7f9fc 0%, #eef3f9 100%);
    border-bottom: 1px solid rgba(219, 227, 236, 0.7);
}

.shop-card__logo-image {
    width: 100%;
    max-width: 210px;
    max-height: 92px;
    object-fit: contain;
    object-position: center;
}

.shop-card__body {
    align-items: center;
    text-align: center;
    gap: 0.3rem;
    padding-top: 1.1rem;
}

.shop-card__title {
    color: #0f172a;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.shop-card__contacts {
    display: grid;
    gap: 0.45rem;
    justify-items: center;
}

.shop-card__phone {
    color: #3b4f76;
    font-size: 0.98rem;
    font-weight: 500;
}

.shop-card__whats {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    color: #1f7a37;
    font-size: 0.98rem;
    font-weight: 700;
    text-decoration: none;
}

.shop-card__whats:hover,
.shop-card__whats:focus {
    color: #166534;
}

.shop-card__whats-icon {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
    flex: 0 0 auto;
}

.shop-card__route {
    align-self: flex-start;
    color: var(--bs-primary);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.shop-card__route:hover,
.shop-card__route:focus {
    color: var(--bs-primary-text-emphasis);
    border-color: currentColor;
}

.section-block--contact {
    background: linear-gradient(180deg, #f5f9ff 0%, #eef4fb 100%);
}

.contact-card {
    height: 100%;
}

.contact-form .form-label {
    color: #334155;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-form .form-control,
.contact-form .form-select {
    min-height: 3rem;
    border-radius: 0.95rem;
}

.contact-form textarea.form-control {
    min-height: 140px;
}

.contact-list {
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-list li {
    display: grid;
    gap: 0.25rem;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: #f8fbff;
    border: 1px solid rgba(219, 227, 236, 0.85);
}

.contact-list span {
    color: #475569;
}

.contact-map {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(219, 227, 236, 0.85);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.contact-card--map .card-body {
    display: flex;
}

.contact-card--map .contact-map {
    width: 100%;
    min-height: 100%;
}

.site-footer {
    background: linear-gradient(180deg, #14213d 0%, #10182d 100%);
    color: #cbd5e1;
    margin-top: 0;
}

.footer-brand {
    padding: 0.95rem 1rem 1rem;
    border-radius: 1.1rem;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.96) 0%, rgba(241, 245, 249, 0.92) 100%);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.14);
}

.footer-brand__logo {
    display: block;
    max-width: 190px;
    height: auto;
    margin-bottom: 1rem;
    filter: none;
}

.footer-brand__text {
    margin: 0;
    max-width: 20rem;
    color: #334155;
}

.footer-title {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 0.75rem;
    margin: 0;
}

.footer-links a,
.footer-contact a,
.footer-bottom__link {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus,
.footer-contact a:hover,
.footer-contact a:focus,
.footer-bottom__link:hover,
.footer-bottom__link:focus {
    color: #fff;
}

.footer-contact li {
    display: grid;
    gap: 0.15rem;
}

.footer-contact span {
    color: #94a3b8;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-contact strong {
    font-weight: 600;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.footer-socials a:hover,
.footer-socials a:focus {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

.footer-bottom a {
    color: #e2e8f0;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .site-header__brandbar .container-xl {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .site-header__copy {
        text-align: center;
        max-width: none;
        padding-left: 0;
        border-left: 0;
    }

    .site-header__copy span {
        margin-inline: auto;
    }

    .section-heading {
        align-items: center;
        text-align: center;
    }

    .stock-search-card {
        padding: 1rem;
    }

    .site-nav-links {
        margin-top: 0.75rem;
        padding: 0.8rem;
        border-radius: 1.15rem;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(219, 227, 236, 0.85);
        box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
    }

    .site-nav-links .nav-item {
        width: 100%;
    }

    .site-nav-links .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding-inline: 1rem;
    }

    .contact-card--map .card-body {
        min-height: 300px;
    }
}

@media (max-width: 767.98px) {
    .site-header__brandbar .container-xl {
        padding: 0.85rem 1rem;
    }

    .site-header__logo--main {
        max-height: 58px;
    }

    .site-header__logo--partner {
        max-height: 38px;
    }

    .hero-banner--home .hero-banner__media {
        max-height: none;
        aspect-ratio: auto;
    }

    .stock-search-card {
        border-radius: 1rem;
    }

    .stock-search-card__button {
        width: 100%;
    }

    .vehicle-specs li {
        grid-template-columns: 1fr;
        gap: 0.2rem;
    }

    .vehicle-specs strong {
        text-align: left;
    }

    .shop-card__logo {
        min-height: 108px;
    }

    .footer-brand__logo {
        max-width: 160px;
    }
}
