/* EK move.Go — landing (spec palette + layout) */
:root {
    --navy: #002D5E;
    --sky: #4A90E2;
    --white: #FFFFFF;
    --gray-bg: #FFFFFF;
    --amber: #E1A334;
    --text: #111827;
    --text-muted: #6B7280;
    --hero-subtitle: #153a66;
    --hero-body-on-photo: #1e3a5c;
    --hero-flag-label: #334155;
    --shadow-card: 0 10px 40px rgba(0, 45, 94, 0.08);
    --shadow-header: 0 4px 24px rgba(0, 45, 94, 0.08);
    --radius: 14px;
    --radius-btn: 999px;
    --font-head: 'Montserrat', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    /* Fluid horizontal gutter: comfortable on phones, generous on large screens */
    --page-gutter: clamp(16px, 4.2vw, 48px);
    --section-pad-y: clamp(2.75rem, 5vw + 1rem, 4.5rem);
    --section-pad-y-tight: clamp(2rem, 4vw + 0.5rem, 3.25rem);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
    background: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
    padding-inline: env(safe-area-inset-left) env(safe-area-inset-right);
}

/* Fragment target for #top — not on sticky header so “Início” scrolls the page */
.page-top-anchor {
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    scroll-margin-top: 0;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

.container {
    width: min(1120px, calc(100% - 2 * var(--page-gutter)));
    margin-inline: auto;
    padding-inline: 0;
}

.container-wide {
    width: min(1240px, calc(100% - 2 * var(--page-gutter)));
    margin-inline: auto;
    padding-inline: 0;
}

/* ——— Header ——— */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    transition: box-shadow 0.25s ease;
    padding-top: env(safe-area-inset-top);
}

.site-header.is-scrolled {
    box-shadow: var(--shadow-header);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(12px, 2.5vw, 20px);
    padding: clamp(10px, 1.8vw, 14px) 0;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}

.brand-img {
    height: auto;
    width: auto;
    max-height: clamp(52px, 12vw, 84px);
    max-width: min(220px, min(42vw, 200px));
    object-fit: contain;
    display: block;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy);
}

.main-nav a:hover {
    color: var(--sky);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    border-radius: var(--radius-btn);
    padding: 0.65rem 1.35rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn-shine::before {
    content: '';
    position: absolute;
    inset: 0;
    left: -100%;
    width: 55%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.35) 45%,
        transparent 75%
    );
    transform: skewX(-18deg);
    transition: left 0.55s ease;
    pointer-events: none;
}

.btn-shine:hover::before {
    left: 125%;
}

.btn-nav-cta {
    background: var(--navy);
    color: var(--white);
    font-size: 0.8rem;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 45, 94, 0.25);
    border-radius: 8px;
}

.nav-cta-in-menu {
    display: none;
}

.btn-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(0, 45, 94, 0.35);
}

.btn-primary {
    background: var(--sky);
    color: var(--white);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    box-shadow: 0 6px 24px rgba(74, 144, 226, 0.45);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
}

.btn-dark:hover {
    box-shadow: 0 6px 24px rgba(0, 45, 94, 0.35);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 0.85rem 1.75rem;
}

.btn-block {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    border-radius: 36px;
}

.nav-toggle {
    display: none;
    font-size: 1.35rem;
    color: var(--navy);
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

/* ——— Hero carousel ——— */
.hero-carousel-wrap {
    position: relative;
}

.hero-swiper {
    width: 100%;
    position: relative;
}

.hero-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 0.45;
    background: var(--navy);
    transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--sky);
    opacity: 1;
    transform: scale(1.25);
}

.hero-pagination {
    /* Force pagination to stay inside the hero slider */
    position: absolute !important;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 3;
    bottom: calc(clamp(12px, 2.2vw, 18px) + env(safe-area-inset-bottom)) !important;
    padding-inline: var(--page-gutter);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-swiper:has(.swiper-slide:only-of-type) .hero-pagination,
.hero-swiper:has(.swiper-slide:only-of-type) .hero-nav {
    display: none !important;
}

.hero-slide {
    position: relative;
    min-height: clamp(420px, 72vh, 560px);
    display: flex;
    align-items: center;
    padding: clamp(28px, 5vw, 48px) 0 clamp(40px, 6vw, 64px);
    overflow: hidden;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        105deg,
        rgba(0, 45, 94, 0.38) 0%,
        rgba(74, 144, 226, 0.08) 42%,
        transparent 68%
    );
}

