:root {
    --navy-950: #031423;
    --navy-900: #06243f;
    --navy-800: #0b355e;
    --blue-700: #075faa;
    --blue-600: #0b77d5;
    --blue-100: #eaf5ff;
    --green-500: #28c840;
    --yellow-500: #ffc928;
    --yellow-300: #ffe08a;
    --slate-900: #102033;
    --slate-700: #34465c;
    --slate-500: #66768a;
    --slate-200: #dce6f1;
    --slate-100: #eef4fb;
    --white: #ffffff;
    --radius-lg: 30px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --shadow-soft: 0 22px 70px rgba(8, 31, 55, .14);
    --shadow-blue: 0 22px 70px rgba(7, 95, 170, .24);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
    color: var(--slate-900);
    background: #f8fbff;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    background: rgba(3, 20, 35, .82);
    backdrop-filter: blur(20px);
    transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
    background: rgba(3, 20, 35, .94);
    box-shadow: 0 12px 34px rgba(3, 20, 35, .18);
}
.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.brand-logo,
.footer-brand img {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}
.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.brand-text { display: grid; gap: 1px; }
.brand-text strong {
    color: var(--white);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 900;
    letter-spacing: -.04em;
}
.brand-text small {
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    font-weight: 700;
}
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 800;
}
.nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, .82);
    padding: 11px 13px;
    border-radius: 999px;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, .09);
    transform: translateY(-1px);
}
.nav .nav-cta {
    color: #0d243a;
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-300));
    box-shadow: 0 12px 30px rgba(255, 201, 40, .22);
}
.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}
.menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
    transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 22px;
    border-radius: 999px;
    border: 0;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: -.02em;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    color: #0d243a;
    background: linear-gradient(135deg, var(--yellow-500), #ffe392);
    box-shadow: 0 14px 34px rgba(255, 201, 40, .28);
}
.btn-glass {
    color: var(--white);
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .18);
}
.btn-soft {
    color: var(--navy-900);
    background: var(--white);
    border: 1px solid var(--slate-200);
    box-shadow: 0 12px 30px rgba(8, 31, 55, .08);
}
.action-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.action-row.center { justify-content: center; }

