:root {
    --bg: #eff3fb;
    --bg-soft: #e7edf9;
    --surface: #fbfdff;
    --surface-2: #f2f7ff;
    --line: #d2ddee;
    --line-strong: #bdcce6;
    --text: #1a2842;
    --muted: #5f7397;
    --accent: #4b88f3;
    --accent-strong: #2f66d9;
    --brand-red: #c6283f;
    --brand-red-strong: #a91f34;
    --accent-soft: #d8e7ff;
    --accent-pale: #eef5ff;
    --accent-gradient: linear-gradient(135deg, #79acff, #4b88f3 55%, #2f66d9);
    --header-bg: linear-gradient(90deg, #0f2a57, #14356f 52%, #1d4a95);
    --header-text: #deebff;
    --header-line: rgba(255, 255, 255, 0.18);
    --shadow: 0 18px 42px rgba(28, 45, 74, 0.1);
    --btn-shadow: 0 4px 10px rgba(47, 102, 217, 0.16);
    --btn-shadow-hover: 0 6px 14px rgba(47, 102, 217, 0.2);
    --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Manrope", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    scroll-padding-top: 96px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    letter-spacing: 0;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    letter-spacing: 0;
}

.background-glow {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 10% 8%, rgba(75, 136, 243, 0.16), transparent 34%),
        radial-gradient(circle at 85% 16%, rgba(75, 136, 243, 0.1), transparent 30%),
        linear-gradient(170deg, #f5f8fe, #ecf1fa 46%, #f3f7fd);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px clamp(42px, 3.2vw, 58px) 10px clamp(46px, 3.4vw, 64px);
    backdrop-filter: blur(13px);
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-line);
    box-shadow: 0 7px 22px rgba(11, 29, 60, 0.22);
}

.site-header-overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    backdrop-filter: none;
    transition: background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, backdrop-filter 0.22s ease;
}

.site-header-overlay .site-nav a {
    color: #f3f8ff;
}

.site-header-overlay .site-nav a:hover {
    border-color: transparent;
    background: transparent;
    color: #ffffff;
}

.site-header-overlay .site-nav .nav-admin {
    background: transparent;
    border-color: transparent;
}

.site-header-overlay .site-nav .nav-admin:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.56);
}

.site-header-overlay.is-scrolled {
    background: var(--header-bg);
    border-bottom-color: var(--header-line);
    box-shadow: 0 7px 22px rgba(11, 29, 60, 0.22);
    backdrop-filter: blur(13px);
}

.site-header-overlay.is-scrolled .site-nav a {
    color: var(--header-text);
}

.site-header-overlay.is-scrolled .site-nav a:hover {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.1);
}

.site-header-overlay.is-scrolled .site-nav .nav-admin {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
}

.site-header-overlay.is-scrolled .site-nav .nav-admin:hover {
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 255, 255, 0.46);
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    border: 0;
    background: transparent;
}

.brand img {
    width: 210px;
    max-width: 48vw;
    height: auto;
    display: block;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(24px, 2.7vw, 46px);
    margin-left: auto;
}

.site-nav a {
    color: var(--header-text);
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 7px 0;
    font-size: 0.86rem;
    font-weight: 600;
    transition: 0.2s ease;
}

.site-nav a:hover {
    color: #ffffff;
    border-color: transparent;
    background: transparent;
}

.site-nav a:not(.nav-admin)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    opacity: 0;
    transform: translateY(3px);
    transition: 0.2s ease;
}

.site-nav a:not(.nav-admin):hover::after {
    opacity: 1;
    transform: translateY(0);
}

.site-nav a.is-active::after {
    opacity: 1;
    transform: translateY(0);
    background: var(--brand-red);
}

.site-nav a,
.cta-primary,
.cta-secondary,
.cta-ghost,
.filter-actions button,
.filter-clear,
.card-link {
    -webkit-tap-highlight-color: transparent;
}

.site-nav .nav-admin {
    color: #fff;
    background: transparent;
    border-color: transparent;
    min-height: auto;
    padding: 7px 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: none;
}

.site-nav .nav-admin svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex: 0 0 auto;
}

.site-nav .nav-admin:hover {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.site-main {
    width: min(1200px, 92vw);
    margin: 30px auto 78px;
    display: grid;
    gap: 20px;
}

.home-main {
    width: 100%;
    margin: 0 0 78px;
    display: block;
    max-width: 100%;
    overflow-x: hidden;
}

.home-sections {
    width: min(1200px, 92vw);
    margin: 28px auto 0;
    display: grid;
    gap: 20px;
    max-width: 100%;
}

.home-sections > section {
    animation: rise 0.55s ease both;
}

.home-sections > section:nth-child(2) {
    animation-delay: 0.06s;
}

.home-sections > section:nth-child(3) {
    animation-delay: 0.12s;
}

.hero-cover {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: #03101b;
}

.hero-cover::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-cover-image);
    background-size: cover;
    background-position: center center;
    transform: scale(1.01);
    filter: brightness(1.12) saturate(1.04);
}

