:root {
    --blue-950: #061b49;
    --blue-900: #082b6d;
    --blue-800: #083a8c;
    --blue-700: #0b4fb5;
    --blue-600: #1466d8;
    --blue-100: #eaf3ff;
    --sand-700: #ae6c1f;
    --sand-500: #d99532;
    --sand-300: #f0bf68;
    --sand-100: #fff3dc;
    --green: #18a83a;
    --green-700: #10812b;
    --red: #e33131;
    --ink: #111827;
    --muted: #5d6a7e;
    --line: rgba(8, 43, 109, .13);
    --white: #ffffff;
    --shadow-sm: 0 8px 26px rgba(8, 43, 109, .10);
    --shadow-md: 0 18px 48px rgba(8, 43, 109, .16);
    --shadow-lg: 0 28px 70px rgba(8, 43, 109, .22);
    --radius: 24px;
    --container: 1180px;
    --header-height: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 10% 0%, rgba(20, 102, 216, .12), transparent 26rem),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 45%, #ffffff 100%);
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.section-anchor { scroll-margin-top: calc(var(--header-height) + 24px); }
.skip-link {
    position: absolute;
    left: 14px;
    top: -60px;
    z-index: 999;
    background: var(--blue-950);
    color: #fff;
    padding: 12px 16px;
    border-radius: 12px;
    transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(8, 43, 109, .10);
    transition: min-height .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
    min-height: 74px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 14px 34px rgba(8, 43, 109, .13);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding-block: 12px;
}
.brand {
    width: clamp(162px, 18vw, 232px);
    flex: 0 0 auto;
    transform-origin: left center;
    transition: transform .2s ease;
}
.brand:hover { transform: translateY(-1px) scale(1.02); }
.brand img { width: 100%; height: auto; filter: drop-shadow(0 12px 22px rgba(8, 43, 109, .18)); }
.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2.1vw, 28px);
    color: var(--blue-950);
    font-size: .94rem;
    font-weight: 850;
}
.nav-link {
    position: relative;
    padding: 10px 0;
    transition: color .2s ease;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3px;
    height: 3px;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--blue-700), var(--sand-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease;
}
.nav-link:hover, .nav-link.active { color: var(--blue-700); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-700), var(--blue-950));
    border-radius: 14px;
    box-shadow: 0 15px 30px rgba(8, 43, 109, .28);
    transition: transform .2s ease, box-shadow .2s ease;
    white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(8, 43, 109, .36); }