.hero {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: radial-gradient(circle at 15% 16%, #0e86e9 0, #075faa 34%, var(--navy-900) 72%, var(--navy-950) 100%);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(40, 200, 64, .16), transparent 28%),
        radial-gradient(circle at 82% 16%, rgba(255, 201, 40, .18), transparent 26%),
        linear-gradient(transparent 94%, rgba(255, 255, 255, .06) 95%),
        linear-gradient(90deg, transparent 94%, rgba(255, 255, 255, .05) 95%);
    background-size: auto, auto, 46px 46px, 46px 46px;
    opacity: .98;
}
.hero::after {
    content: "";
    position: absolute;
    width: 720px;
    height: 720px;
    right: -260px;
    bottom: -300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
    gap: 52px;
    align-items: center;
    min-height: 720px;
    padding: 88px 0 82px;
}
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    margin-bottom: 20px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: rgba(255, 255, 255, .82);
    background: rgba(255, 255, 255, .1);
    font-size: 13px;
    font-weight: 800;
}
.status-pill span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green-500);
    box-shadow: 0 0 0 6px rgba(40, 200, 64, .12);
}
.eyebrow {
    margin: 0 0 13px;
    color: var(--yellow-500);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
    font-weight: 950;
}
h1, h2, h3 { margin: 0; line-height: 1.04; letter-spacing: -.055em; }
h1 { font-size: clamp(43px, 7.4vw, 82px); max-width: 860px; }
h2 { font-size: clamp(32px, 4.5vw, 56px); color: var(--navy-900); }
h3 { font-size: 22px; color: var(--navy-900); }
.hero-text {
    max-width: 670px;
    margin: 22px 0 32px;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(17px, 1.9vw, 21px);
}
.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 650px;
    margin-top: 34px;
}
.hero-metrics div {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 20px;
    background: rgba(255, 255, 255, .09);
}
.hero-metrics strong {
    display: block;
    color: var(--yellow-500);
    font-size: 24px;
    line-height: 1;
}
.hero-metrics span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 700;
}
.hero-panel {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(237, 246, 255, .94));
    color: var(--slate-900);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .28);
}
.hero-panel::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(7, 95, 170, .1);
    border-radius: 24px;
    pointer-events: none;
}
.panel-top {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 28px;
}
.panel-top img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 12px 26px rgba(7, 95, 170, .18);
}
.panel-top span {
    display: block;
    color: var(--slate-500);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.panel-top strong {
    color: var(--navy-900);
    font-size: 26px;
    letter-spacing: -.05em;
}
.route-visual {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 22px 0 28px;
}
.route-point {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    position: relative;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    color: var(--navy-900);
    box-shadow: 0 12px 30px rgba(7, 95, 170, .1);
}
.route-point::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--blue-600);
    box-shadow: 0 0 0 8px rgba(11, 119, 213, .12);
}
.route-point.active::before { background: var(--green-500); box-shadow: 0 0 0 8px rgba(40, 200, 64, .14); }
.route-point span {
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    white-space: nowrap;
    color: var(--slate-500);
    font-size: 12px;
    font-weight: 900;
}
.route-line {
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green-500), var(--blue-600));
    opacity: .72;
}
.fleet-card {
    position: relative;
    display: grid;
    grid-template-columns: 138px 1fr;
    gap: 18px;
    align-items: center;
    margin-top: 22px;
    padding: 22px;
    border-radius: 26px;
    background: linear-gradient(135deg, var(--navy-900), var(--blue-700));
    color: var(--white);
    overflow: hidden;
}
.fleet-card::after {
    content: "";
    position: absolute;
    right: -46px;
    top: -46px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 201, 40, .16);
}
.fleet-card p { margin: 0 0 4px; color: rgba(255, 255, 255, .68); font-size: 13px; font-weight: 800; }
.fleet-card strong { font-size: 19px; line-height: 1.18; }
.truck-illustration {
    position: relative;
    width: 130px;
    height: 68px;
}
.truck-box,
.truck-cab {
    position: absolute;
    bottom: 18px;
    background: var(--yellow-500);
    box-shadow: inset 0 -10px rgba(0, 0, 0, .08);
}
.truck-box { left: 0; width: 78px; height: 42px; border-radius: 10px 4px 4px 10px; }
.truck-cab { left: 82px; width: 42px; height: 34px; border-radius: 6px 13px 6px 4px; }
.truck-cab::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 9px;
    width: 16px;
    height: 12px;
    border-radius: 3px;
    background: rgba(6, 36, 63, .42);
}
.wheel {
    position: absolute;
    bottom: 6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #112236;
    border: 5px solid rgba(255, 255, 255, .8);
}
.w1 { left: 18px; }
.w2 { left: 92px; }
.check-list {
    position: relative;
    display: grid;
    gap: 11px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--slate-700);
    font-weight: 700;
}
.check-list li::before {
    content: "✓";
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--green-500);
    font-size: 14px;
    font-weight: 950;
}

.trust-strip {
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
}
.strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
}
.strip-grid span {
    padding: 22px 14px;
    text-align: center;
    color: var(--navy-900);
    font-weight: 950;
    letter-spacing: -.02em;
    border-right: 1px solid var(--slate-200);
}
.strip-grid span:last-child { border-right: 0; }

.section { padding: 96px 0; }
.section-heading { max-width: 820px; margin-bottom: 38px; }
.section-heading p:not(.eyebrow) {
    margin: 18px 0 0;
    color: var(--slate-500);
    font-size: 18px;
}
.cards { display: grid; gap: 22px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.card {
    position: relative;
    min-height: 268px;
    padding: 28px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 16px 46px rgba(8, 31, 55, .07);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--blue-100);
    opacity: .8;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(7, 95, 170, .22);
}
.card-icon {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    border-radius: 20px;
    color: var(--navy-900);
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-300));
    font-weight: 950;
    box-shadow: 0 14px 30px rgba(255, 201, 40, .22);
}
.card p {
    position: relative;
    z-index: 1;
    color: var(--slate-500);
    font-weight: 650;
}
.card-tag {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-top: 14px;
    padding: 8px 11px;
    border-radius: 999px;
    color: var(--blue-700);
    background: var(--blue-100);
    font-size: 13px;
    font-weight: 900;
}

