: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);*/
    color: var(--yellow-500);
    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);*/
    color: var(--yellow-500);
    font-size: 20px;
    font-weight: 950;
    letter-spacing: -.04em;
    margin-left: 12px;
}
.site-footer strong {
    display: block;
    /*color: var(--white);*/
    color: var(--yellow-500);
    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; }
}

/* SEO landing pages */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 18px;
    color: rgba(255,255,255,.74);
    font-size: 13px;
    font-weight: 800;
}
.breadcrumb a { color: rgba(255,255,255,.86); text-decoration: none; }
.breadcrumb strong { color: var(--yellow-500); }
.service-card { color: inherit; text-decoration: none; }
.seo-local-section {
    background:
        radial-gradient(circle at 10% 0%, rgba(11,119,213,.09), transparent 30%),
        linear-gradient(180deg, #ffffff, #f6fbff);
}
.seo-copy-card {
    padding: 30px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}
.seo-copy-card h3 { font-size: clamp(25px, 3vw, 34px); margin-top: 8px; }
.seo-list {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}
.seo-list li {
    display: flex;
    gap: 10px;
    color: var(--slate-700);
    font-weight: 800;
}
.seo-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: 13px;
    font-weight: 950;
}
.seo-link-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}
.seo-link-cloud a {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--navy-900);
    background: var(--white);
    border: 1px solid var(--slate-200);
    box-shadow: 0 10px 26px rgba(8, 31, 55, .06);
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
}
.seo-link-cloud a:hover { border-color: rgba(7,95,170,.34); transform: translateY(-1px); }
.faq-section {
    background: #f8fbff;
}
.faq-list {
    display: grid;
    gap: 14px;
    max-width: 920px;
}
.faq-item {
    border: 1px solid var(--slate-200);
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 12px 34px rgba(8, 31, 55, .06);
    overflow: hidden;
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 22px;
    color: var(--navy-900);
    font-size: 17px;
    font-weight: 950;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    float: right;
    color: var(--blue-600);
    font-weight: 950;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--slate-500);
    font-size: 16px;
}
.route-image-card picture { display: block; }
@media (max-width: 820px) {
    .breadcrumb { flex-wrap: wrap; }
    .seo-copy-card { padding: 24px; }
}

/* Ajuste do primeiro bloco: mantém a seção hero inteira visível em telas de notebook/desktop */
@media (min-width: 1025px) {
    .hero-grid {
        min-height: auto;
        padding: clamp(24px, 4vh, 44px) 0 clamp(34px, 5vh, 52px);
        gap: clamp(34px, 4vw, 52px);
    }

    .hero h1 {
        font-size: clamp(44px, 6.4vw, 72px);
        line-height: .98;
        max-width: 760px;
    }

    .hero-text {
        margin: 18px 0 24px;
        font-size: clamp(17px, 1.55vw, 20px);
        line-height: 1.46;
    }

    .hero-metrics {
        margin-top: 26px;
    }

    .hero-metrics div {
        padding: 14px 16px;
    }

    .hero-panel {
        padding: 24px;
        border-radius: 30px;
    }

    .panel-top {
        margin-bottom: 22px;
    }

    .panel-top img {
        width: 62px;
        height: 62px;
        border-radius: 19px;
    }

    .panel-top strong {
        font-size: 24px;
    }

    .route-visual {
        padding: 16px 0 24px;
    }

    .route-point {
        width: 64px;
        height: 64px;
        border-radius: 20px;
    }

    .fleet-card {
        margin-top: 18px;
        padding: 18px 20px;
        border-radius: 24px;
    }

    .check-list {
        gap: 9px;
        margin-top: 18px;
    }

    .check-list li {
        line-height: 1.38;
    }
}

@media (min-width: 1025px) and (max-height: 820px) {
    .hero-grid {
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .hero h1 {
        font-size: clamp(42px, 5.8vw, 66px);
    }

    .status-pill {
        margin-bottom: 14px;
    }

    .eyebrow {
        margin-bottom: 10px;
    }

    .hero-text {
        margin: 14px 0 20px;
    }

    .hero-metrics {
        margin-top: 20px;
    }
}

/* Avaliações Google: carrossel moderno */
.google-reviews-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 16% 14%, rgba(40, 200, 64, .24), transparent 28%),
        radial-gradient(circle at 84% 20%, rgba(255, 201, 40, .20), transparent 28%),
        linear-gradient(135deg, #031423 0%, #062f52 42%, #075faa 100%);
}
.google-reviews-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(transparent 94%, rgba(255, 255, 255, .055) 95%),
        linear-gradient(90deg, transparent 94%, rgba(255, 255, 255, .045) 95%);
    background-size: 42px 42px;
    opacity: .75;
}
.reviews-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(.2px);
}
.reviews-orb-one {
    width: 390px;
    height: 390px;
    left: -150px;
    top: 90px;
    background: rgba(11, 119, 213, .28);
    border: 1px solid rgba(255, 255, 255, .10);
}
.reviews-orb-two {
    width: 520px;
    height: 520px;
    right: -250px;
    bottom: -250px;
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .12);
}
.reviews-shell {
    position: relative;
    z-index: 1;
}
.reviews-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    margin-bottom: 28px;
}
.reviews-heading h2 {
    max-width: 780px;
    color: var(--white);
}
.reviews-heading p:not(.eyebrow) {
    max-width: 740px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
}
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    margin-bottom: 18px;
    padding: 9px 13px;
    border-radius: 999px;
    color: rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .13);
    font-size: 13px;
    font-weight: 900;
}
.google-badge span {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: #0d243a;
    background: linear-gradient(135deg, #ffffff, #dff0ff);
    font-weight: 950;
}
.reviews-score {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 26px;
}
.reviews-score div {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10);
}
.reviews-score strong {
    display: block;
    color: var(--yellow-500);
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1;
    letter-spacing: -.04em;
}
.reviews-score span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 850;
}
.reviews-carousel {
    position: relative;
    padding: 0 58px 46px;
}
.reviews-viewport {
    overflow: hidden;
    border-radius: 30px;
}
.reviews-track {
    display: flex;
    gap: 18px;
    align-items: stretch;
    will-change: scroll-position;
}
.google-review-card {
    flex: 0 0 calc((100% - 36px) / 3);
    min-height: 300px;
    padding: 26px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 201, 40, .16), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(234, 245, 255, .92));
    color: var(--navy-900);
    border: 1px solid rgba(255, 255, 255, .34);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}