.hero-cover::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    height: 158px;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(2, 10, 18, 0.7) 0%,
        rgba(2, 10, 18, 0.18) 56%,
        rgba(2, 10, 18, 0) 100%
    );
}

.hero-cover-shade {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(3, 12, 21, 0) 0%,
        rgba(3, 12, 21, 0.02) 30%,
        rgba(3, 12, 21, 0.42) 58%,
        rgba(3, 12, 21, 0.82) 100%
    );
}

.hero-cover-shade::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 42%;
    background: linear-gradient(0deg, rgba(2, 10, 18, 0.62), rgba(2, 10, 18, 0));
}

.hero-cover-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    min-height: 100svh;
    padding: 116px clamp(58px, 4.4vw, 84px) 52px clamp(42px, 3.8vw, 72px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-cover-copy {
    width: min(460px, 100%);
    animation: heroCopyIn 0.58s ease both;
}

.hero-cover-copy h1 {
    margin: 0;
    color: #f7f9fd;
    font-size: clamp(1.9rem, 2.25vw, 2.42rem);
    font-weight: 800;
    line-height: 1.12;
    max-width: 460px;
    text-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.hero-cover-copy h1 span {
    display: block;
}

.hero-cover-copy h1 span + span {
    font-weight: 400;
}

.hero-cover-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    max-width: 455px;
    font-size: 0.9rem;
    line-height: 1.46;
}

.hero-cover-copy .hero-tag {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin: 0 0 10px;
    color: var(--brand-red);
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-cover-copy .hero-tag::after {
    content: none;
}

.hero-title-line {
    display: block;
    width: 64px;
    height: 4px;
    margin: 14px 0 14px;
    border-radius: 999px;
    background: var(--brand-red);
}

.hero-outline {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    box-shadow: none;
}

.hero-cover .hero-actions {
    gap: 18px;
    margin-top: 24px;
}

.hero-cover .cta-primary,
.hero-cover .cta-ghost {
    min-height: 46px;
    padding: 0 17px;
    border-radius: 999px;
    gap: 10px;
    font-size: 0.84rem;
}

.hero-cover .cta-primary svg,
.hero-cover .cta-ghost svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex: 0 0 auto;
}

.hero-cover .hero-arrow {
    margin-left: 6px;
}

.hero-cover .cta-primary {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #ffffff;
    min-width: 186px;
    box-shadow: 0 14px 26px rgba(198, 40, 63, 0.28);
}

.hero-cover .cta-primary:hover {
    background: var(--brand-red-strong);
    border-color: var(--brand-red-strong);
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(198, 40, 63, 0.33);
}

.hero-cover .cta-ghost.hero-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(3, 12, 21, 0.38);
    box-shadow: none;
}

.hero-cover .cta-ghost.hero-outline:hover {
    color: #ffffff;
    border-color: #ffffff;
    background: rgba(3, 12, 21, 0.54);
    box-shadow: none;
}