.dark-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--navy-950), var(--navy-900) 56%, #07385f);
    color: var(--white);
}
.dark-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 12% 12%, rgba(11, 119, 213, .26), transparent 26%), radial-gradient(circle at 90% 20%, rgba(255, 201, 40, .14), transparent 24%);
}
.dark-section .container { position: relative; z-index: 1; }
.split-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 42px;
    align-items: center;
}
.align-start { align-items: start; }
.section-heading.light h2 { color: var(--white); }
.section-heading.light p:not(.eyebrow) { color: rgba(255, 255, 255, .72); }
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.feature-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
}
.feature-card strong {
    display: block;
    color: var(--white);
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: -.04em;
}
.feature-card span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, .68);
    font-weight: 650;
}

.process-section { background: #f8fbff; }
.process-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.process-step {
    position: relative;
    padding: 26px;
    border: 1px solid var(--slate-200);
    border-radius: 28px;
    background: var(--white);
    box-shadow: 0 16px 46px rgba(8, 31, 55, .06);
}
.process-step span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
    border-radius: 16px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-700), var(--navy-900));
    font-weight: 950;
}
.process-step p { color: var(--slate-500); font-weight: 650; }

.routes-section {
    background: linear-gradient(180deg, #ffffff, #edf6ff);
}
.routes-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 34px;
    align-items: stretch;
}
.route-copy,
.route-box {
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-200);
    background: var(--white);
    box-shadow: 0 16px 46px rgba(8, 31, 55, .07);
}
.route-copy { padding: 34px; }
.route-copy p:not(.eyebrow) { color: var(--slate-500); font-size: 17px; }
.route-copy .btn { margin-top: 12px; }
.route-box {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 34px;
    background:
        radial-gradient(circle at 10% 20%, rgba(11, 119, 213, .13), transparent 25%),
        radial-gradient(circle at 92% 92%, rgba(255, 201, 40, .26), transparent 28%),
        linear-gradient(180deg, #ffffff, #f8fbff);
}
.route-box::after {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(11, 119, 213, .08);
    pointer-events: none;
}
.route-box > * { position: relative; z-index: 1; }
.route-box-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
}
.mini-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--blue-700);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.route-badge {
    flex: 0 0 auto;
    padding: 9px 12px;
    border-radius: 999px;
    color: #0d243a;
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-300));
    box-shadow: 0 10px 24px rgba(255, 201, 40, .2);
    font-size: 12px;
    font-weight: 950;
}
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}
.tags span {
    padding: 11px 14px;
    border-radius: 999px;
    color: var(--navy-900);
    background: rgba(234, 245, 255, .94);
    border: 1px solid rgba(7, 95, 170, .14);
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(8, 31, 55, .04);
}