.review-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
}
.review-avatar {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-700), var(--green-500));
    box-shadow: 0 14px 30px rgba(7, 95, 170, .20);
    font-size: 15px;
    font-weight: 950;
    letter-spacing: -.04em;
}
.review-card-top strong {
    display: block;
    color: var(--navy-900);
    font-size: 19px;
    line-height: 1.1;
    letter-spacing: -.04em;
}
.review-card-top span {
    display: block;
    margin-top: 5px;
    color: var(--slate-500);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .10em;
}
.review-stars {
    margin-top: 24px;
    color: var(--yellow-500);
    font-size: 23px;
    letter-spacing: .08em;
    text-shadow: 0 8px 20px rgba(255, 201, 40, .20);
}
.google-review-card p {
    margin: 18px 0 0;
    color: var(--slate-700);
    font-size: 17px;
    font-weight: 750;
    line-height: 1.58;
}
.review-source {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    color: var(--slate-500);
    font-size: 12px;
    font-weight: 900;
}
.review-source span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green-500);
    box-shadow: 0 0 0 5px rgba(40, 200, 64, .13);
}
.reviews-nav {
    position: absolute;
    top: 38%;
    z-index: 2;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, .12);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
    cursor: pointer;
    font-size: 34px;
    line-height: 1;
    display: grid;
    place-items: center;
    transition: transform .2s ease, background .2s ease;
}
.reviews-nav:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .20);
}
.reviews-prev { left: 0; }
.reviews-next { right: 0; }
.reviews-dots {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 8px;
}
.reviews-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .34);
    cursor: pointer;
    transition: width .2s ease, background .2s ease;
}
.reviews-dots button.is-active {
    width: 28px;
    background: var(--yellow-500);
}
@media (max-width: 980px) {
    .reviews-heading {
        grid-template-columns: 1fr;
        align-items: start;
    }
    .reviews-heading .btn {
        width: fit-content;
    }
    .google-review-card {
        flex-basis: calc((100% - 18px) / 2);
    }
}
@media (max-width: 680px) {
    .reviews-score {
        grid-template-columns: 1fr;
    }
    .reviews-carousel {
        padding: 0 0 42px;
    }
    .reviews-nav {
        display: none;
    }
    .reviews-viewport {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .reviews-viewport::-webkit-scrollbar { display: none; }
    .google-review-card {
        flex-basis: 86%;
        scroll-snap-align: start;
        min-height: 285px;
        padding: 24px;
    }
}

/* Atualização: navegação completa + notícias + painel administrativo */
.header-inner {
    gap: 16px;
}
.nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 12.5px;
    line-height: 1;
}
.nav a {
    padding: 9px 10px;
}
.nav .nav-cta {
    padding-inline: 14px;
}
.footer-grid {
    grid-template-columns: 1.08fr 1fr 1.15fr;
}
.footer-nav-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 18px;
}
.footer-nav-columns a {
    margin: 5px 0;
    font-size: 14px;
}
.news-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 8%, rgba(11, 119, 213, .12), transparent 30%),
        radial-gradient(circle at 85% 12%, rgba(255, 201, 40, .16), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}
.news-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(transparent 94%, rgba(7, 95, 170, .045) 95%),
        linear-gradient(90deg, transparent 94%, rgba(7, 95, 170, .04) 95%);
    background-size: 44px 44px;
    pointer-events: none;
}
.news-section .container {
    position: relative;
    z-index: 1;
}
.news-heading {
    max-width: 900px;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}