.hero-outline:hover {
    border-color: rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.hero-trust-row {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
}

.hero-trust-row span {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-trust-row span + span {
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-trust-row svg {
    width: 22px;
    height: 22px;
    fill: var(--brand-red);
    flex: 0 0 auto;
}

@keyframes heroCopyIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-main > section {
    animation: rise 0.55s ease both;
}

.site-main > section:nth-child(2) {
    animation-delay: 0.06s;
}

.site-main > section:nth-child(3) {
    animation-delay: 0.12s;
}

.hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 18px;
    border-radius: 26px;
    border: 1px solid var(--line);
    padding: 34px;
    background:
        linear-gradient(140deg, #ffffff, #f1f6ff),
        radial-gradient(circle at 100% 0, rgba(75, 136, 243, 0.22), transparent 40%);
    box-shadow: var(--shadow);
}

.hero::after {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    border: 1px solid rgba(110, 136, 186, 0.2);
    opacity: 0.5;
}

.hero-tag {
    margin: 0 0 12px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.19em;
    color: var(--accent-strong);
}

.hero h1 {
    margin: 0 0 12px;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 1.05;
}

.hero p {
    margin: 0;
    color: var(--muted);
    max-width: 680px;
    font-size: 1.07rem;
    line-height: 1.5;
}   

.hero-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.cta-primary,
.cta-secondary,
.cta-ghost {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 0.94rem;
    transition: 0.2s ease;
}

.cta-primary {
    color: #fff;
    background: var(--accent-gradient);
    border-color: var(--accent);
    box-shadow: var(--btn-shadow);
}

.cta-primary:hover {
    background: var(--accent-gradient);
    border-color: var(--accent-strong);
    box-shadow: var(--btn-shadow-hover);
}

.cta-secondary {
    color: var(--text);
    border-color: var(--line);
    background: #fff;
}

.cta-secondary:hover {
    border-color: var(--line-strong);
    background: #f8fbff;
}

.cta-ghost {
    color: var(--accent-strong);
    border-color: #b9d3ff;
    background: #eef5ff;
}

.cta-ghost:hover {
    background: #dfeeff;
    border-color: #a4c5ff;
}

.hero-panel {
    display: grid;
    gap: 12px;
    align-content: center;
}

.hero-panel .hero-stat {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px;
    background: #f8fbff;
}

.hero-panel .hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.9rem;
    line-height: 1;
}

.hero-panel .hero-stat span {
    margin-top: 6px;
    display: block;
    color: var(--muted);
    font-size: 1rem;
}

.filters-wrap,
.about-company,
.featured,
.inventory,
.vehicle-detail {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 22px;
    background: linear-gradient(155deg, var(--surface), #f6f9ff 80%);
    box-shadow: var(--shadow);
}

.inventory {
    scroll-margin-top: 96px;
}

.brand-carousel-wrap {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    border: 0;
    border-radius: 0;
    padding: 42px clamp(12px, 7vw, 96px) 38px;
    background: linear-gradient(180deg, #1f4178 0%, #234a84 52%, #1d406f 100%);
    box-shadow:
        inset 0 1px 0 rgba(240, 246, 255, 0.12),
        inset 0 -1px 0 rgba(240, 246, 255, 0.08);
    overflow-x: hidden;
}

@supports (width: 100dvw) {
    .brand-carousel-wrap {
        width: 100dvw;
        margin-left: -50dvw;
        margin-right: -50dvw;
    }
}

.brand-carousel-wrap .section-head h2,
.brand-carousel-wrap .section-head p {
    color: #f1f6ff;
}

.brand-carousel-wrap .section-head {
    text-align: center;
}

.brand-carousel-wrap .section-head h2 {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(2.3rem, 3.5vw, 3.4rem);
    font-weight: 400;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.brand-carousel-wrap .section-head p {
    display: none;
}

.brand-carousel-shell {
    margin-top: 30px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
}

.brand-carousel-arrow {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 0;
    background: transparent;
    color: rgba(241, 247, 255, 0.82);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    padding: 0;
    transition: 0.2s ease;
}

.brand-carousel-arrow:hover:not(:disabled) {
    color: #ffffff;
    transform: scale(1.06);
}

.brand-carousel-arrow:disabled {
    opacity: 0.26;
    cursor: default;
}

.brand-carousel-track {
    display: flex;
    gap: 34px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 6px 2px;
    align-items: center;
}

.brand-carousel-track::-webkit-scrollbar {
    display: none;
}

.brand-item {
    flex: 0 0 138px;
    min-height: 72px;
    border-radius: 0;
    border: 0;
    background: transparent;
    color: #eef5ff;
    text-decoration: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
    opacity: 0.9;
}

.brand-item:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.brand-item.is-active {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(233, 244, 255, 0.2));
}

.brand-item-logo {
    width: 100%;
    height: 68px;
    border-radius: 0;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.brand-item-logo img {
    width: 124px;
    height: 56px;
    max-width: 100%;
    max-height: 58px;
    object-fit: contain;
    filter: grayscale(1) brightness(1.85) contrast(1.08);
    opacity: 0.95;
}

.brand-item-monogram {
    font-family: var(--font-body);
    letter-spacing: 0.12em;
    font-weight: 600;
    font-size: 1.05rem;
    color: #e8f2ff;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.about-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #f7fbff;
    padding: 14px;
}

.about-card h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    color: #24457a;
}

.about-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.95rem;
}

.empresa-hero,
.empresa-quem-somos,
.empresa-pilares {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(150deg, #ffffff, #f1f6ff 84%);
    box-shadow: var(--shadow);
}

.empresa-hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 20px;
    padding: 26px;
}

.empresa-kicker {
    margin: 0 0 10px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #355fa3;
}

.empresa-hero-copy h1 {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 3.3vw, 2.7rem);
    line-height: 1.08;
}

.empresa-hero-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.58;
    font-size: 1.02rem;
    max-width: 600px;
}

.empresa-hero-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.empresa-hero-media img {
    width: 100%;
    height: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--line);
    display: block;
}