.hero-slide--b::after {
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.14) 38%,
            rgba(255, 255, 255, 0.62) 62%,
            rgba(255, 255, 255, 0.88) 82%,
            rgba(255, 255, 255, 0.94) 100%
        ),
        linear-gradient(
            125deg,
            rgba(0, 45, 94, 0.4) 0%,
            rgba(0, 45, 94, 0.1) 42%,
            transparent 62%
        );
}

.hero-slide--c::after {
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.12) 36%,
            rgba(248, 250, 255, 0.58) 58%,
            rgba(255, 255, 255, 0.86) 80%,
            rgba(255, 255, 255, 0.93) 100%
        ),
        linear-gradient(
            210deg,
            rgba(74, 144, 226, 0.2) 0%,
            rgba(0, 45, 94, 0.28) 48%,
            transparent 72%
        );
}

.hero-slide--d::after {
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.1) 34%,
            rgba(248, 250, 255, 0.55) 56%,
            rgba(255, 255, 255, 0.88) 78%,
            rgba(255, 255, 255, 0.94) 100%
        ),
        linear-gradient(
            118deg,
            rgba(0, 45, 94, 0.42) 0%,
            rgba(0, 45, 94, 0.12) 44%,
            transparent 68%
        );
}

.hero-slide--e::after {
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.08) 28%,
            rgba(255, 255, 255, 0.52) 52%,
            rgba(255, 255, 255, 0.9) 76%,
            rgba(255, 255, 255, 0.95) 100%
        ),
        linear-gradient(
            200deg,
            rgba(74, 144, 226, 0.18) 0%,
            rgba(0, 45, 94, 0.26) 45%,
            transparent 70%
        );
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('assets/banner.png') center center / cover no-repeat;
    z-index: 0;
    transform-origin: center center;
    animation: heroBgDrift 24s ease-in-out infinite alternate;
}

.hero-slide--b .hero-bg {
    /* Wide delivery art: subject left, clear area right — keep focal band centered-left */
    background-image: url('assets/bannern0.png');
    background-position: 44% center;
    background-size: cover;
    animation-name: heroBgDriftDelivery;
    animation-duration: 32s;
    filter: saturate(1.06) contrast(1.02);
}

.hero-slide--c .hero-bg {
    background-image: url('assets/bannern1.png');
    background-position: 42% center;
    background-size: cover;
    animation-name: heroBgDriftDelivery;
    animation-duration: 30s;
    filter: saturate(1.05) contrast(1.02);
}

.hero-slide--d .hero-bg {
    background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1920&q=80');
    animation-duration: 26s;
    filter: saturate(1.05) contrast(1.03);
}

.hero-slide--e .hero-bg {
    background-image: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&w=1920&q=80');
    animation-duration: 22s;
    filter: brightness(0.92) saturate(1.08);
}

@keyframes heroBgDrift {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.07) translate(-1.2%, -0.6%);
    }
}

/* Gentler drift on wide delivery banners so faces and branding stay in frame */
@keyframes heroBgDriftDelivery {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.035) translate(-0.6%, -0.35%);
    }
}

.hero-nav {
    width: 46px;
    height: 46px;
    margin-top: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--navy);
    box-shadow: 0 6px 28px rgba(0, 45, 94, 0.18);
    transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.hero-nav::after {
    display: none;
}

.hero-nav i {
    font-size: 0.95rem;
    transition: transform 0.2s ease;
}

.hero-nav:hover {
    background: var(--white);
    color: var(--sky);
    box-shadow: 0 10px 32px rgba(0, 45, 94, 0.22);
}

.hero-nav:hover i {
    transform: scale(1.12);
}

.hero-nav:active i {
    transform: scale(0.92);
}

.hero-swiper .hero-nav--prev {
    left: 12px;
}

.hero-swiper .hero-nav--next {
    right: 12px;
}

@media (max-width: 600px) {
    .hero-swiper .hero-nav--prev {
        left: 6px;
    }

    .hero-swiper .hero-nav--next {
        right: 6px;
    }

    .hero-nav {
        width: 40px;
        height: 40px;
    }
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    min-height: clamp(280px, 52vh, 420px);
    padding-inline: 0;
}

.hero-copy--support .hero-phone-wrap {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin-top: 0.15rem;
}