.route-image-card {
    margin: 2px 0 0;
}
.route-image-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 28px;
}
.route-map-card {
    overflow: hidden;
    padding: 22px;
    border-radius: 28px;
    color: #ffffff;
    background:
        radial-gradient(circle at 14% 20%, rgba(13, 131, 230, .56), transparent 31%),
        radial-gradient(circle at 86% 18%, rgba(255, 201, 40, .18), transparent 30%),
        linear-gradient(135deg, #062f52 0%, #075fa4 100%);
    box-shadow: 0 24px 54px rgba(7, 95, 170, .22);
}
.map-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}
.map-header span {
    display: block;
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .13em;
}
.map-header strong {
    display: block;
    margin-top: 7px;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    letter-spacing: -.04em;
}
.map-header em {
    flex: 0 0 auto;
    padding: 9px 12px;
    border-radius: 999px;
    color: rgba(255, 255, 255, .92);
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .18);
    font-style: normal;
    font-size: 12px;
    font-weight: 900;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16);
}
.map-visual,
.map-visual-perfect {
    position: relative;
    width: 100%;
    min-height: 188px;
    margin: 0 0 18px;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(rgba(255, 255, 255, .065) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .065) 1px, transparent 1px),
        linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .035));
    background-size: 34px 34px;
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}
.map-visual::after,
.map-visual-perfect::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px dashed rgba(255, 255, 255, .16);
    border-radius: 22px;
    pointer-events: none;
}
.route-svg {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: auto;
}
.route-glow {
    fill: none;
    stroke: rgba(255, 201, 40, .24);
    stroke-width: 13;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.route-main {
    fill: none;
    stroke: url(#routeLine);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.route-branch-glow {
    fill: none;
    stroke: rgba(255, 201, 40, .18);
    stroke-width: 12;
    stroke-linecap: round;
}
.route-branch {
    fill: none;
    stroke: rgba(255, 201, 40, .82);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 7 7;
}
.point-halo-green { fill: rgba(40, 200, 64, .18); }
.point-green { fill: #28c840; }
.point-halo-yellow { fill: rgba(255, 201, 40, .18); }
.point-yellow { fill: #ffc928; }
.point-halo-muted { fill: rgba(255, 255, 255, .12); }
.point-muted { fill: rgba(255, 255, 255, .72); }
.point-label-bg { fill: rgba(3, 20, 35, .72); }
.point-label {
    fill: rgba(255, 255, 255, .95);
    font-size: 11px;
    font-weight: 900;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
}

/* Suporte para o HTML antigo do mapa com spans */
.map-dot {
    position: absolute;
    z-index: 4;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--yellow-500);
    box-shadow: 0 0 0 9px rgba(255, 201, 40, .17);
}
.map-dot small {
    position: absolute;
    left: 50%;
    top: 26px;
    transform: translateX(-50%);
    padding: 5px 8px;
    border-radius: 999px;
    color: rgba(255, 255, 255, .95);
    background: rgba(3, 20, 35, .72);
    white-space: nowrap;
    font-size: 11px;
    font-weight: 900;
}
.map-base {
    left: 17%;
    top: 58%;
    width: 24px;
    height: 24px;
    background: var(--green-500);
    box-shadow: 0 0 0 10px rgba(40, 200, 64, .2);
}
.map-1 { left: 43%; top: 23%; }
.map-2 { left: 75%; top: 42%; }
.map-3 { left: 84%; top: 63%; }
.map-path {
    position: absolute;
    z-index: 3;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(40, 200, 64, .88), rgba(255, 201, 40, .92));
    opacity: .92;
    transform-origin: left center;
    box-shadow: 0 0 0 6px rgba(255, 201, 40, .08);
}
.path-a {
    left: 20%;
    top: 62%;
    width: 28%;
    transform: rotate(-28deg);
}
.path-b {
    left: 46%;
    top: 29%;
    width: 31%;
    transform: rotate(14deg);
}
.path-c {
    left: 77%;
    top: 49%;
    width: 17%;
    transform: rotate(53deg);
}
.map-truck {
    position: absolute;
    z-index: 5;
    left: 52%;
    top: 55%;
    width: 58px;
    height: 28px;
    transform: translate(-50%, -50%);
    border-radius: 7px 10px 7px 7px;
    background: var(--white);
    box-shadow: 0 12px 22px rgba(0, 0, 0, .16);
}
.map-truck::before {
    content: "";
    position: absolute;
    right: -14px;
    bottom: 0;
    width: 20px;
    height: 22px;
    border-radius: 6px 9px 6px 0;
    background: var(--yellow-500);
}
.map-truck::after,
.map-truck i::after {
    content: "";
    position: absolute;
    bottom: -6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--navy-950);
    border: 3px solid rgba(255, 255, 255, .7);
}
.map-truck::after { left: 9px; }
.map-truck i::after { right: -10px; }
.coverage-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.coverage-cards div {
    padding: 15px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .08));
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .09);
}
.coverage-cards strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.05;
}
.coverage-cards span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
    font-weight: 750;
}
.route-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .8);
    border: 1px solid rgba(7, 95, 170, .12);
}
.route-note span {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: #0d243a;
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-300));
    font-weight: 950;
}
.route-note p {
    margin: 0;
    color: var(--slate-500);
    font-size: 14px;
    font-weight: 750;
}