.empresa-quem-somos {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 18px;
    padding: 22px;
}

.empresa-media-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.empresa-media-stack figure {
    margin: 0;
}

.empresa-media-stack img {
    width: 100%;
    height: 172px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--line);
    display: block;
}

.empresa-quem-copy h2 {
    margin: 0 0 10px;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.empresa-quem-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.empresa-metrics {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.empresa-metrics article {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #f8fbff;
    padding: 12px;
}

.empresa-metrics strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.45rem;
}

.empresa-metrics span {
    color: var(--muted);
    font-size: 0.88rem;
}

.empresa-pilares {
    padding: 22px;
}

.empresa-pilares-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.empresa-pilar-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px;
    background: #f8fbff;
}

.empresa-pilar-card span {
    display: inline-flex;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: #2e63cc;
    background: #e3eeff;
    border: 1px solid #c7dbff;
}

.empresa-pilar-card h3 {
    margin: 10px 0 8px;
    font-size: 1.08rem;
    color: #223f72;
}

.empresa-pilar-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.96rem;
}

.section-head h2 {
    margin: 0 0 4px;
    font-size: 1.45rem;
}

.section-head p {
    margin: 0 0 14px;
    color: var(--muted);
}

.filters {
    display: grid;
    gap: 12px;
}

.filters-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.filters input,
.filters select,
.filter-actions button {
    width: 100%;
    min-height: 46px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fdfefe;
    color: var(--text);
    padding: 0 12px;
    font-family: inherit;
    font-size: 0.98rem;
}

.filters select {
    appearance: none;
}

.filter-actions button {
    background: var(--accent-gradient);
    border-color: var(--accent);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: var(--btn-shadow);
}

.filter-actions button:hover {
    background: var(--accent-gradient);
    border-color: var(--accent-strong);
    box-shadow: var(--btn-shadow-hover);
}