.hero-cta-row .btn > .fa-solid:first-child,
.hero-cta-row .btn > .fa-brands:first-child {
    margin-inline-end: 0.45em;
}

.hero-phone-highlight {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding: clamp(12px, 2.5vw, 16px) clamp(16px, 3vw, 22px);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(225, 163, 52, 0.22) 0%, rgba(255, 255, 255, 0.96) 55%);
    border: 2px solid var(--amber);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.8) inset,
        0 10px 32px rgba(225, 163, 52, 0.35),
        0 4px 16px rgba(0, 45, 94, 0.12);
    text-decoration: none;
    color: var(--navy);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: heroPhoneGlow 2.8s ease-in-out infinite;
}

.hero-phone-highlight:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.9) inset,
        0 14px 40px rgba(225, 163, 52, 0.45),
        0 6px 20px rgba(0, 45, 94, 0.14);
}

.hero-phone-label {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
}

.hero-phone-num {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.15rem, 0.9rem + 2vw, 1.65rem);
    letter-spacing: 0.04em;
    line-height: 1.15;
    color: var(--navy);
}

@keyframes heroPhoneGlow {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.8) inset,
            0 10px 32px rgba(225, 163, 52, 0.32),
            0 4px 16px rgba(0, 45, 94, 0.12);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.85) inset,
            0 12px 40px rgba(225, 163, 52, 0.55),
            0 6px 22px rgba(74, 144, 226, 0.18);
    }
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: clamp(0.9rem, 2.5vw, 1.25rem);
    max-width: 560px;
    width: 100%;
    min-width: 0;
    text-align: left;
    align-items: flex-start;
}

.countdown-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: clamp(12px, 3vw, 16px) clamp(12px, 3.5vw, 20px);
    box-shadow: var(--shadow-card);
    align-self: flex-start;
    max-width: 100%;
}

.countdown-digits {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4px 6px;
    row-gap: 8px;
}

.cd-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.cd-num {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.35rem, 5vw + 0.35rem, 2.35rem);
    color: var(--navy);
    min-width: 2.4ch;
    text-align: center;
    line-height: 1;
    transition: opacity 0.15s ease;
}

.cd-num.is-tick {
    opacity: 0.65;
}

.cd-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--amber);
}

.cd-sep {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.1rem, 3.5vw, 1.75rem);
    color: var(--navy);
    margin-bottom: clamp(0.85rem, 3vw, 1.35rem);
    opacity: 0.35;
    animation: cdBlink 1s ease infinite;
    line-height: 1;
}

@keyframes cdBlink {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 0.1; }
}

.hero-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.28rem, 1.1rem + 2.8vw, 2.65rem);
    line-height: 1.12;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-align: inherit;
    text-wrap: balance;
    text-shadow:
        0 0 1px rgba(255, 255, 255, 0.9),
        0 1px 2px rgba(255, 255, 255, 0.75),
        0 0 28px rgba(255, 255, 255, 0.45);
}

.hero-region {
    font-weight: 600;
    color: var(--hero-subtitle);
    font-size: clamp(0.9rem, 2.2vw, 1.05rem);
    line-height: 1.4;
    text-align: inherit;
    width: 100%;
}

.hero-copy .flags-row--hero {
    justify-content: flex-start;
    gap: 6px 8px;
}

.hero-copy .flags-row--hero .flag-img {
    width: 32px;
    height: 32px;
    border-width: 2px;
    box-shadow: 0 2px 8px rgba(0, 45, 94, 0.1);
}

.hero-copy .flags-row--hero .flag-chip {
    font-size: 0.58rem;
    gap: 4px;
    color: var(--hero-flag-label);
}

.hero-copy--promo {
    gap: 1rem;
}

.hero-delivery-slogan {
    font-size: clamp(0.95rem, 0.82rem + 1.1vw, 1.14rem);
    font-weight: 600;
    line-height: 1.55;
    max-width: 36rem;
}

.hero-kicker {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    text-align: inherit;
    width: 100%;
}

.hero-title--slide {
    text-transform: none;
    letter-spacing: 0.01em;
    font-size: clamp(1.22rem, 1rem + 2.6vw, 2.5rem);
}

.hero-lead {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    color: var(--hero-body-on-photo);
    font-weight: 500;
    line-height: 1.5;
    max-width: 34rem;
    text-align: inherit;
}