.form-section {
    position: relative;
    background: var(--white);
}
.form-grid {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
    gap: 38px;
    align-items: start;
}
.form-copy {
    position: sticky;
    top: 112px;
}
.form-copy p:not(.eyebrow) { color: var(--slate-500); font-size: 17px; }
.contact-box {
    display: grid;
    gap: 6px;
    margin-top: 24px;
    padding: 24px;
    border-radius: 26px;
    border: 1px solid rgba(7, 95, 170, .12);
    background: linear-gradient(135deg, var(--blue-100), #ffffff);
}
.contact-box span {
    color: var(--slate-500);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.contact-box strong {
    color: var(--navy-900);
    font-size: 28px;
    letter-spacing: -.04em;
}
.contact-box a {
    width: fit-content;
    color: var(--blue-700);
    text-decoration: none;
    font-weight: 900;
}
.quote-form {
    padding: 30px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #f8fbff, #ffffff);
    box-shadow: var(--shadow-soft);
}
.field-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
label {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--navy-900);
    font-size: 14px;
    font-weight: 900;
}
input, select, textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid #c9d8e8;
    border-radius: 17px;
    padding: 14px 15px;
    background: var(--white);
    color: var(--slate-900);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
textarea { resize: vertical; min-height: 132px; }
input::placeholder, textarea::placeholder { color: #91a0b4; }
input:focus, select:focus, textarea:focus {
    border-color: var(--blue-600);
    box-shadow: 0 0 0 5px rgba(11, 119, 213, .11);
}
.field-error {
    border-color: #e33d3d !important;
    box-shadow: 0 0 0 5px rgba(227, 61, 61, .11) !important;
}
.hidden-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.submit-btn { width: 100%; margin-top: 4px; }
.form-note {
    margin: 14px 0 0;
    color: var(--slate-500);
    font-size: 13px;
}
.form-note a { color: var(--blue-700); font-weight: 900; }
.form-alert {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    color: #8a1f1f;
    background: #fff0f0;
    border: 1px solid #ffd3d3;
    font-weight: 800;
}

.final-cta {
    padding: 0 0 96px;
    background: var(--white);
}
.final-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 36px;
    border-radius: 34px;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy-950), var(--blue-700));
    box-shadow: var(--shadow-blue);
    overflow: hidden;
    position: relative;
}
.final-card::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -90px;
    top: -90px;
    border-radius: 50%;
    background: rgba(255, 201, 40, .16);
}
.final-card > * { position: relative; z-index: 1; }
.final-card h2 { color: var(--white); max-width: 760px; }