.news-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    border-radius: 30px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(220, 230, 241, .92);
    box-shadow: 0 24px 70px rgba(8, 31, 55, .10);
    transition: transform .22s ease, box-shadow .22s ease;
}
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(8, 31, 55, .16);
}
.news-card-featured {
    grid-column: span 1;
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 201, 40, .14), transparent 34%),
        linear-gradient(180deg, #ffffff, #edf7ff);
}
.news-image,
.news-image-placeholder {
    width: 100%;
    height: 170px;
    object-fit: cover;
}
.news-image-placeholder {
    display: grid;
    place-items: center;
    color: var(--white);
    background:
        radial-gradient(circle at 28% 20%, rgba(40, 200, 64, .34), transparent 26%),
        linear-gradient(135deg, var(--navy-900), var(--blue-700));
}
.news-image-placeholder span {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 24px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.16);
    color: var(--yellow-500);
    font-size: 24px;
    font-weight: 950;
}
.news-card-body {
    padding: 24px;
}
.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--slate-500);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.news-meta span {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    color: #0d243a;
    background: linear-gradient(135deg, var(--yellow-500), #ffe392);
    letter-spacing: 0;
    text-transform: none;
}
.news-card h3 {
    margin: 0;
    color: var(--navy-900);
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.08;
    letter-spacing: -.04em;
}
.news-card p {
    margin: 14px 0 0;
    color: var(--slate-700);
    font-weight: 700;
}

@media (max-width: 1120px) {
    .menu-toggle { display: inline-flex; }
    .nav {
        position: fixed;
        left: 18px;
        right: 18px;
        top: 92px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
        padding: 16px;
        border: 1px solid rgba(255, 255, 255, .14);
        border-radius: 24px;
        background: rgba(3, 20, 35, .97);
        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;
        font-size: 14px;
    }
    .nav.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .nav a {
        padding: 13px 14px;
        border-radius: 14px;
    }
    .nav .nav-cta {
        text-align: center;
    }
}
@media (max-width: 980px) {
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-nav-columns {
        max-width: 520px;
    }
}
@media (max-width: 620px) {
    .nav {
        grid-template-columns: 1fr;
        max-height: calc(100vh - 120px);
        overflow: auto;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
    .news-card-body {
        padding: 20px;
    }
    .footer-nav-columns {
        grid-template-columns: 1fr 1fr;
        gap: 0 12px;
    }
    .footer-nav-columns a {
        font-size: 13px;
    }
}

/* Ajustes finais: setas do carrossel, WhatsApp neon e notícias clicáveis */
.reviews-nav {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 0;
    line-height: 0;
}
.reviews-nav::before {
    display: block;
    color: inherit;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 36px;
    line-height: 1;
    font-weight: 700;
    transform: translateY(-2px);
}
.reviews-prev::before { content: "‹"; }
.reviews-next::before { content: "›"; }

/* WhatsApp fixo/parado: mantém neon moderno sem mover o botão */
.floating-whatsapp {
    --wa-neon-alpha: .55;
    --wa-neon-size: 18px;
    --wa-neon-spread: 42px;
    isolation: isolate;
    overflow: visible;
    transform: none !important;
    transition: box-shadow .45s ease, filter .45s ease, background .45s ease;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .16) inset,
        0 0 var(--wa-neon-size) rgba(40, 200, 64, var(--wa-neon-alpha)),
        0 18px var(--wa-neon-spread) rgba(40, 200, 64, .34);
}
.floating-whatsapp::after {
    content: "";
    position: absolute;
    inset: -7px;
    z-index: -1;
    border-radius: inherit;
    border: 1px solid rgba(40, 200, 64, .42);
    opacity: .58;
    pointer-events: none;
    animation: whatsappNeonRing 2.8s ease-in-out infinite;
}
.floating-whatsapp.whatsapp-js-effect {
    animation: none !important;
}
.floating-whatsapp.is-glowing {
    --wa-neon-alpha: .86;
    --wa-neon-size: 26px;
    --wa-neon-spread: 50px;
    filter: saturate(1.18) brightness(1.05);
    background: linear-gradient(135deg, #17bb45, #28c840 48%, #14a93a);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, .20) inset,
        0 0 var(--wa-neon-size) rgba(40, 200, 64, var(--wa-neon-alpha)),
        0 0 46px rgba(40, 200, 64, .40),
        0 22px var(--wa-neon-spread) rgba(40, 200, 64, .40);
}
@keyframes whatsappNeonRing {
    0%, 100% { transform: scale(.96); opacity: .18; }
    50% { transform: scale(1.07); opacity: .52; }
}

.news-card {
    display: block;
    color: inherit;
    text-decoration: none;
}
.news-card:focus-visible {
    outline: 4px solid rgba(11, 119, 213, .25);
    outline-offset: 5px;
}
.news-read-more {
    display: inline-flex;
    width: fit-content;
    margin-top: 18px;
    padding: 10px 13px;
    border-radius: 999px;
    color: #0d243a;
    background: linear-gradient(135deg, var(--yellow-500), #ffe392);
    font-size: 13px;
    line-height: 1;
    font-weight: 950;
    box-shadow: 0 12px 24px rgba(255, 201, 40, .20);
}
.news-card:hover .news-read-more {
    transform: translateX(2px);
}

.news-detail-page {
    background:
        radial-gradient(circle at 12% 8%, rgba(11, 119, 213, .12), transparent 30%),
        radial-gradient(circle at 90% 9%, rgba(255, 201, 40, .16), transparent 28%),
        #f8fbff;
}
.news-detail-hero {
    padding: 132px 0 42px;
}
.news-detail-card {
    overflow: hidden;
    padding: clamp(24px, 4vw, 42px);
    border-radius: 34px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(220, 230, 241, .9);
    box-shadow: 0 28px 80px rgba(8, 31, 55, .12);
}
.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 24px 0 12px;
    color: var(--slate-500);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.news-detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    color: #0d243a;
    background: linear-gradient(135deg, var(--yellow-500), #ffe392);
    letter-spacing: 0;
    text-transform: none;
}
.news-detail-card h1 {
    max-width: 980px;
    margin: 0;
    color: var(--navy-900);
    font-size: clamp(34px, 6vw, 68px);
    line-height: .96;
    letter-spacing: -.06em;
}
.news-detail-excerpt {
    max-width: 860px;
    margin: 20px 0 0;
    color: var(--slate-700);
    font-size: clamp(18px, 2vw, 23px);
    font-weight: 750;
    line-height: 1.5;
}
.news-detail-image {
    display: block;
    width: 100%;
    max-height: 520px;
    margin-top: 28px;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(8, 31, 55, .16);
}
.news-detail-content-section {
    padding-top: 18px;
}
.news-detail-content {
    max-width: 900px;
    padding: 0 20px 80px;
    color: var(--slate-700);
    font-size: 18px;
    font-weight: 650;
    line-height: 1.8;
}
.news-detail-content p {
    margin: 0 0 18px;
}
.news-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

@media (max-width: 680px) {
    .reviews-nav { display: none !important; }
    .news-detail-hero { padding-top: 112px; }
    .news-detail-card { border-radius: 26px; }
    .news-detail-image { border-radius: 20px; max-height: 360px; }
    .news-detail-content { font-size: 16px; padding-bottom: 58px; }
}

/* Atualização 2026-07-30: rotas amigáveis, antifraude e proteção visual de imagens */
img,
picture,
.brand-logo,
.footer-brand,
.route-image-card,
.news-image,
.news-card,
.page-logo {
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    user-select: none;
}

.fraud-page {
    background: #f8fbff;
    overflow: hidden;
}

.fraud-hero {
    position: relative;
    padding: 96px 0 72px;
    color: var(--white);
    background:
        radial-gradient(circle at 16% 18%, rgba(11, 119, 213, .55), transparent 30%),
        radial-gradient(circle at 86% 10%, rgba(255, 201, 40, .22), transparent 30%),
        linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 44%, var(--blue-700) 100%);
}

.fraud-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .22;
    background:
        linear-gradient(transparent 94%, rgba(255,255,255,.11) 95%),
        linear-gradient(90deg, transparent 94%, rgba(255,255,255,.09) 95%);
    background-size: 44px 44px;
    pointer-events: none;
}

.fraud-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: center;
}