@keyframes heroSoftFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -5px, 0);
    }
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(10px, 2.5vw, 14px);
    margin-top: 0.35rem;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    animation: heroSoftFloat 6.8s ease-in-out infinite;
}

.hero-slide .countdown-card {
    animation: heroSoftFloat 7.5s ease-in-out infinite;
    animation-delay: -1.2s;
}

.hero-slide--a .hero-title {
    animation: heroSoftFloat 8.2s ease-in-out infinite;
    animation-delay: -2.4s;
}

.hero-slide--a .hero-region {
    animation: heroSoftFloat 7s ease-in-out infinite;
    animation-delay: -0.6s;
}

.hero-slide--a .flags-row--hero {
    animation: heroSoftFloat 8.8s ease-in-out infinite;
    animation-delay: -3.1s;
}

.hero-slide--a .hero-cta-row {
    animation-duration: 6.2s;
    animation-delay: -1.8s;
}

.hero-slide--b .hero-copy--promo > .hero-kicker,
.hero-slide--c .hero-copy--promo > .hero-kicker,
.hero-slide--d .hero-copy--promo > .hero-kicker,
.hero-slide--e .hero-copy--promo > .hero-kicker {
    animation: heroSoftFloat 8s ease-in-out infinite;
    animation-delay: -0.8s;
}

.hero-slide--b .hero-copy--promo > .hero-title,
.hero-slide--c .hero-copy--promo > .hero-title,
.hero-slide--d .hero-copy--promo > .hero-title,
.hero-slide--e .hero-copy--promo > .hero-title {
    animation: heroSoftFloat 7.2s ease-in-out infinite;
    animation-delay: -2s;
}

.hero-slide--b .hero-copy--promo > .hero-lead,
.hero-slide--c .hero-copy--promo > .hero-lead,
.hero-slide--d .hero-copy--promo > .hero-lead,
.hero-slide--e .hero-copy--promo > .hero-lead {
    animation: heroSoftFloat 9s ease-in-out infinite;
    animation-delay: -3.4s;
}

.hero-slide--b .hero-copy--promo > .hero-cta-row,
.hero-slide--c .hero-copy--promo > .hero-cta-row,
.hero-slide--d .hero-copy--promo > .hero-cta-row,
.hero-slide--e .hero-copy--promo > .hero-cta-row {
    animation-duration: 6.5s;
    animation-delay: -1.1s;
}

.hero-slide--e .hero-copy--promo > .hero-phone-wrap {
    animation: heroSoftFloat 8.4s ease-in-out infinite;
    animation-delay: -2.6s;
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide--b .hero-bg,
    .hero-slide--c .hero-bg {
        animation: none !important;
    }

    .hero-cta-row,
    .hero-slide .countdown-card,
    .hero-slide--a .hero-title,
    .hero-slide--a .hero-region,
    .hero-slide--a .flags-row--hero,
    .hero-slide--b .hero-copy--promo > .hero-kicker,
    .hero-slide--b .hero-copy--promo > .hero-title,
    .hero-slide--b .hero-copy--promo > .hero-lead,
    .hero-slide--c .hero-copy--promo > .hero-kicker,
    .hero-slide--c .hero-copy--promo > .hero-title,
    .hero-slide--c .hero-copy--promo > .hero-lead,
    .hero-slide--d .hero-copy--promo > .hero-kicker,
    .hero-slide--d .hero-copy--promo > .hero-title,
    .hero-slide--d .hero-copy--promo > .hero-lead,
    .hero-slide--e .hero-copy--promo > .hero-kicker,
    .hero-slide--e .hero-copy--promo > .hero-title,
    .hero-slide--e .hero-copy--promo > .hero-lead,
    .hero-slide--e .hero-copy--promo > .hero-phone-wrap,
    .hero-phone-highlight {
        animation: none !important;
    }
}

.btn-hero-outline {
    border-radius: var(--radius-btn);
    background: rgba(255, 255, 255, 0.94);
    color: var(--navy);
    border: 2px solid rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 18px rgba(0, 45, 94, 0.12);
}

.hero-cta-row .btn {
    min-height: 44px;
    text-align: center;
}

.btn-hero-outline:hover {
    background: var(--white);
    border-color: var(--sky);
    color: var(--sky);
    transform: translateY(-1px);
    box-shadow: 0 8px 26px rgba(74, 144, 226, 0.25);
}

.flags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: flex-start;
}

.flag-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.flag-chip:hover {
    transform: scale(1.06);
}