.filter-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-clear {
    min-height: 46px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.filter-clear:hover {
    border-color: var(--line-strong);
    background: #f8fbff;
}

.featured h2,
.inventory h2 {
    margin: 0 0 14px;
    font-size: 1.55rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.featured-card,
.vehicle-card {
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: #fcfdff;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.featured-card:hover,
.vehicle-card:hover {
    transform: translateY(-4px);
    border-color: rgba(75, 136, 243, 0.45);
    box-shadow: 0 14px 28px rgba(28, 45, 74, 0.12);
}

.card-preview-gallery {
    position: relative;
    touch-action: pan-y;
}

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

.featured-card img {
    height: 178px;
}

.vehicle-cover img {
    height: 205px;
    transition: transform 0.45s ease;
}

.vehicle-card:hover .vehicle-cover img {
    transform: scale(1.04);
}

.card-preview-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: rgba(11, 26, 50, 0.54);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.card-preview-gallery:hover .card-preview-nav {
    opacity: 1;
}

.card-preview-prev {
    left: 8px;
}

.card-preview-next {
    right: 8px;
}

.card-preview-nav:hover {
    background: rgba(11, 26, 50, 0.78);
}

.card-preview-counter {
    position: absolute;
    right: 8px;
    bottom: 8px;
    border-radius: 999px;
    padding: 4px 9px;
    border: 1px solid rgba(255, 255, 255, 0.44);
    background: rgba(8, 20, 40, 0.6);
    color: #eef5ff;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.featured-card div,
.vehicle-content {
    padding: 14px;
}

.featured-card h3,
.vehicle-card h3 {
    margin: 0 0 6px;
    font-size: 1.13rem;
}

.featured-card p,
.vehicle-card p {
    margin: 0 0 10px;
    color: var(--muted);
}

.featured-card strong,
.vehicle-price strong {
    color: var(--accent-strong);
    font-family: var(--font-display);
}

.card-link {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    min-height: 40px;
    padding: 0 13px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    background: linear-gradient(130deg, #fdfefe, #eff6ff);
}

.card-link:hover {
    border-color: rgba(75, 136, 243, 0.45);
    color: var(--accent-strong);
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.vehicle-topline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.vehicle-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.vehicle-meta span,
.vehicle-quick span {
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #f4f8ff;
    color: #35538c;
    padding: 6px 10px;
    font-size: 0.86rem;
}

.detail-features {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 10px;
}

.detail-features span {
    border-radius: 999px;
    border: 1px solid #bed5fb;
    background: #eaf2ff;
    color: #2c5aa8;
    padding: 5px 9px;
    font-size: 0.82rem;
}

.vehicle-price {
    margin-top: 13px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vehicle-price small {
    color: var(--muted);
    text-decoration: line-through;
}

.vehicle-price strong {
    font-size: 1.3rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border: 1px solid transparent;
}

.badge-disponivel {
    color: #245abf;
    border-color: rgba(75, 136, 243, 0.36);
    background: rgba(75, 136, 243, 0.14);
}

.badge-reservado {
    color: #2d66cf;
    border-color: rgba(75, 136, 243, 0.28);
    background: rgba(75, 136, 243, 0.1);
}

.badge-vendido {
    color: #1f4ea8;
    border-color: rgba(75, 136, 243, 0.24);
    background: rgba(75, 136, 243, 0.08);
}

.empty-message {
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
}

.vehicle-detail {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 20px;
    align-items: start;
}

.vehicle-hero-image,
.vehicle-detail-info {
    min-width: 0;
}

.vehicle-main-wrap {
    position: relative;
    border-radius: 14px;
}

.vehicle-main-trigger {
    width: 100%;
    padding: 0;
    border: 0;
    margin: 0;
    background: transparent;
    border-radius: 14px;
    overflow: hidden;
    cursor: zoom-in;
    display: block;
    position: relative;
}

.vehicle-main-image {
    width: 100%;
    display: block;
    height: auto;
    aspect-ratio: 16 / 10;
    min-height: 340px;
    max-height: 520px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--line);
    transition: transform 0.25s ease;
}

.vehicle-main-trigger:hover .vehicle-main-image {
    transform: scale(1.014);
}

.vehicle-zoom-hint {
    position: absolute;
    right: 12px;
    bottom: 12px;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.77rem;
    font-weight: 700;
    color: #f2f7ff;
    background: rgba(13, 28, 54, 0.64);
    border: 1px solid rgba(255, 255, 255, 0.35);
    opacity: 0.9;
}

.vehicle-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(17, 36, 68, 0.52);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 3;
}

.vehicle-gallery-nav:hover {
    background: rgba(17, 36, 68, 0.72);
}

.vehicle-gallery-prev {
    left: 10px;
}

.vehicle-gallery-next {
    right: 10px;
}

.vehicle-gallery-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.vehicle-gallery-grid img {
    display: block;
    width: 100%;
    height: 96px;
    min-height: 0;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--line);
}

.vehicle-gallery-thumb {
    border: 2px solid transparent;
    background: #fff;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    min-width: 0;
}

.vehicle-gallery-thumb.is-active {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(75, 136, 243, 0.2);
}

.vehicle-lightbox[hidden] {
    display: none;
}

.vehicle-lightbox {
    position: fixed;
    inset: 0;
    z-index: 120;
    padding: 20px;
    display: grid;
    place-items: center;
}

.vehicle-lightbox-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    margin: 0;
    background: rgba(7, 14, 31, 0.78);
    cursor: zoom-out;
}

.vehicle-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(1200px, 95vw);
    max-height: 90vh;
    display: grid;
    place-items: center;
}

.vehicle-lightbox-image {
    width: auto;
    max-width: 100%;
    max-height: 84vh;
    display: block;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(236, 244, 255, 0.35);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    background: #07152e;
    transform-origin: center center;
    transition: transform 0.18s ease;
    cursor: zoom-in;
    touch-action: none;
    user-select: none;
}

.vehicle-lightbox-image.is-zoomed {
    cursor: grab;
}

.vehicle-lightbox-image.is-dragging {
    cursor: grabbing;
}

.vehicle-lightbox-dialog.is-zoomed .vehicle-lightbox-nav {
    opacity: 0;
    pointer-events: none;
}

.vehicle-lightbox-nav,
.vehicle-lightbox-close {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.56);
    background: rgba(8, 20, 42, 0.7);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
}

.vehicle-lightbox-close {
    top: -14px;
    right: -14px;
    font-size: 1.35rem;
}

.vehicle-lightbox-prev {
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.vehicle-lightbox-next {
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.vehicle-lightbox-nav:hover,
.vehicle-lightbox-close:hover {
    background: rgba(11, 27, 54, 0.9);
}

.vehicle-lightbox-counter {
    margin-top: 10px;
    color: #f2f7ff;
    font-weight: 600;
    font-size: 0.9rem;
}

body.lightbox-open {
    overflow: hidden;
}

.alert {
    border-radius: 8px;
    margin: 0 0 18px;
    padding: 14px 16px;
    font-weight: 700;
}

.alert p {
    margin: 0;
}

.alert p + p {
    margin-top: 6px;
}

.alert-success {
    background: rgba(18, 196, 155, 0.14);
    border: 1px solid rgba(18, 196, 155, 0.36);
    color: #c8fff2;
}

.alert-error {
    background: rgba(242, 71, 125, 0.14);
    border: 1px solid rgba(242, 71, 125, 0.36);
    color: #ffd5e2;
}

.vehicle-detail-info h1 {
    margin: 10px 0 6px;
    font-size: clamp(1.8rem, 2.4vw, 2rem);
    line-height: 1.14;
}

.vehicle-subtitle {
    margin: 0;
    color: var(--muted);
}

.vehicle-quick {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.vehicle-price-detail {
    margin-top: 14px;
}

.vehicle-price-detail small {
    display: block;
    color: var(--muted);
    text-decoration: line-through;
}

.vehicle-price-detail strong {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent-strong);
}

.vehicle-spec-panel {
    margin-top: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: linear-gradient(145deg, #ffffff, #f5f8ff);
    padding: 10px;
}

.vehicle-spec-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.vehicle-spec-panel-head h2 {
    margin: 0;
    color: #1d3155;
    font-size: 1rem;
    line-height: 1.2;
}

.vehicle-spec-panel-head p {
    width: min(250px, 48%);
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.35;
    text-align: right;
}

.vehicle-key-specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--line);
}

.vehicle-key-spec {
    min-width: 0;
    min-height: 48px;
    padding: 7px 9px;
    background: rgba(255, 255, 255, 0.86);
}

.vehicle-key-spec span {
    display: block;
    color: #6b7fa5;
    font-size: 0.74rem;
    line-height: 1.2;
}

.vehicle-key-spec strong {
    display: block;
    margin-top: 3px;
    color: #1d2d4a;
    font-family: var(--font-display);
    font-size: 0.82rem;
    line-height: 1.25;
}

.vehicle-spec-accordions {
    display: grid;
    gap: 8px;
    margin-top: 10px;
}

.vehicle-spec-group {
    overflow: hidden;
    border: 1px solid rgba(181, 202, 235, 0.86);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.74);
}

.vehicle-spec-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 38px;
    padding: 8px 10px;
    color: #1d3155;
    cursor: pointer;
    list-style: none;
}