.fraud-copy h1 {
    max-width: 780px;
    margin: 10px 0 18px;
    color: var(--white);
    font-size: clamp(42px, 6vw, 76px);
    line-height: .95;
    letter-spacing: -.065em;
}

.fraud-copy p:not(.eyebrow) {
    max-width: 720px;
    color: rgba(255,255,255,.78);
    font-size: 18px;
    font-weight: 650;
}

.fraud-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.fraud-alert-card {
    position: relative;
    padding: 32px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 32px;
    background:
        radial-gradient(circle at 20% 10%, rgba(255,201,40,.18), transparent 35%),
        rgba(255,255,255,.10);
    box-shadow: 0 24px 70px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.18);
    backdrop-filter: blur(16px);
}

.fraud-alert-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 20px;
    color: #0d243a;
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-300));
    font-size: 34px;
    font-weight: 950;
    box-shadow: 0 14px 34px rgba(255,201,40,.24);
}

.fraud-alert-card strong {
    display: block;
    color: var(--white);
    font-size: 28px;
    line-height: 1;
    letter-spacing: -.05em;
}

.fraud-alert-card p {
    margin: 14px 0 0;
    color: rgba(255,255,255,.76);
    font-weight: 700;
}

.fraud-guidelines-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

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

.fraud-card {
    position: relative;
    min-height: 260px;
    padding: 28px;
    border: 1px solid var(--slate-200);
    border-radius: 28px;
    background: var(--white);
    box-shadow: 0 22px 60px rgba(8,31,55,.10);
    overflow: hidden;
}

.fraud-card::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(11,119,213,.08);
}

.fraud-card span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 22px;
    border-radius: 16px;
    color: #0d243a;
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-300));
    font-weight: 950;
}

.fraud-card h2 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    color: var(--navy-900);
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: -.05em;
}

.fraud-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--slate-500);
    font-weight: 650;
}