.nav-cta svg { width: 19px; height: 19px; fill: currentColor; }
.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 14px;
    background: var(--blue-900);
    color: #fff;
    cursor: pointer;
    padding: 12px;
}
.menu-toggle span {
    display: block;
    height: 2px;
    margin: 6px 0;
    border-radius: 12px;
    background: currentColor;
    transition: transform .22s ease, opacity .22s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero {
    position: relative;
    min-height: 704px;
    padding: calc(var(--header-height) + 70px) 0 72px;
    overflow: hidden;
    isolation: isolate;
    background: #eaf3ff;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../assets/img/mendes-frota-hero-1920x760.webp') center top / cover no-repeat;
    transform: none;
    animation: heroPan 22s ease-in-out infinite alternate;
    z-index: -3;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.82) 32%, rgba(255,255,255,.35) 58%, rgba(255,255,255,.10) 100%),
        linear-gradient(180deg, rgba(6,27,73,.08) 0%, rgba(185,112,31,.18) 100%);
}
.hero::after {
    content: "";
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -1px;
    height: 160px;
    background: linear-gradient(0deg, #fff 14%, rgba(255,255,255,.88) 50%, rgba(255,255,255,0));
    pointer-events: none;
    z-index: -1;
}
@keyframes heroPan {
    from { background-position: center top; }
    to { background-position: center 8px; }
}
.dust { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.dust span {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--s);
    height: var(--s);
    background: rgba(220, 156, 70, .45);
    border-radius: 999px;
    filter: blur(.2px);
    box-shadow: 0 0 14px rgba(220, 156, 70, .25);
    animation: dustMove var(--d) linear infinite;
    animation-delay: var(--delay);
}
@keyframes dustMove {
    from { transform: translate3d(0, 0, 0); opacity: 0; }
    20%, 70% { opacity: 1; }
    to { transform: translate3d(96px, -74px, 0); opacity: 0; }
}
.hero-inner { position: relative; z-index: 2; }
.hero-copy { max-width: 660px; }
.years-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    padding: 13px 20px 14px;
    color: var(--blue-950);
    background: linear-gradient(135deg, #ffd56f, var(--sand-500));
    border-radius: 10px 22px 10px 22px;
    font-size: clamp(1rem, 2.1vw, 1.48rem);
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: -.02em;
    box-shadow: 0 18px 36px rgba(174, 108, 31, .30), inset 0 1px rgba(255,255,255,.42);
    position: relative;
    overflow: hidden;
}
.years-badge::before, .years-badge::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 34px;
    background: rgba(255,255,255,.28);
    transform: skewX(-18deg);
}
.years-badge::before { left: -18px; }
.years-badge::after { right: -18px; }
.hero h1 {
    margin: 0 0 18px;
    color: var(--blue-950);
    font-size: clamp(3.2rem, 7.2vw, 6.65rem);
    line-height: .91;
    letter-spacing: -.075em;
    text-shadow: 0 8px 30px rgba(255,255,255,.78);
}
.hero-copy p {
    max-width: 530px;
    margin: 0 0 30px;
    color: #24334f;
    font-size: clamp(1.04rem, 1.8vw, 1.36rem);
    line-height: 1.42;
    font-weight: 700;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 14px;
    color: #fff;
    font-weight: 900;
    box-shadow: var(--shadow-sm);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn svg { width: 21px; height: 21px; fill: currentColor; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); filter: saturate(1.2); }