.vehicle-spec-group summary::-webkit-details-marker {
    display: none;
}

.vehicle-spec-group summary::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #eaf2ff;
    color: var(--accent-strong);
    font-weight: 800;
}

.vehicle-spec-group[open] summary::after {
    content: "-";
}

.vehicle-spec-group summary span {
    font-family: var(--font-display);
    font-size: 0.86rem;
    font-weight: 700;
}

.vehicle-spec-group summary small {
    margin-left: auto;
    color: var(--muted);
    font-size: 0.75rem;
}

.vehicle-spec-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 16px;
    margin: 0;
    padding: 0 12px 10px;
}

.vehicle-spec-list div {
    min-width: 0;
    padding: 8px 0;
    border-top: 1px solid rgba(204, 218, 240, 0.72);
}

.vehicle-spec-list dt {
    margin: 0 0 2px;
    color: #6b7fa5;
    font-size: 0.76rem;
    line-height: 1.2;
}

.vehicle-spec-list dd {
    margin: 0;
    color: #1e2e4c;
    font-weight: 700;
    font-size: 0.86rem;
    line-height: 1.32;
}

.vehicle-description-card {
    margin-top: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #f8fbff;
    padding: 12px 14px;
}

.vehicle-description-card h3 {
    margin: 0 0 8px;
    font-size: 1.02rem;
    color: #223a63;
}

.vehicle-description-text {
    color: #334867;
    line-height: 1.5;
    font-size: 0.92rem;
    white-space: pre-line;
    max-height: 190px;
    overflow-y: auto;
    padding-right: 6px;
}

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