.flag-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px rgba(0, 45, 94, 0.12);
}

.flag-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flags-row--dense .flag-img {
    width: 40px;
    height: 40px;
}

.split-col--left > h3.split-heading:not(.split-heading--sub) {
    text-align: center;
    width: 100%;
}

.split-col--left .flags-row--dense {
    justify-content: center;
    gap: 6px 8px;
}

.split-col--left .flags-row--dense .flag-img {
    width: 32px;
    height: 32px;
    border-width: 2px;
    box-shadow: 0 2px 8px rgba(0, 45, 94, 0.1);
}

.split-col--left .flags-row--dense .flag-chip {
    font-size: 0.58rem;
    gap: 4px;
}

/* ——— Sections ——— */
.section {
    padding: var(--section-pad-y) 0;
}

#beneficios,
#motoristas,
#como-funciona,
#pre-cadastro,
#contato,
#paises,
#sobre-nos {
    scroll-margin-top: calc(80px + env(safe-area-inset-top));
}

.section-about .about-tagline {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(1.05rem, 1.2vw + 0.85rem, 1.35rem);
    text-align: center;
    color: var(--navy);
    margin: -0.75rem auto clamp(1.25rem, 3vw, 1.75rem);
    max-width: 36rem;
    line-height: 1.35;
    text-wrap: balance;
}

.section-about .about-prose {
    max-width: 40rem;
    margin: 0 auto;
    font-size: clamp(0.9rem, 0.35vw + 0.82rem, 1rem);
    color: var(--text-muted);
    line-height: 1.65;
}

.section-about .about-prose p {
    margin: 0 0 1em;
}

.section-about .about-prose p:last-child {
    margin-bottom: 0;
}

.section-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(1.5rem, 2.2vw + 0.75rem, 2.25rem);
    text-align: center;
    color: var(--navy);
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    padding-inline: 0;
    text-wrap: balance;
}

.section-benefits {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 20px);
    align-items: stretch;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: clamp(18px, 3vw, 24px) clamp(12px, 2vw, 16px) clamp(16px, 2.5vw, 22px);
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 45, 94, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    height: 100%;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 44px rgba(0, 45, 94, 0.12);
    border-color: rgba(74, 144, 226, 0.32);
}

.benefit-logo-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.benefit-logo {
    display: block;
    max-width: 72px;
    max-height: 72px;
    width: auto;
    height: auto;
    margin: 0;
    object-fit: contain;
}

.benefit-accent {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--navy);
    margin-bottom: 4px;
    line-height: 1.35;
    width: 100%;
    max-width: 100%;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex-shrink: 0;
}

.benefit-accent .benefit-bracket {
    color: var(--amber);
}

.benefit-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.35;
    width: 100%;
    flex-shrink: 0;
}

.section-alt {
    background: var(--gray-bg);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
    padding-block: 0;
}

.split-heading {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(1.15rem, 1.8vw + 0.5rem, 1.35rem);
    color: var(--navy);
    margin-bottom: clamp(12px, 2vw, 18px);
    line-height: 1.25;
    text-wrap: balance;
}

.split-col--left {
    color: var(--text);
    min-width: 0;
}

.split-col--right {
    color: var(--text);
    min-width: 0;
}

.split-heading--sub {
    margin-top: clamp(24px, 4vw, 40px);
    text-align: center;
    width: 100%;
}

.how-icons {
    margin-top: 12px;
    max-width: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
}

.how-graphics-img {
    display: block;
    width: 100%;
    max-width: min(440px, 100%);
    height: auto;
    object-fit: contain;
    margin-inline: auto;
}

.how-downloads {
    margin-top: clamp(16px, 3vw, 22px);
    width: 100%;
    max-width: min(440px, 100%);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.how-downloads-label {
    margin: 0;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy);
    letter-spacing: 0.02em;
}

.how-downloads-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 12px;
    width: 100%;
}

.btn-how-download {
    gap: 0.5rem;
    font-size: 0.85rem;
    padding: 0.6rem 1.15rem;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 45, 94, 0.18);
}

.btn-how-download i {
    font-size: 1.15rem;
    line-height: 1;
}

.btn-how-download--android {
    background: var(--navy);
    color: var(--white);
}

.btn-how-download--android:hover {
    box-shadow: 0 6px 22px rgba(0, 45, 94, 0.32);
    transform: translateY(-1px);
}