.fraud-signs-section {
    background:
        radial-gradient(circle at 10% 10%, rgba(40,200,64,.09), transparent 28%),
        linear-gradient(180deg, #ffffff, #eef6ff);
}

.fraud-checklist {
    padding: 32px;
    border-radius: 30px;
    background: var(--navy-950);
    box-shadow: var(--shadow-blue);
}

.fraud-checklist ul {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fraud-checklist li {
    position: relative;
    padding-left: 34px;
    color: rgba(255,255,255,.82);
    font-weight: 750;
}

.fraud-checklist li::before {
    content: "!";
    position: absolute;
    left: 0;
    top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 8px;
    color: #0d243a;
    background: var(--yellow-500);
    font-size: 13px;
    font-weight: 950;
}

.fraud-final-cta {
    margin-top: 0;
}

@media (max-width: 1040px) {
    .fraud-hero-grid {
        grid-template-columns: 1fr;
    }

    .fraud-alert-card {
        max-width: 620px;
    }

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

@media (max-width: 620px) {
    .fraud-hero {
        padding: 76px 0 52px;
    }

    .fraud-copy h1 {
        font-size: clamp(38px, 12vw, 52px);
    }

    .fraud-actions {
        display: grid;
    }

    .fraud-alert-card,
    .fraud-checklist,
    .fraud-card {
        padding: 24px;
        border-radius: 24px;
    }

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

/* Atualização 2026-07-30: Menu premium fluido */
.site-header {
    isolation: isolate;
    overflow: visible;
    background:
        radial-gradient(circle at 18% 0%, rgba(11,119,213,.26), transparent 32%),
        rgba(3, 20, 35, .82);
    transition: background .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .72;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(40,200,64,.12), transparent 28%, rgba(255,201,40,.13) 72%, transparent),
        linear-gradient(180deg, rgba(255,255,255,.08), transparent 62%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

.site-header.is-scrolled {
    background:
        radial-gradient(circle at 18% 0%, rgba(11,119,213,.20), transparent 34%),
        rgba(3, 20, 35, .96);
    border-color: rgba(255, 255, 255, .10);
    box-shadow: 0 18px 54px rgba(3, 20, 35, .24);
}

.header-inner {
    position: relative;
    z-index: 2;
    transition: min-height .32s ease, gap .32s ease;
}

.site-header.is-scrolled .header-inner {
    min-height: 72px;
}

.brand {
    position: relative;
    flex: 0 0 auto;
    transition: transform .25s ease, filter .25s ease;
}

.brand:hover {
    transform: translateY(-1px);
    filter: drop-shadow(0 12px 28px rgba(255,201,40,.16));
}

.brand-logo {
    position: relative;
    box-shadow:
        0 14px 34px rgba(0, 0, 0, .24),
        0 0 0 1px rgba(255,255,255,.16),
        0 0 34px rgba(11,119,213,.14);
    transition: transform .28s ease, box-shadow .28s ease;
}

.brand:hover .brand-logo {
    transform: rotate(-2deg) scale(1.035);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, .30),
        0 0 0 1px rgba(255,255,255,.22),
        0 0 42px rgba(255,201,40,.20);
}

.nav {
    position: relative;
    isolation: isolate;
    align-items: center;
    padding: 6px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.105), rgba(255,255,255,.045));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12),
        0 18px 42px rgba(0, 0, 0, .12);
    backdrop-filter: blur(18px);
}

.nav::before {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: -2;
    border-radius: inherit;
    pointer-events: none;
    background:
        radial-gradient(circle at var(--menu-glow-x, 50%) 50%, rgba(255,201,40,.20), transparent 32%),
        linear-gradient(90deg, rgba(40,200,64,.08), rgba(11,119,213,.10), rgba(255,201,40,.08));
    opacity: .88;
    transition: opacity .24s ease;
}

.nav-indicator {
    position: absolute;
    z-index: -1;
    top: 6px;
    left: 0;
    width: var(--nav-indicator-width, 0px);
    height: calc(100% - 12px);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.06)),
        linear-gradient(135deg, rgba(11,119,213,.82), rgba(40,200,64,.62));
    box-shadow:
        0 12px 28px rgba(11,119,213,.20),
        0 0 0 1px rgba(255,255,255,.16) inset;
    opacity: 0;
    pointer-events: none;
    transform: translateX(var(--nav-indicator-x, 0px));
    transition:
        transform .34s cubic-bezier(.22, 1, .36, 1),
        width .34s cubic-bezier(.22, 1, .36, 1),
        opacity .22s ease;
}

.nav.has-indicator .nav-indicator {
    opacity: 1;
}

.nav a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    color: rgba(255,255,255,.76);
    white-space: nowrap;
    background: transparent;
    will-change: transform;
    transition: color .22s ease, transform .22s ease, text-shadow .22s ease, background .22s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--yellow-500);
    box-shadow: 0 0 16px rgba(255,201,40,.72);
    opacity: 0;
    transform: translateX(-50%) scale(.55);
    transition: opacity .22s ease, transform .22s ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
    color: var(--white);
    background: transparent;
    text-shadow: 0 0 22px rgba(255,255,255,.18);
    transform: translateY(-1px);
    outline: none;
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a.is-active::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.nav .nav-cta {
    color: #082036;
    background: linear-gradient(135deg, var(--yellow-500), var(--yellow-300));
    box-shadow:
        0 14px 34px rgba(255,201,40,.26),
        inset 0 1px 0 rgba(255,255,255,.45);
}

.nav .nav-cta:hover,
.nav .nav-cta:focus-visible,
.nav .nav-cta.is-active {
    color: #082036;
    background: linear-gradient(135deg, #ffd64f, #fff0b6);
    transform: translateY(-2px);
}

.nav .nav-cta::after {
    background: #082036;
    box-shadow: 0 0 14px rgba(255,255,255,.55);
}

.menu-toggle {
    position: relative;
    overflow: hidden;
    color: var(--white);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12),
        0 14px 28px rgba(0,0,0,.18);
    transition: transform .24s ease, background .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.menu-toggle::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,201,40,.35), transparent 34%),
        linear-gradient(135deg, rgba(11,119,213,.42), rgba(40,200,64,.24));
    opacity: 0;
    transition: opacity .24s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.menu-toggle[aria-expanded="true"] {
    transform: translateY(-1px);
    border-color: rgba(255,201,40,.32);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.16),
        0 18px 38px rgba(0,0,0,.24),
        0 0 24px rgba(255,201,40,.10);
    outline: none;
}