.btn-primary { background: linear-gradient(135deg, var(--blue-600), var(--blue-950)); }
.btn-whatsapp { background: linear-gradient(135deg, #22c553, var(--green-700)); }
.highlights-wrap { position: relative; z-index: 5; margin-top: 64px; }
.highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(8,43,109,.13);
    border-radius: 22px;
    background: rgba(255,255,255,.92);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
}
.highlight-item {
    position: relative;
    min-height: 104px;
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: center;
    gap: 14px;
    padding: 22px;
    color: var(--blue-950);
}
.highlight-item + .highlight-item { border-left: 1px solid var(--line); }
.highlight-item strong { display: block; font-size: .98rem; line-height: 1.18; }
.highlight-item span:not(.icon-box) { display: block; font-size: .9rem; font-weight: 800; line-height: 1.18; }
.highlight-copy { min-width: 0; }
.highlight-copy strong,
.highlight-copy span { display: block; white-space: nowrap; }
.icon-box {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    background: var(--blue-100);
    color: var(--blue-800);
    border-radius: 16px;
}
.icon-box svg { width: 30px; height: 30px; fill: currentColor; }

/* Destaque de entrega no padrão visual da versão 3 */
.highlight-delivery-v3 {
    grid-template-columns: 56px 1fr;
    column-gap: 15px;
    min-height: 108px;
    padding: 24px 22px;
}
.highlight-delivery-v3 .icon-box {
    width: 56px;
    height: 56px;
    background: var(--blue-100);
    border: 1px solid rgba(7,58,141,.12);
    border-radius: 16px;
}
.highlight-delivery-v3 .icon-box svg {
    width: 34px;
    height: 34px;
}
.highlight-delivery-v3 strong {
    color: var(--blue-950);
    font-size: 1rem;
    line-height: 1.15;
}
.highlight-delivery-v3 span:not(.icon-box) {
    color: var(--ink);
    font-weight: 800;
}
.highlight-item.with-photo {
    grid-template-columns: 62px 1fr;
}
.highlight-item.with-photo div strong,
.highlight-item.with-photo div span { display: block; white-space: nowrap; }
.highlight-item.with-photo img {
    width: 62px;
    height: 62px;
    object-fit: cover;
    border-radius: 999px;
    border: 4px solid #fff;
    box-shadow: 0 8px 22px rgba(8,43,109,.20);
}

.section-head { max-width: 780px; margin-bottom: 32px; }
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue-700);
    font-weight: 1000;
    font-size: .86rem;
    text-transform: uppercase;
    letter-spacing: .055em;
}
.section-kicker::before {
    content: "";
    width: 36px;
    height: 3px;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--sand-500), var(--blue-700));
}
.section-kicker.light { color: rgba(255,255,255,.86); }
.section-kicker.light::before { background: var(--sand-300); }
.section-head h2, .contact-copy h2, .about h2 {
    margin: 10px 0 10px;
    color: var(--blue-950);
    font-size: clamp(2.05rem, 4.2vw, 3.45rem);
    line-height: 1.02;
    letter-spacing: -.045em;
}
.section-head p, .contact-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.65;
    font-weight: 650;
}
.products { padding: 70px 0 56px; background: #fff; }
.product-groups {
    display: grid;
    gap: 22px;
}
.product-group {
    position: relative;
    padding: 24px 24px 22px;
    border: 2px solid rgba(11,79,181,.24);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,255,.90));
    box-shadow: 0 16px 36px rgba(8,43,109,.07);
}
.product-group-title {
    position: absolute;
    top: -15px;
    left: 24px;
    margin: 0;
    padding: 0 12px;
    background: #fff;
    color: var(--blue-800);
    font-size: 1.02rem;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .045em;
    font-weight: 1000;
}
.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 18px;
}
.product-card {
    position: relative;
    flex: 0 1 204px;
    min-height: 278px;
    overflow: hidden;
    border: 1px solid rgba(8,43,109,.10);
    border-radius: 20px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow-sm);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-card-wide { flex-basis: 420px; display: grid; grid-template-columns: 190px 1fr; min-height: 150px; }
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(11,79,181,.28);
}
.product-card img {
    width: 100%;
    height: 135px;
    object-fit: cover;
    transition: transform .35s ease;
}
.product-card-wide img { height: 100%; }
.product-card:hover img { transform: scale(1.06); }
.product-card div { padding: 16px 15px 18px; text-align: center; }
.product-card-wide div { display: grid; align-content: center; text-align: left; padding: 18px; }
.product-card h3, .product-card h4 {
    margin: 0 0 7px;
    color: var(--blue-900);
    font-size: 1.05rem;
    line-height: 1.12;
    letter-spacing: -.02em;
}
.product-card p {
    margin: 0;
    color: #334155;
    font-size: .88rem;
    line-height: 1.32;
    font-weight: 650;
}
.product-card::after {
    content: "";
    position: absolute;
    inset: auto 14px 12px;
    height: 4px;
    background: linear-gradient(90deg, var(--sand-500), var(--blue-700));
    border-radius: 20px;
    opacity: 0;
    transform: scaleX(.68);
    transition: opacity .22s ease, transform .22s ease;
}
.product-card:hover::after { opacity: 1; transform: scaleX(1); }