.btn-how-download--ios {
    background: var(--sky);
    color: var(--white);
}

.btn-how-download--ios:hover {
    box-shadow: 0 6px 24px rgba(74, 144, 226, 0.45);
    transform: translateY(-1px);
}

.proof-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 12px 28px;
    margin-bottom: 22px;
    width: 100%;
}

.proof-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    text-align: center;
    align-items: center;
}

.proof-num {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--navy);
}

.proof-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: capitalize;
}

.proof-stars-label {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--navy);
    letter-spacing: 0.06em;
}

.stars {
    color: var(--amber);
    letter-spacing: 2px;
    font-size: 1rem;
}

.form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: clamp(22px, 4vw, 32px) clamp(18px, 3.5vw, 28px);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0, 45, 94, 0.06);
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.form-card.form-card--success {
    border-color: rgba(74, 144, 226, 0.28);
    box-shadow: 0 16px 52px rgba(0, 45, 94, 0.12), 0 0 0 1px rgba(74, 144, 226, 0.08);
}

.form-card:hover {
    box-shadow: 0 14px 48px rgba(0, 45, 94, 0.1);
    border-color: rgba(74, 144, 226, 0.2);
    transform: translateY(-2px);
}

.form-card.form-card--success:hover {
    transform: translateY(-2px);
}

.form-card-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.35rem;
    text-align: center;
    color: var(--navy);
    margin-bottom: 22px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 44px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

.lead-partner-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lead-partner-fields[hidden] {
    display: none !important;
}

.lead-partner-fleet[hidden] {
    display: none !important;
}

.lead-partner-hint {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.field.field--checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.field.field--checkbox input[type='checkbox'] {
    width: auto;
    min-height: auto;
    margin-top: 4px;
    flex-shrink: 0;
    accent-color: var(--sky);
}

.field-label--inline {
    font-weight: 500;
    color: var(--text);
    line-height: 1.35;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--sky);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.field input:invalid:not(:placeholder-shown),
.field select:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
}

.form-error {
    color: #b91c1c;
    font-size: 0.85rem;
    font-weight: 500;
}

.form-support-hint {
    margin: -0.25rem 0 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.form-support-hint a {
    color: var(--sky);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-support-hint a:hover {
    color: var(--navy);
}

/* Lead form → full success state */
.lead-form-success-view {
    position: relative;
    text-align: center;
    padding: clamp(8px, 2vw, 16px) 0 clamp(4px, 1vw, 8px);
    outline: none;
}

.lead-form-success-view[hidden] {
    display: none !important;
}

.lead-form-success-glow {
    position: absolute;
    inset: -20% -10% auto;
    height: 140px;
    margin: 0 auto;
    max-width: 280px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(74, 144, 226, 0.35) 0%, rgba(74, 144, 226, 0) 72%);
    filter: blur(2px);
    pointer-events: none;
    opacity: 0;
    animation: lead-success-glow 1.1s ease 0.15s forwards;
}

@keyframes lead-success-glow {
    to { opacity: 1; }
}

.lead-form-success-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    animation: lead-success-inner 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes lead-success-inner {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.success-mark-wrap {
    color: var(--sky);
    margin-bottom: 4px;
}

.success-mark {
    display: block;
    filter: drop-shadow(0 8px 20px rgba(74, 144, 226, 0.35));
}

.success-mark-circle {
    stroke: rgba(74, 144, 226, 0.35);
    stroke-dasharray: 251;
    stroke-dashoffset: 251;
    transform-origin: 44px 44px;
    transform: rotate(-90deg);
    animation: success-ring 0.75s cubic-bezier(0.45, 0, 0.2, 1) forwards;
}

.success-mark-check {
    stroke-dasharray: 64;
    stroke-dashoffset: 64;
    animation: success-check 0.45s cubic-bezier(0.45, 0, 0.2, 1) 0.45s forwards;
}

@keyframes success-ring {
    to { stroke-dashoffset: 0; }
}

@keyframes success-check {
    to { stroke-dashoffset: 0; }
}

.lead-form-success-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.2rem, 2.8vw, 1.45rem);
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.25;
    max-width: 22ch;
}

.lead-form-success-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.55;
    max-width: 34ch;
    margin: 0;
}

.lead-form-success-again {
    margin-top: 8px;
    max-width: 100%;
    width: 100%;
}