.menu-toggle:hover::before,
.menu-toggle:focus-visible::before,
.menu-toggle[aria-expanded="true"]::before {
    opacity: 1;
}

.menu-toggle span {
    position: relative;
    z-index: 1;
    transform-origin: center;
    transition: transform .32s cubic-bezier(.22, 1, .36, 1), opacity .2s ease, width .22s 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; transform: scaleX(.2); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 45;
    pointer-events: none;
    opacity: 0;
    background:
        radial-gradient(circle at 70% 8%, rgba(255,201,40,.16), transparent 28%),
        rgba(3,20,35,.42);
    backdrop-filter: blur(8px);
    transition: opacity .28s ease;
}

body.menu-open .menu-backdrop {
    pointer-events: auto;
    opacity: 1;
}

@media (min-width: 1121px) {
    .nav .nav-cta {
        margin-left: 2px;
    }
}

@media (max-width: 1120px) {
    .site-header {
        z-index: 90;
    }

    .header-inner {
        min-height: 78px;
    }

    .site-header.is-scrolled .header-inner {
        min-height: 72px;
    }

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

    .nav {
        position: fixed;
        z-index: 100;
        left: 18px;
        right: 18px;
        top: 88px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 16px;
        max-height: calc(100dvh - 112px);
        overflow: auto;
        border-radius: 30px;
        border: 1px solid rgba(255,255,255,.16);
        background:
            radial-gradient(circle at 12% 0%, rgba(11,119,213,.30), transparent 34%),
            radial-gradient(circle at 92% 6%, rgba(255,201,40,.16), transparent 34%),
            linear-gradient(135deg, rgba(3,20,35,.98), rgba(6,36,63,.98));
        box-shadow:
            0 30px 90px rgba(0,0,0,.44),
            inset 0 1px 0 rgba(255,255,255,.12);
        backdrop-filter: blur(22px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-18px) scale(.985);
        transform-origin: top center;
        transition:
            opacity .28s ease,
            transform .38s cubic-bezier(.22, 1, .36, 1);
    }

    .nav::before {
        opacity: .42;
        border-radius: 28px;
    }

    .nav-indicator {
        display: none;
    }

    .nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .nav a {
        min-height: 50px;
        padding: 13px 15px;
        justify-content: flex-start;
        border-radius: 18px;
        color: rgba(255,255,255,.88);
        background: rgba(255,255,255,.075);
        border: 1px solid rgba(255,255,255,.10);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
        opacity: 0;
        transform: translateY(-8px);
        transition:
            opacity .32s ease,
            transform .36s cubic-bezier(.22, 1, .36, 1),
            background .24s ease,
            border-color .24s ease,
            color .24s ease;
        transition-delay: 0ms;
    }

    .nav.is-open a {
        opacity: 1;
        transform: translateY(0);
        transition-delay: calc(var(--menu-item-index, 0) * 34ms);
    }

    .nav a:hover,
    .nav a:focus-visible,
    .nav a.is-active {
        color: var(--white);
        background: rgba(255,255,255,.12);
        border-color: rgba(255,201,40,.24);
        transform: translateX(4px);
    }

    .nav a::after {
        left: 14px;
        right: auto;
        bottom: auto;
        top: 50%;
        transform: translateY(-50%) scale(.55);
    }

    .nav a:hover::after,
    .nav a:focus-visible::after,
    .nav a.is-active::after {
        transform: translateY(-50%) scale(1);
    }

    .nav .nav-cta {
        grid-column: 1 / -1;
        justify-content: center;
        color: #082036;
        background: linear-gradient(135deg, var(--yellow-500), var(--yellow-300));
        border-color: rgba(255,255,255,.22);
    }

    .nav .nav-cta:hover,
    .nav .nav-cta:focus-visible,
    .nav .nav-cta.is-active {
        transform: translateY(-1px);
    }
}