.fleet {
    padding: 58px 0 72px;
    background:
        radial-gradient(circle at 90% 20%, rgba(217,149,50,.18), transparent 24rem),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.fleet-card {
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(8,43,109,.10);
    box-shadow: var(--shadow-sm);
    transition: transform .22s ease, box-shadow .22s ease;
}
.fleet-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.fleet-card img { width: 100%; height: 190px; object-fit: cover; transition: transform .4s ease; }
.fleet-card:hover img { transform: scale(1.04); }
.fleet-card div { padding: 16px 16px 20px; text-align: center; position: relative; }
.fleet-card h3 { margin: 0 0 6px; color: var(--blue-900); font-size: 1.17rem; }
.fleet-card p { margin: 0; color: #475569; font-size: .93rem; line-height: 1.38; font-weight: 650; }

.about {
    padding: 0 0 64px;
    background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}
.about-card {
    position: relative;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 40px;
    overflow: hidden;
    border-radius: 28px;
    padding: clamp(28px, 4vw, 48px);
    color: #fff;
    background:
        linear-gradient(135deg, rgba(8,43,109,.96), rgba(11,79,181,.93)),
        url('../assets/img/mendes-frota-thumb-640x360.webp') center / cover no-repeat;
    box-shadow: var(--shadow-lg);
}
.about-card::before {
    content: "M";
    position: absolute;
    right: 3%;
    bottom: -32%;
    color: rgba(255,255,255,.055);
    font-size: min(34vw, 410px);
    font-weight: 1000;
    line-height: 1;
    pointer-events: none;
}
.about h2 { color: #fff; max-width: 520px; }
.about-text { position: relative; z-index: 1; align-self: center; }
.about-text p {
    margin: 0 0 14px;
    color: rgba(255,255,255,.88);
    font-size: 1.08rem;
    line-height: 1.64;
    font-weight: 650;
}
.about-text strong {
    display: inline-block;
    color: #ffd56f;
    font-size: 1.18rem;
}

.contact {
    padding: 58px 0 66px;
    background: #fff;
}
.contact-grid {
    display: grid;
    grid-template-columns: .86fr 1.02fr 1.15fr;
    gap: 24px;
    align-items: stretch;
}
.contact-copy, .contact-main, .contact-details {
    border: 1px solid rgba(8,43,109,.11);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}
.contact-copy { padding: 28px; }
.contact-copy h2 { margin-bottom: 12px; }
.mini-delivery {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 16px;
    color: var(--blue-900);
    background: var(--blue-100);
    border-radius: 18px;
}
.mini-delivery svg { width: 42px; min-width: 42px; height: 42px; fill: currentColor; }
.contact-main {
    display: grid;
    gap: 18px;
    padding: 24px;
    align-content: center;
}
.phone-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 86px;
    padding: 17px;
    border-radius: 18px;
    border: 1px solid rgba(8,43,109,.13);
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
}
.phone-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.phone-card svg {
    width: 44px;
    min-width: 44px;
    height: 44px;
    fill: currentColor;
}
.phone-card.phone { color: var(--blue-900); }
.phone-card.whatsapp { color: var(--green); }
.phone-card span {
    color: var(--red);
    font-size: clamp(1.2rem, 2vw, 1.58rem);
    font-weight: 1000;
    letter-spacing: -.04em;
}
.contact-details {
    display: grid;
    align-content: center;
    gap: 14px;
    margin: 0;
    padding: 24px;
    font-style: normal;
}
.contact-details a, .contact-details p {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    align-items: start;
    margin: 0;
    color: #1f2f4b;
    font-size: .97rem;
    line-height: 1.38;
    font-weight: 650;
}
.contact-details svg { width: 24px; height: 24px; fill: var(--blue-700); margin-top: 1px; }
.contact-details p svg,
.contact-details .map-link svg { fill: #e43d3d; }
.contact-details a:hover { color: var(--blue-700); }
.contact-details .map-link:hover span { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.contact-details strong { color: var(--blue-900); }

.site-footer {
    color: #fff;
    background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
    padding: 22px 0;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
.footer-brand { width: 154px; flex: 0 0 auto; }
.footer-brand img { width: 100%; height: auto; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 18px; font-weight: 800; }
.site-footer a { opacity: .92; transition: opacity .2s ease; }
.site-footer a:hover { opacity: 1; }
.site-footer p { margin: 0; color: rgba(255,255,255,.82); font-size: .92rem; text-align: right; }
.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, #25d366, #119a35);
    border-radius: 999px;
    box-shadow: 0 18px 34px rgba(17,154,53,.34);
    animation: pulseWhats 2.6s ease-in-out infinite;
}
.floating-whatsapp svg { width: 34px; height: 34px; fill: currentColor; }
@keyframes pulseWhats {
    0%, 100% { transform: scale(1); box-shadow: 0 18px 34px rgba(17,154,53,.34); }
    50% { transform: scale(1.06); box-shadow: 0 22px 46px rgba(17,154,53,.45); }
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .66s ease, transform .66s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@media (max-width: 1120px) {
    .product-card { flex-basis: 190px; }
    .fleet-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr 1fr; }
    .contact-details { grid-column: 1 / -1; }
}
@media (max-width: 940px) {
    :root { --header-height: 78px; }
    .container { width: min(100% - 30px, var(--container)); }
    .menu-toggle { display: block; }
    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 15px;
        right: 15px;
        display: grid;
        gap: 0;
        padding: 10px;
        border-radius: 22px;
        background: rgba(255,255,255,.98);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(8,43,109,.10);
        transform: translateY(-18px);
        opacity: 0;
        pointer-events: none;
        transition: transform .22s ease, opacity .22s ease;
    }
    .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .nav-link, .nav-cta { padding: 15px 16px; border-radius: 14px; }
    .nav-link::after { display: none; }
    .nav-link:hover, .nav-link.active { background: var(--blue-100); }
    .nav-cta { margin-top: 8px; }
    .hero { min-height: auto; padding: calc(var(--header-height) + 44px) 0 54px; }
    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.72)),
            linear-gradient(180deg, rgba(6,27,73,.05), rgba(185,112,31,.18));
    }
    .hero-copy { max-width: 560px; }
    .highlights-wrap { margin-top: 42px; }
    .highlights { grid-template-columns: repeat(2, 1fr); }
    .highlight-item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
    .highlight-item:nth-child(4) { border-top: 1px solid var(--line); }
    .product-group { padding-inline: 18px; }
    .product-card { flex-basis: 185px; }
    .about-card { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 720px) {
    .brand { width: 166px; }
    .header-inner { padding-block: 10px; }
    .hero { padding-top: calc(var(--header-height) + 30px); }
    .hero-bg { background-position: center top; background-size: cover; }
    .hero-overlay { background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.64)); }
    .years-badge { font-size: 1rem; padding: 11px 14px; }
    .hero h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
    .hero-copy p { font-size: 1rem; }
    .hero-actions { display: grid; grid-template-columns: 1fr; max-width: 340px; }
    .btn { width: 100%; }
    .highlights { grid-template-columns: 1fr; }
    .highlight-item { min-height: 88px; padding: 18px; }

    .highlight-delivery-v3 { min-height: 88px; padding: 18px; grid-template-columns: 54px 1fr; }
    .highlight-delivery-v3 .icon-box { width: 54px; height: 54px; }
    .highlight-delivery-v3 .icon-box svg { width: 30px; height: 30px; }
    .highlight-item + .highlight-item { border-left: 0; border-top: 1px solid var(--line); }
    .products { padding-top: 50px; }
    .product-list { gap: 14px; }
    .product-card { flex-basis: calc(50% - 7px); min-height: 250px; }
    .product-card img { height: 122px; }
    .product-card-wide { flex-basis: min(100%, 430px); grid-template-columns: 150px 1fr; min-height: 136px; }
    .fleet-grid { grid-template-columns: 1fr; }
    .fleet-card img { height: 225px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; text-align: center; }
    .site-footer p { text-align: center; }
    .floating-whatsapp { right: 16px; bottom: 16px; width: 58px; height: 58px; }
}
@media (max-width: 480px) {
    .container { width: min(100% - 24px, var(--container)); }
    .product-group { padding: 22px 12px 16px; }
    .product-group-title { left: 16px; }
    .product-card, .product-card-wide { flex-basis: 100%; display: grid; grid-template-columns: 136px 1fr; min-height: 136px; }
    .product-card img, .product-card-wide img { width: 136px; height: 100%; }
    .product-card div, .product-card-wide div { display: grid; align-content: center; text-align: left; padding: 14px; }
    .product-card::after { display: none; }
    .phone-card { align-items: flex-start; }
    .phone-card span { font-size: 1.28rem; }
    .contact-details a, .contact-details p { font-size: .92rem; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
}