.site-footer {
    width: min(1200px, 92vw);
    margin: 10px auto 38px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, #fbfdff, #f1f6ff);
    padding: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.site-footer h3 {
    margin: 0 0 6px;
    font-size: 1.2rem;
}

.site-footer p {
    margin: 4px 0;
    color: var(--muted);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(75, 136, 243, 0.35);
    outline-offset: 2px;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .hero-cover-inner {
        padding-top: calc(106px + env(safe-area-inset-top, 0px));
        padding-right: clamp(26px, 6vw, 58px);
        padding-left: clamp(22px, 4vw, 44px);
    }

    .hero-cover-copy {
        width: min(460px, 100%);
    }

    .hero-cover-copy h1 {
        font-size: clamp(1.82rem, 5vw, 2.18rem);
    }

    .hero,
    .vehicle-detail {
        grid-template-columns: 1fr;
    }

    .vehicle-detail {
        gap: 14px;
    }

    .vehicle-key-specs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vehicle-grid,
    .featured-grid,
    .about-grid,
    .empresa-pilares-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .brand-item {
        flex-basis: 124px;
    }

    .empresa-hero,
    .empresa-quem-somos {
        grid-template-columns: 1fr;
    }

    .filters-wrap,
    .about-company,
    .featured,
    .inventory,
    .vehicle-detail,
    .empresa-hero,
    .empresa-quem-somos,
    .empresa-pilares {
        padding: 18px;
    }
}

@media (max-width: 860px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
        scroll-padding-top: 78px;
    }

    .site-header,
    .site-header-overlay {
        padding-top: calc(9px + env(safe-area-inset-top, 0px));
        padding-right: calc(22px + env(safe-area-inset-right, 0px));
        padding-bottom: 9px;
        padding-left: calc(16px + env(safe-area-inset-left, 0px));
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
    }

    .site-header-overlay {
        transition: background-color 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
    }

    .brand img,
    .site-header-overlay .brand img {
        width: 154px;
    }

    .home-main,
    .hero-cover,
    .hero-cover-inner {
        max-width: 100%;
        overflow-x: hidden;
    }

    .brand-carousel-wrap {
        left: 0;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 12px;
        padding-right: 12px;
    }

    .site-nav a {
        width: auto;
        justify-content: center;
        text-align: center;
        min-height: 42px;
        font-size: 0.9rem;
    }

    .site-nav .nav-admin {
        background: rgba(255, 255, 255, 0.24);
    }

    .site-header-overlay .site-nav a {
        background: rgba(7, 20, 43, 0.48);
        border-color: rgba(255, 255, 255, 0.28);
    }

    .site-header-overlay .site-nav .nav-admin {
        background: rgba(255, 255, 255, 0.18);
    }

    .site-main:not(.home-main),
    .home-sections {
        width: 94vw;
        max-width: 94vw;
    }

    .home-main {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .home-sections {
        margin-top: 18px;
        gap: 14px;
    }

    .hero-cover {
        min-height: 92svh;
    }

    .hero-cover-inner {
        min-height: 92svh;
        padding-top: calc(96px + env(safe-area-inset-top, 0px));
        padding-right: 24px;
        padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px));
        padding-left: 24px;
        justify-content: flex-end;
    }

    .hero-cover-shade {
        background: linear-gradient(
            90deg,
            rgba(5, 15, 25, 0.04) 0%,
            rgba(5, 15, 25, 0.18) 42%,
            rgba(5, 15, 25, 0.72) 100%
        );
    }

    .hero-cover-copy h1 {
        font-size: clamp(1.68rem, 5.6vw, 2.05rem);
        margin-bottom: 0;
    }

    .hero-cover-copy p {
        font-size: 0.86rem;
        line-height: 1.45;
    }

    .hero-cover .hero-actions {
        width: 100%;
        gap: 10px;
        margin-top: 20px;
    }

    .hero-trust-row {
        gap: 12px;
        flex-wrap: wrap;
    }

    .hero-trust-row span {
        font-size: 0.72rem;
    }

    .hero-trust-row span + span {
        padding-left: 12px;
    }

    .brand-carousel-wrap {
        padding: 32px 14px 26px;
    }

    .brand-carousel-shell {
        margin-top: 18px;
        gap: 10px;
    }

    .brand-carousel-track {
        gap: 20px;
        scroll-snap-type: x mandatory;
        padding-bottom: 6px;
    }

    .brand-item {
        scroll-snap-align: center;
    }

    .featured h2,
    .inventory h2,
    .section-head h2 {
        font-size: clamp(1.34rem, 4.8vw, 1.66rem);
    }

    .featured-card,
    .vehicle-card {
        border-radius: 14px;
    }

    .featured-card div,
    .vehicle-content {
        padding: 12px;
    }

    .vehicle-cover img {
        height: 212px;
    }

    .card-preview-nav {
        opacity: 1;
        width: 36px;
        height: 36px;
    }

    .vehicle-main-image {
        min-height: 246px;
        max-height: 392px;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 700px) {
    .vehicle-grid,
    .featured-grid,
    .about-grid,
    .empresa-pilares-grid,
    .filters-grid,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .vehicle-spec-list {
        grid-template-columns: 1fr;
    }

    .brand-carousel-shell {
        grid-template-columns: 1fr;
    }

    .brand-carousel-arrow {
        display: none;
    }

    .brand-item {
        flex-basis: 112px;
        min-height: 68px;
    }

    .brand-item-logo {
        height: 54px;
    }

    .brand-item-logo img {
        width: 118px;
        height: 50px;
        max-height: 46px;
    }

    .empresa-media-stack,
    .empresa-metrics {
        grid-template-columns: 1fr;
    }

    .filter-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-actions button,
    .filter-clear {
        width: 100%;
        min-height: 48px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .vehicle-actions a {
        width: 100%;
    }

    .vehicle-description-text {
        max-height: 220px;
        overflow-y: auto;
        padding-right: 6px;
    }

    .vehicle-gallery-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 4px;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
    }

    .vehicle-gallery-thumb {
        flex: 0 0 112px;
        scroll-snap-align: start;
    }

    .vehicle-gallery-nav {
        width: 36px;
        height: 36px;
    }

    .vehicle-lightbox-close {
        top: -8px;
        right: -8px;
    }

    .vehicle-lightbox-nav,
    .vehicle-lightbox-close {
        width: 40px;
        height: 40px;
    }

    .vehicle-lightbox-prev {
        left: 8px;
    }

    .vehicle-lightbox-next {
        right: 8px;
    }

    .vehicle-lightbox-image {
        max-height: 76vh;
        max-width: 96vw;
    }

    .site-footer {
        text-align: center;
        gap: 10px;
    }

    .site-footer h3 {
        font-size: 1.08rem;
    }
}