@media (max-width: 620px) {
    .nav {
        left: 14px;
        right: 14px;
        top: 82px;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 14px;
        border-radius: 26px;
    }

    .nav a {
        min-height: 48px;
        padding: 12px 14px 12px 28px;
        font-size: 14px;
    }

    .nav .nav-cta {
        padding-left: 14px;
    }

    .brand-text strong {
        max-width: 205px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nav,
    .nav a,
    .nav-indicator,
    .brand,
    .brand-logo,
    .menu-toggle,
    .menu-backdrop {
        transition: none !important;
    }
}


/* WhatsApp flutuante premium - visual neon horizontal */
.floating-whatsapp.floating-whatsapp-premium {
    --wa-green: #23d760;
    --wa-green-dark: #075c35;
    --wa-green-mid: #0ea84a;
    --wa-glow: rgba(35, 215, 96, .72);
    right: 22px;
    bottom: 22px;
    min-width: 250px;
    min-height: 68px;
    padding: 9px 22px 9px 10px;
    gap: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 999px;
    color: #ffffff;
    background:
        radial-gradient(circle at 18% 26%, rgba(255, 255, 255, .18), transparent 22%),
        linear-gradient(135deg, rgba(18, 197, 82, .98), rgba(6, 92, 53, .98) 58%, rgba(5, 63, 41, .98));
    border: 1px solid rgba(58, 255, 132, .66);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .10),
        inset 0 -14px 26px rgba(0, 0, 0, .20),
        0 0 0 1px rgba(35, 215, 96, .12),
        0 0 22px rgba(35, 215, 96, .48),
        0 0 48px rgba(35, 215, 96, .26),
        0 18px 46px rgba(1, 32, 21, .42);
    overflow: visible;
    isolation: isolate;
    transform: translateZ(0) !important;
    transition:
        filter .35s ease,
        box-shadow .35s ease,
        border-color .35s ease,
        background .35s ease;
}

.floating-whatsapp.floating-whatsapp-premium::before {
    content: "";
    position: absolute;
    inset: -9px;
    z-index: -2;
    border-radius: inherit;
    background:
        radial-gradient(circle at 22% 50%, rgba(35, 215, 96, .34), transparent 42%),
        linear-gradient(135deg, rgba(35, 215, 96, .18), transparent 58%);
    filter: blur(9px);
    opacity: .82;
    pointer-events: none;
}

.floating-whatsapp.floating-whatsapp-premium::after {
    content: "";
    position: absolute;
    inset: -4px;
    z-index: -1;
    border-radius: inherit;
    border: 1px solid rgba(58, 255, 132, .34);
    box-shadow: 0 0 22px rgba(35, 215, 96, .28);
    opacity: .72;
    pointer-events: none;
    animation: whatsappPremiumRing 2.7s ease-in-out infinite;
}

.floating-whatsapp__orb {
    position: relative;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .38), transparent 30%),
        linear-gradient(135deg, #35ee75, #11b954 62%, #08733e);
    border: 2px solid rgba(255, 255, 255, .82);
    box-shadow:
        inset 0 -7px 13px rgba(0, 0, 0, .20),
        0 0 0 5px rgba(35, 215, 96, .16),
        0 0 18px rgba(35, 215, 96, .72);
}

.floating-whatsapp__orb::before {
    content: "";
    position: absolute;
    inset: -9px;
    border-radius: inherit;
    border: 1px solid rgba(35, 215, 96, .38);
    opacity: .7;
    animation: whatsappOrbPulse 2.2s ease-in-out infinite;
}

.floating-whatsapp__orb svg {
    width: 29px;
    height: 29px;
    display: block;
    fill: #ffffff;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, .25));
}

.floating-whatsapp__text {
    display: grid !important;
    gap: 0;
    text-align: left;
    line-height: 1.03;
    white-space: nowrap;
}