@media (prefers-reduced-motion: reduce) {
    .lead-form-success-glow,
    .lead-form-success-inner,
    .success-mark-circle,
    .success-mark-check {
        animation: none !important;
    }

    .lead-form-success-glow {
        opacity: 0.85;
    }

    .success-mark-circle {
        stroke-dashoffset: 0;
    }

    .success-mark-check {
        stroke-dashoffset: 0;
    }

    .lead-form-success-inner {
        opacity: 1;
        transform: none;
    }
}

/* ——— Contact section ——— */
.contact-section-inner {
    padding-inline: 0;
}

.contact-section-lead {
    text-align: center;
    max-width: 36rem;
    margin: -0.5rem auto clamp(1.5rem, 4vw, 2.25rem);
    font-size: clamp(0.9rem, 0.35vw + 0.82rem, 1rem);
    color: var(--text-muted);
    line-height: 1.55;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(24px, 4vw, 40px);
    align-items: start;
}

.contact-grid.contact-grid--single {
    grid-template-columns: minmax(0, 1fr);
}

.contact-aside {
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 3vw, 24px);
}

.contact-grid.contact-grid--single .contact-aside {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
}

.contact-grid.contact-grid--single .contact-info-block,
.contact-grid.contact-grid--single .contact-map-card {
    height: 100%;
}

.contact-info-block,
.contact-map-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: clamp(18px, 3vw, 24px);
    border: 1px solid rgba(0, 45, 94, 0.06);
    box-shadow: var(--shadow-card);
}

.contact-block-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-block-title__dash {
    font-weight: 500;
}

.contact-block-title i {
    color: var(--sky);
    font-size: 1.1rem;
}

.contact-block-title--map {
    margin-bottom: 12px;
}

.contact-address {
    font-style: normal;
    margin: 0 0 18px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.contact-address-line {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.contact-address-line i {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--sky);
}

.contact-quick-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--text);
    text-decoration: none;
    border: 1px solid rgba(0, 45, 94, 0.08);
    background: rgba(74, 144, 226, 0.04);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-quick-link:hover {
    border-color: rgba(74, 144, 226, 0.35);
    background: rgba(74, 144, 226, 0.08);
}

.contact-quick-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.contact-quick-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.contact-quick-value {
    display: block;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.92rem;
    line-height: 1.2;
}

.contact-map-embed {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 45, 94, 0.1);
    background: #e5e7eb;
    aspect-ratio: 16 / 11;
    min-height: 220px;
}

.contact-map-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 220px;
    border: 0;
}

.contact-map-external {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-form-column .form-card-title {
    margin-bottom: 18px;
}

@media (max-width: 960px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid.contact-grid--single .contact-aside {
        grid-template-columns: 1fr;
    }
}

/* ——— Footer ——— */
.site-footer {
    background: #002D5E;
    color: #ffffff;
    padding: clamp(40px, 6vw, 56px) 0 max(24px, env(safe-area-inset-bottom));
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(24px, 3vw, 36px);
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.94);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.9);
}

.footer-col a {
    color: #ffffff;
    opacity: 0.95;
}

.footer-col a:hover {
    color: var(--sky);
}

.footer-brand {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: clamp(14px, 2.2vw, 24px);
}

.footer-brand-img {
    display: block;
    height: auto;
    width: auto;
    max-height: clamp(72px, 18vw, 96px);
    max-width: min(220px, 85%);
    object-fit: contain;
    object-position: left top;
    flex-shrink: 0;
    align-self: flex-start;
    filter: brightness(0) invert(1);
}

.footer-brand-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.45;
    padding-top: 2px;
    margin-left: clamp(4px, 1.2vw, 14px);
    padding-left: clamp(4px, 1vw, 12px);
}

.footer-heading {
    font-family: var(--font-head);
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.85);
}