@media (max-width: 560px) {
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
        scroll-padding-top: 72px;
    }

    .site-header,
    .site-header-overlay {
        padding-top: calc(8px + env(safe-area-inset-top, 0px));
        padding-right: calc(16px + env(safe-area-inset-right, 0px));
        padding-bottom: 8px;
        padding-left: calc(14px + env(safe-area-inset-left, 0px));
    }

    .brand-carousel-wrap {
        padding-left: 10px;
        padding-right: 10px;
    }

    .brand img,
    .site-header-overlay .brand img {
        width: 142px;
    }

    .site-nav a {
        font-size: 0.9rem;
        min-height: 44px;
        padding: 8px 11px;
    }

    .hero-cover-inner {
        padding-top: 92px;
        padding-bottom: 24px;
        align-items: flex-end;
        justify-content: center;
    }

    .hero-cover-copy h1 {
        font-size: clamp(1.56rem, 7.5vw, 1.9rem);
        margin-bottom: 0;
    }

    .hero-cover-copy h1 span {
        white-space: normal;
    }

    .hero-cover-copy p {
        font-size: 0.84rem;
    }

    .hero-cover .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-cover .cta-primary,
    .hero-cover .cta-ghost {
        width: 100%;
        min-height: 44px;
        font-size: 0.8rem;
    }

    .filters-wrap,
    .about-company,
    .featured,
    .inventory,
    .vehicle-detail,
    .empresa-hero,
    .empresa-quem-somos,
    .empresa-pilares,
    .site-footer {
        padding: 14px;
    }

    .brand-carousel-wrap {
        padding: 26px 10px 22px;
    }

    .brand-carousel-track {
        gap: 16px;
    }

    .vehicle-gallery-thumb {
        flex-basis: 102px;
    }

    .brand-item-logo img {
        width: 108px;
        height: 46px;
        max-height: 44px;
    }

    .vehicle-gallery-grid img {
        height: 84px;
    }

    .card-preview-nav {
        width: 34px;
        height: 34px;
    }

    .vehicle-main-image {
        min-height: 220px;
        max-height: none;
        aspect-ratio: 4 / 3;
    }

    .vehicle-detail-info h1 {
        font-size: 1.5rem;
    }

    .vehicle-price-detail strong {
        font-size: 1.56rem;
    }

    .vehicle-spec-panel-head {
        display: block;
    }

    .vehicle-spec-panel-head p {
        width: auto;
        margin-top: 4px;
        text-align: left;
    }

}


@media (max-width: 420px) {
    .site-main:not(.home-main),
    .home-sections {
        width: 95vw;
        max-width: 95vw;
    }

    .home-main {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-cover-inner {
        width: 95vw;
        max-width: 95vw;
    }

    .brand img,
    .site-header-overlay .brand img {
        width: 132px;
    }

    .hero-cover-copy .hero-tag {
        font-size: 0.66rem;
        letter-spacing: 0.12em;
    }

    .featured-card h3,
    .vehicle-card h3 {
        font-size: 1.02rem;
    }

    .card-link {
        width: 100%;
    }
}