.floating-whatsapp__text strong {
    display: block;
    color: rgba(255, 255, 255, .88);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.floating-whatsapp__text em {
    display: block;
    margin-top: 4px;
    color: #ffffff;
    font-size: 18px;
    font-style: normal;
    font-weight: 1000;
    letter-spacing: -.02em;
    text-shadow: 0 0 18px rgba(255, 255, 255, .18);
}

.floating-whatsapp.floating-whatsapp-premium:hover,
.floating-whatsapp.floating-whatsapp-premium:focus-visible,
.floating-whatsapp.floating-whatsapp-premium.is-glowing {
    border-color: rgba(118, 255, 169, .95);
    filter: saturate(1.18) brightness(1.08);
    background:
        radial-gradient(circle at 18% 26%, rgba(255, 255, 255, .23), transparent 24%),
        linear-gradient(135deg, #27e86b, #0fa34c 55%, #055833);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .18),
        inset 0 -14px 26px rgba(0, 0, 0, .18),
        0 0 0 1px rgba(35, 215, 96, .24),
        0 0 30px rgba(35, 215, 96, .78),
        0 0 74px rgba(35, 215, 96, .34),
        0 18px 52px rgba(1, 32, 21, .46);
}

.floating-whatsapp.floating-whatsapp-premium:hover .floating-whatsapp__orb,
.floating-whatsapp.floating-whatsapp-premium:focus-visible .floating-whatsapp__orb,
.floating-whatsapp.floating-whatsapp-premium.is-glowing .floating-whatsapp__orb {
    box-shadow:
        inset 0 -7px 13px rgba(0, 0, 0, .18),
        0 0 0 7px rgba(35, 215, 96, .20),
        0 0 28px rgba(35, 215, 96, .95);
}

@keyframes whatsappPremiumRing {
    0%, 100% { transform: scale(.985); opacity: .30; }
    50% { transform: scale(1.045); opacity: .85; }
}

@keyframes whatsappOrbPulse {
    0%, 100% { transform: scale(.94); opacity: .24; }
    50% { transform: scale(1.14); opacity: .68; }
}

@media (max-width: 640px) {
    .floating-whatsapp.floating-whatsapp-premium {
        right: 12px;
        bottom: 12px;
        min-width: 218px;
        min-height: 60px;
        padding: 8px 16px 8px 8px;
        gap: 10px;
    }

    .floating-whatsapp__orb {
        flex-basis: 43px;
        width: 43px;
        height: 43px;
    }

    .floating-whatsapp__orb svg {
        width: 25px;
        height: 25px;
    }

    .floating-whatsapp__text strong {
        font-size: 10px;
        letter-spacing: .055em;
    }

    .floating-whatsapp__text em {
        font-size: 15px;
    }
}

@media (max-width: 390px) {
    .floating-whatsapp.floating-whatsapp-premium {
        min-width: 60px;
        width: 60px;
        height: 60px;
        padding: 8px;
        justify-content: center;
    }

    .floating-whatsapp__text {
        position: absolute !important;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-whatsapp.floating-whatsapp-premium::after,
    .floating-whatsapp__orb::before {
        animation: none !important;
    }
}

/* Ajuste 2026-07-30: menu mais suave e marca sem efeito */
.nav {
    border-color: rgba(255, 255, 255, .055) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .055),
        0 14px 34px rgba(0, 0, 0, .075) !important;
}

.nav::before {
    opacity: .36 !important;
}

.nav-indicator {
    box-shadow:
        0 10px 22px rgba(11, 119, 213, .12),
        0 0 0 1px rgba(255, 255, 255, .075) inset !important;
}

.brand,
.brand:hover,
.brand:focus-visible {
    transform: none !important;
    filter: none !important;
    transition: none !important;
}

.brand-logo,
.brand:hover .brand-logo,
.brand:focus-visible .brand-logo {
    transform: none !important;
    filter: none !important;
    box-shadow:
        0 10px 24px rgba(0, 0, 0, .14),
        0 0 0 1px rgba(255, 255, 255, .07) !important;
    transition: none !important;
}

.brand-text strong,
.brand-text small,
.brand:hover .brand-text strong,
.brand:hover .brand-text small,
.brand:focus-visible .brand-text strong,
.brand:focus-visible .brand-text small {
    text-shadow: none !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
}

@media (max-width: 1120px) {
    .nav {
        border-color: rgba(255, 255, 255, .075) !important;
        box-shadow:
            0 26px 72px rgba(0, 0, 0, .34),
            inset 0 1px 0 rgba(255, 255, 255, .07) !important;
    }

    .nav a {
        border-color: rgba(255, 255, 255, .07) !important;
    }
}


/* Ajuste 2026-07-30: menu sem borda e hover ultra suave */
.nav {
    border: 0 !important;
    outline: 0 !important;
    background:
        radial-gradient(circle at 18% 20%, rgba(11, 119, 213, .12), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, .082), rgba(255, 255, 255, .032)) !important;
    box-shadow:
        0 16px 42px rgba(0, 0, 0, .13) !important;
}

.nav::before {
    inset: 0 !important;
    opacity: .20 !important;
    background:
        radial-gradient(circle at var(--menu-glow-x, 50%) 50%, rgba(255, 201, 40, .10), transparent 34%),
        linear-gradient(90deg, rgba(40, 200, 64, .045), rgba(11, 119, 213, .055), rgba(255, 201, 40, .04)) !important;
}

.nav-indicator {
    display: none !important;
}

.nav a {
    border: 0 !important;
    box-shadow: none !important;
    transform: none !important;
    will-change: auto !important;
    transition:
        color .28s ease,
        background-color .28s ease,
        background .28s ease,
        text-shadow .28s ease,
        opacity .28s ease !important;
}

.nav a::after {
    display: none !important;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
    transform: none !important;
    color: #ffffff !important;
    background: rgba(255, 255, 255, .055) !important;
    text-shadow: 0 0 14px rgba(255, 255, 255, .12) !important;
    outline: none !important;
}

.nav .nav-cta {
    border: 0 !important;
    box-shadow:
        0 10px 24px rgba(255, 201, 40, .16),
        inset 0 1px 0 rgba(255, 255, 255, .32) !important;
}

.nav .nav-cta:hover,
.nav .nav-cta:focus-visible,
.nav .nav-cta.is-active {
    transform: none !important;
    background: linear-gradient(135deg, #ffcf34, #ffe78a) !important;
    box-shadow:
        0 12px 28px rgba(255, 201, 40, .22),
        inset 0 1px 0 rgba(255, 255, 255, .38) !important;
}

@media (max-width: 1120px) {
    .nav {
        border: 0 !important;
        background:
            radial-gradient(circle at 14% 0%, rgba(11, 119, 213, .22), transparent 34%),
            radial-gradient(circle at 92% 8%, rgba(255, 201, 40, .10), transparent 34%),
            linear-gradient(135deg, rgba(3, 20, 35, .985), rgba(6, 36, 63, .985)) !important;
        box-shadow:
            0 28px 78px rgba(0, 0, 0, .38) !important;
    }

    .nav a {
        border: 0 !important;
        box-shadow: none !important;
        background: rgba(255, 255, 255, .065) !important;
    }

    .nav a:hover,
    .nav a:focus-visible,
    .nav a.is-active {
        transform: none !important;
        background: rgba(255, 255, 255, .10) !important;
        color: #ffffff !important;
    }

    .nav .nav-cta:hover,
    .nav .nav-cta:focus-visible,
    .nav .nav-cta.is-active {
        transform: none !important;
    }
}