.footer-lead {
    font-weight: 700;
    margin-bottom: 4px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.92;
    font-size: clamp(0.8rem, 2.2vw, 0.88rem);
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-contact i {
    width: 18px;
    flex-shrink: 0;
    color: #ffffff;
}

.footer-contact--multiline {
    align-items: flex-start;
}

.footer-contact--multiline i {
    margin-top: 3px;
}

.footer-contact-link {
    margin-top: 4px;
    font-size: 0.88rem;
    font-weight: 600;
}

.footer-contact-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-contact-link a:hover {
    color: var(--sky);
}

.footer-social-lead {
    opacity: 0.85;
    margin-bottom: 8px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.footer-copy {
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.75;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

/* ——— Responsive ——— */
@media (max-width: 1180px) and (min-width: 861px) {
    .main-nav {
        gap: 0.75rem;
        font-size: 0.8125rem;
    }

    .btn-nav-cta {
        font-size: 0.75rem;
        padding: 0.55rem 1rem;
    }
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-grid {
        justify-content: center;
        min-height: 0;
    }

    /* Centered copy: soften right wash, add light base for contrast */
    .hero-slide--b::after,
    .hero-slide--c::after,
    .hero-slide--d::after,
    .hero-slide--e::after {
        background:
            linear-gradient(
                to top,
                rgba(255, 255, 255, 0.82) 0%,
                rgba(255, 255, 255, 0.28) 38%,
                transparent 58%
            ),
            linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.08) 0%,
                rgba(255, 255, 255, 0.42) 45%,
                rgba(255, 255, 255, 0.72) 100%
            );
    }

    .hero-copy--support .hero-phone-wrap {
        justify-content: center;
    }

    .hero-copy--support .hero-phone-highlight {
        align-items: center;
        width: 100%;
        max-width: 22rem;
    }

    .hero-copy {
        align-items: center;
        text-align: center;
        max-width: min(560px, 100%);
    }

    .hero-copy .flags-row--hero {
        justify-content: center;
    }

    .hero-copy .hero-cta-row {
        justify-content: center;
    }

    .countdown-card {
        align-self: center;
    }

    .countdown-digits {
        justify-content: center;
    }

    .flags-row--hero {
        justify-content: center;
    }

    .hero-title {
        max-width: none;
    }

    .hero-cta-row {
        justify-content: center;
        width: 100%;
    }

    .split-grid {
        grid-template-columns: 1fr;
        gap: clamp(24px, 5vw, 40px);
    }

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

@media (max-width: 860px) {
    .main-nav {
        position: fixed;
        z-index: 1001;
        inset: calc(64px + env(safe-area-inset-top)) var(--page-gutter) auto;
        max-height: min(70vh, calc(100vh - 88px - env(safe-area-inset-top)));
        max-height: min(70dvh, calc(100dvh - 88px - env(safe-area-inset-top)));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: var(--white);
        border-radius: var(--radius);
        box-shadow: var(--shadow-card);
        padding: clamp(14px, 3vw, 18px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        display: none;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 14px 10px;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        border-bottom: 1px solid #eef2f7;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-cta-desktop {
        display: none;
    }

    .main-nav.is-open .nav-cta-in-menu {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        margin-top: 8px;
        padding: 12px;
    }
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

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

    .footer-col {
        align-items: flex-start;
        text-align: left;
    }

    .footer-brand {
        align-items: flex-start;
    }

    .cd-sep {
        margin-bottom: 1rem;
        font-size: 1.25rem;
    }

    .hero-slide {
        min-height: min(520px, 78vh);
        min-height: min(520px, 78dvh);
        padding: var(--section-pad-y-tight) 0 clamp(36px, 8vw, 52px);
    }

    /* Narrow viewports: bias upward so people and branding stay visible above text block */
    .hero-slide--b .hero-bg,
    .hero-slide--c .hero-bg {
        background-position: 50% 26%;
    }

    .hero-grid {
        min-height: 0;
    }

    .proof-row {
        gap: 16px 20px;
        justify-content: space-around;
    }

    .section {
        padding: var(--section-pad-y-tight) 0;
    }
}

@media (max-width: 480px) {
    :root {
        --page-gutter: clamp(14px, 4.5vw, 20px);
    }

    .hero-cta-row .btn {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }

    .hero-copy .flags-row--hero {
        gap: 6px 6px;
    }

    .hero-copy .flags-row--hero .flag-img {
        width: 28px;
        height: 28px;
    }

    .benefit-accent {
        font-size: 0.75rem;
    }

    .field-label {
        line-height: 1.35;
    }

    .hero-swiper .hero-nav--prev {
        left: max(6px, env(safe-area-inset-left));
    }

    .hero-swiper .hero-nav--next {
        right: max(6px, env(safe-area-inset-right));
    }
}

@media (min-width: 1440px) {
    .container,
    .container-wide {
        margin-inline: auto;
    }

    .section {
        padding: clamp(4rem, 5vw, 5rem) 0;
    }
}