.site-footer {
    color: rgba(255, 255, 255, .74);
    background: var(--navy-950);
    padding: 58px 0 26px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr .7fr;
    gap: 34px;
}
.footer-brand img {
    width: 54px;
    height: 54px;
    object-fit: cover;
}
.footer-brand span {
    color: var(--white);
    font-size: 20px;
    font-weight: 950;
    letter-spacing: -.04em;
}
.site-footer strong {
    display: block;
    color: var(--white);
    margin-bottom: 10px;
}
.site-footer a {
    display: block;
    margin: 8px 0;
    color: rgba(255, 255, 255, .86);
    text-decoration: none;
    font-weight: 800;
}
.site-footer a:hover { color: var(--yellow-500); }
.footer-bottom {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 122px;
    min-height: 52px;
    padding: 13px 18px;
    border-radius: 999px;
    color: var(--white);
    background: linear-gradient(135deg, #18a93a, var(--green-500));
    box-shadow: 0 16px 36px rgba(40, 200, 64, .34);
    text-decoration: none;
    font-weight: 950;
}

.page-shell {
    min-height: calc(100vh - 82px);
    display: grid;
    place-items: center;
    padding: 82px 0;
    background:
        radial-gradient(circle at 12% 10%, rgba(11, 119, 213, .18), transparent 26%),
        radial-gradient(circle at 90% 10%, rgba(255, 201, 40, .16), transparent 26%),
        #f8fbff;
}
.centered-card,
.page-content {
    max-width: 780px;
    padding: 44px;
    text-align: center;
    border: 1px solid var(--slate-200);
    border-radius: 34px;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}
.page-content { text-align: left; }
.page-content h1,
.centered-card h1 { color: var(--navy-900); font-size: clamp(36px, 5vw, 58px); }
.page-content p,
.centered-card p { color: var(--slate-500); font-size: 17px; }
.page-logo {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 28px;
    margin: 0 auto 22px;
    box-shadow: 0 16px 34px rgba(7, 95, 170, .16);
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .hero-grid,
    .split-grid,
    .routes-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }
    .hero-grid { min-height: auto; padding: 72px 0; }
    .hero-panel { max-width: 620px; }
    .cards-3,
    .process-line { grid-template-columns: repeat(2, 1fr); }
    .form-copy { position: static; }
}

@media (max-width: 820px) {
    .menu-toggle { display: inline-flex; }
    .nav {
        position: fixed;
        left: 18px;
        right: 18px;
        top: 92px;
        display: grid;
        gap: 6px;
        padding: 16px;
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 24px;
        background: rgba(3, 20, 35, .96);
        box-shadow: 0 20px 70px rgba(0, 0, 0, .34);
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity .22s ease, transform .22s ease;
    }
    .nav.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .nav a { padding: 13px 14px; }
    .nav .nav-cta { text-align: center; }
    .brand-text small { display: none; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-metrics { grid-template-columns: 1fr; }
    .strip-grid { grid-template-columns: repeat(2, 1fr); }
    .strip-grid span:nth-child(2) { border-right: 0; }
    .cards-3,
    .process-line,
    .feature-grid,
    .field-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .fleet-card { grid-template-columns: 1fr; }
    .route-visual { grid-template-columns: 1fr; justify-items: start; gap: 22px; padding-left: 10px; }
    .route-line { width: 4px; height: 38px; margin-left: 34px; background: linear-gradient(180deg, var(--green-500), var(--blue-600)); }
    .route-point span { left: 92px; bottom: 50%; transform: translateY(50%); }
    .route-box-head,
    .map-header { flex-direction: column; }
    .coverage-cards { grid-template-columns: 1fr; }
    .map-visual { min-height: 220px; }
    .map-dot small { top: 24px; }
    .map-1 { left: 54%; top: 18%; }
    .map-2 { right: 12%; top: 48%; }
    .map-3 { right: 24%; bottom: 18%; }
    .path-a { left: 22%; bottom: 34%; width: 36%; transform: rotate(-42deg); }
    .path-b { left: 56%; top: 28%; width: 30%; transform: rotate(42deg); }
    .path-c { right: 26%; top: 56%; width: 20%; transform: rotate(101deg); }
    .final-card { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
    .container { width: min(100% - 28px, 1180px); }
    .header-inner { min-height: 76px; }
    .brand-logo { width: 50px; height: 50px; border-radius: 16px; }
    .brand-text strong { font-size: 17px; }
    .hero-grid { padding: 54px 0 58px; gap: 34px; }
    .hero-panel,
    .quote-form,
    .route-copy,
    .route-box,
    .final-card,
    .centered-card,
    .page-content { padding: 24px; border-radius: 26px; }
    .panel-top strong { font-size: 22px; }
    .section { padding: 70px 0; }
    .final-cta { padding-bottom: 70px; }
    .floating-whatsapp { min-width: auto; width: 54px; height: 54px; padding: 0; right: 14px; bottom: 14px; }
    .floating-whatsapp span { font-size: 0; }
    .floating-whatsapp::before { content: "WA"; font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; }
    .reveal { opacity: 1; transform: none; }
}
