:root {
    --blue: #1940a3;
    --blue-bright: #2e5ed3;
    --blue-deep: #102b70;
    --blue-dark: #091c4d;
    --blue-ink: #07153b;
    --red: #d4313d;
    --red-dark: #b91f2d;
    --ink: #172238;
    --muted: #66728a;
    --muted-light: #8c97aa;
    --surface: #f4f7fc;
    --surface-blue: #eaf0fb;
    --line: #dfe5ef;
    --white: #ffffff;
    --success: #17a96b;
    --container: 1180px;
    --shadow-sm: 0 12px 30px rgba(11, 34, 88, 0.08);
    --shadow-md: 0 24px 60px rgba(11, 34, 88, 0.14);
    --shadow-lg: 0 36px 90px rgba(5, 20, 60, 0.22);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--white);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 200;
    padding: 10px 14px;
    transform: translateY(-150%);
    border-radius: 8px;
    background: var(--white);
    color: var(--blue-dark);
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}

.skip-link:focus {
    transform: translateY(0);
}

.top-bar {
    position: relative;
    z-index: 60;
    background: var(--blue-ink);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
}

.top-bar-inner {
    min-height: 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
}

.top-contact,
.top-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    font-weight: 750;
    transition: color 180ms ease;
}

.top-contact:hover,
.top-login:hover {
    color: var(--white);
}

.top-contact svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
    stroke: none;
}

.top-login {
    justify-self: end;
}

.top-login svg {
    width: 16px;
    height: 16px;
}

.top-message {
    color: rgba(255, 255, 255, 0.62);
    font-weight: 550;
    text-align: center;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 55;
    background: rgba(16, 43, 112, 0.97);
    color: var(--white);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.nav-shell {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 202px;
    min-width: 202px;
}

.brand img {
    width: 202px;
    height: auto;
    object-fit: contain;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 29px;
}

.primary-nav > a {
    position: relative;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    transition: color 180ms ease;
}

.primary-nav > a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--red);
    transition: transform 180ms ease;
}

.primary-nav > a:hover,
.primary-nav > a:focus-visible {
    color: var(--white);
}

.primary-nav > a:not(.nav-cta):hover::after,
.primary-nav > a:not(.nav-cta):focus-visible::after {
    transform: scaleX(1);
}

.nav-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 18px;
    border-radius: 12px;
    background: var(--red);
    color: var(--white) !important;
    box-shadow: 0 10px 24px rgba(212, 49, 61, 0.25);
    transition: transform 180ms ease, background 180ms ease !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    background: var(--red-dark);
}

.nav-cta svg {
    width: 17px;
    height: 17px;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 12px;
    background: transparent;
    color: var(--white);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 20px;
    background: currentColor;
    transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-app-bar {
    display: none;
}

.hero {
    position: relative;
    min-height: 705px;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(110deg, var(--blue-ink), var(--blue));
    color: var(--white);
}

.hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 20, 61, 0.98) 0%, rgba(9, 30, 79, 0.93) 39%, rgba(13, 39, 96, 0.45) 66%, rgba(9, 23, 61, 0.18) 100%),
        linear-gradient(180deg, rgba(4, 17, 48, 0.08) 55%, rgba(4, 17, 48, 0.8) 100%);
}

.hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: auto -12% -46% auto;
    width: 750px;
    height: 750px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.025), 0 0 0 180px rgba(255, 255, 255, 0.02);
}

.hero-media {
    position: absolute;
    z-index: -2;
    inset: 0;
    background-image: url("/assets/img/hero-leal-frota.webp");
    background-position: center;
    background-size: cover;
    filter: saturate(0.92) contrast(1.05);
}

.hero-grid {
    min-height: 600px;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    align-items: center;
    gap: 52px;
    padding-top: 54px;
    padding-bottom: 62px;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--blue);
    font-size: 0.73rem;
    font-weight: 850;
    letter-spacing: 0.15em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 30px;
    height: 3px;
    border-radius: 30px;
    background: var(--red);
}

.eyebrow-light {
    color: rgba(255, 255, 255, 0.76);
}

.hero h1 {
    max-width: 690px;
    margin: 0;
    color: var(--white);
    font-size: clamp(3.35rem, 5.4vw, 5.15rem);
    font-weight: 830;
    letter-spacing: -0.055em;
    line-height: 0.99;
}

.hero h1 strong {
    color: var(--white);
    font-weight: 830;
    text-decoration: underline;
    text-decoration-color: var(--red);
    text-decoration-thickness: 6px;
    text-underline-offset: 8px;
}

.hero-lead {
    max-width: 650px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1.02rem, 1.55vw, 1.2rem);
    line-height: 1.75;
}

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

.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border: 0;
    border-radius: 13px;
    font-size: 0.94rem;
    font-weight: 820;
    line-height: 1;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button svg {
    width: 18px;
    height: 18px;
}

.button-accent {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 15px 34px rgba(212, 49, 61, 0.3);
}

.button-accent:hover {
    background: var(--red-dark);
    box-shadow: 0 19px 40px rgba(212, 49, 61, 0.36);
}

.button-ghost {
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.button-ghost:hover {
    border-color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.11);
}

.button-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(25, 64, 163, 0.2);
}

.button-primary:hover {
    background: var(--blue-deep);
}

.button-light {
    background: var(--white);
    color: var(--blue-deep);
    box-shadow: 0 15px 35px rgba(5, 18, 53, 0.18);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 38px;
}

.hero-proof > div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    line-height: 1.45;
}

.hero-proof svg {
    width: 28px;
    height: 28px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: var(--white);
}

.hero-proof strong {
    display: block;
    color: var(--white);
}

.hero-visual {
    position: relative;
    align-self: stretch;
}

.signal-chip,
.location-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    background: rgba(7, 24, 64, 0.69);
    box-shadow: 0 18px 48px rgba(2, 12, 39, 0.26);
    backdrop-filter: blur(12px);
}

.signal-chip {
    top: 22%;
    right: 3%;
}

.location-chip {
    right: 21%;
    bottom: 15%;
}

.signal-dot {
    width: 12px;
    height: 12px;
    border: 3px solid rgba(31, 209, 135, 0.35);
    border-radius: 50%;
    background: #27d28c;
    box-shadow: 0 0 0 6px rgba(39, 210, 140, 0.12);
}

.signal-chip strong,
.location-chip strong {
    display: block;
    color: var(--white);
    font-size: 0.78rem;
    line-height: 1.25;
}

.signal-chip small,
.location-chip small {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.68rem;
}

.location-chip svg {
    width: 30px;
    height: 30px;
    padding: 6px;
    border-radius: 10px;
    background: var(--red);
    color: var(--white);
}

.hero-trust {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.8);
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-trust svg {
    width: 18px;
    height: 18px;
    color: #49e0a2;
    stroke-width: 2.5;
}

.steps-section,
.benefits-section,
.faq-section {
    padding: 112px 0;
}

.section-heading {
    margin-bottom: 52px;
}

.section-heading h2,
.platform-copy h2,
.apps-copy h2,
.faq-intro h2,
.partners-shell h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(2.25rem, 4.2vw, 3.6rem);
    font-weight: 830;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.section-heading > p:last-child,
.centered > p:last-child {
    max-width: 650px;
    margin: 16px auto 0;
    color: var(--muted);
    font-size: 1.02rem;
}

.centered {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.steps-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.steps-grid::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 74px;
    right: 12%;
    left: 12%;
    border-top: 1px dashed rgba(25, 64, 163, 0.25);
}

.step-card {
    position: relative;
    z-index: 1;
    min-height: 282px;
    padding: 31px 26px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(14, 40, 98, 0.04);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.step-card:hover {
    transform: translateY(-7px);
    border-color: rgba(25, 64, 163, 0.26);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: 19px;
    right: 22px;
    color: rgba(25, 64, 163, 0.1);
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
}

.step-icon {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border: 1px solid rgba(25, 64, 163, 0.14);
    border-radius: 18px;
    background: var(--surface-blue);
    color: var(--blue);
}

.step-icon svg {
    width: 30px;
    height: 30px;
}

.step-card h3,
.benefit-card h3,
.solution-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.17rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.step-card p,
.benefit-card p,
.solution-card p {
    margin: 11px 0 0;
    color: var(--muted);
    font-size: 0.91rem;
    line-height: 1.7;
}

.platform-section {
    position: relative;
    padding: 120px 0 126px;
    overflow: hidden;
    background: var(--surface);
}

.platform-section::before {
    content: "";
    position: absolute;
    top: -190px;
    right: -180px;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(25, 64, 163, 0.11), transparent 68%);
}

.platform-grid {
    display: grid;
    grid-template-columns: minmax(350px, 0.86fr) minmax(550px, 1.14fr);
    align-items: center;
    gap: 80px;
}

.platform-copy > p:not(.eyebrow) {
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.8;
}

.check-list {
    display: grid;
    gap: 15px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    font-size: 0.93rem;
    font-weight: 670;
}

.check-list li > span {
    width: 26px;
    height: 26px;
    display: grid;
    flex: 0 0 26px;
    place-items: center;
    border-radius: 50%;
    background: rgba(25, 64, 163, 0.1);
    color: var(--blue);
}

.check-list svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.8;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 31px;
    color: var(--blue);
    font-size: 0.9rem;
    font-weight: 820;
}

.text-link svg {
    width: 17px;
    height: 17px;
    transition: transform 180ms ease;
}

.text-link:hover svg {
    transform: translateX(4px);
}

.dashboard-scene {
    position: relative;
    min-height: 510px;
}

.dashboard-window {
    position: absolute;
    top: 12px;
    right: 0;
    left: 0;
    overflow: hidden;
    border: 1px solid rgba(18, 46, 112, 0.11);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.dashboard-top {
    height: 55px;
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 0 20px;
    border-bottom: 1px solid #e8edf5;
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 750;
}

.window-dots {
    display: flex;
    gap: 5px;
}

.window-dots i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d7ddeb;
}

.window-dots i:first-child {
    background: var(--red);
}

.dashboard-top b {
    margin-left: auto;
    padding: 5px 8px;
    border-radius: 20px;
    background: rgba(23, 169, 107, 0.1);
    color: var(--success);
    font-size: 0.58rem;
    letter-spacing: 0.1em;
}

.dashboard-body {
    min-height: 365px;
    display: grid;
    grid-template-columns: 52px 1fr;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding-top: 24px;
    background: var(--blue-deep);
}

.dashboard-sidebar span {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 5px;
}

.dashboard-sidebar span.active {
    border-color: var(--red);
    background: var(--red);
}

.map-canvas,
.phone-map,
.app-map {
    position: relative;
    overflow: hidden;
    background-color: #edf1f6;
    background-image:
        linear-gradient(rgba(133, 148, 172, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(133, 148, 172, 0.1) 1px, transparent 1px);
    background-size: 34px 34px;
}

.map-canvas::before,
.phone-map::before,
.app-map::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.9) 0 6%, transparent 6.5%),
        radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.8) 0 8%, transparent 8.5%),
        linear-gradient(135deg, transparent 45%, rgba(185, 197, 214, 0.38) 46% 48%, transparent 49%);
}

.road {
    position: absolute;
    height: 9px;
    border: 3px solid rgba(255, 255, 255, 0.94);
    border-right: 0;
    border-left: 0;
    transform-origin: left;
    background: rgba(194, 204, 218, 0.42);
}

.road-one {
    top: 41%;
    left: -5%;
    width: 115%;
    transform: rotate(-14deg);
}

.road-two {
    top: 66%;
    left: 9%;
    width: 105%;
    transform: rotate(19deg);
}

.road-three {
    top: 5%;
    left: 60%;
    width: 75%;
    transform: rotate(70deg);
}

.map-route {
    position: absolute;
    top: 47%;
    left: 17%;
    width: 55%;
    height: 100px;
    border-top: 4px dashed var(--blue-bright);
    border-right: 4px dashed var(--blue-bright);
    border-radius: 0 70px 0 0;
    transform: rotate(-8deg);
}

.map-pin,
.mini-pin,
.app-pin {
    position: absolute;
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border: 3px solid var(--white);
    border-radius: 50% 50% 50% 8px;
    transform: rotate(-45deg);
    background: var(--blue);
    box-shadow: 0 8px 18px rgba(14, 44, 115, 0.25);
}

.map-pin i,
.mini-pin i,
.app-pin i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    transform: rotate(45deg);
    background: var(--white);
}

.pin-one {
    top: 30%;
    left: 24%;
}

.pin-two {
    top: 50%;
    left: 60%;
    background: var(--red);
}

.pin-three {
    top: 22%;
    right: 12%;
}

.map-status-card {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 26px rgba(12, 38, 93, 0.13);
}

.map-status-card > span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 5px rgba(23, 169, 107, 0.12);
}

.map-status-card strong,
.map-status-card small {
    display: block;
    line-height: 1.35;
}

.map-status-card strong {
    color: var(--ink);
    font-size: 0.72rem;
}

.map-status-card small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.59rem;
}

.phone-panel {
    position: absolute;
    right: -28px;
    bottom: 0;
    width: 210px;
    height: 392px;
    padding: 12px;
    overflow: hidden;
    border: 7px solid #101a2f;
    border-radius: 34px;
    background: var(--white);
    box-shadow: 0 30px 70px rgba(9, 28, 77, 0.3);
}

.phone-speaker {
    position: absolute;
    z-index: 5;
    top: 8px;
    left: 50%;
    width: 54px;
    height: 16px;
    transform: translateX(-50%);
    border-radius: 0 0 12px 12px;
    background: #101a2f;
}

.phone-head {
    height: 46px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 7px 7px;
    color: var(--blue);
    font-size: 0.7rem;
    font-weight: 900;
}

.phone-head i {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--surface-blue);
}

.phone-map {
    height: 225px;
    border-radius: 18px;
}

.mini-route,
.app-path {
    position: absolute;
    top: 56%;
    left: 7%;
    width: 72%;
    height: 55px;
    border-top: 3px dashed var(--blue);
    border-right: 3px dashed var(--blue);
    border-radius: 0 40px 0 0;
    transform: rotate(-18deg);
}

.mini-pin {
    top: 34%;
    left: 52%;
    background: var(--red);
}

.vehicle-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 10px 5px;
}

.vehicle-icon {
    width: 34px;
    height: 34px;
    display: grid;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 10px;
    background: var(--surface-blue);
    color: var(--blue);
}

.vehicle-icon svg {
    width: 20px;
    height: 20px;
}

.vehicle-info strong,
.vehicle-info small {
    display: block;
    line-height: 1.35;
}

.vehicle-info strong {
    color: var(--ink);
    font-size: 0.66rem;
}

.vehicle-info small {
    color: var(--muted);
    font-size: 0.53rem;
}

.control-band {
    position: relative;
    padding: 78px 0;
    overflow: hidden;
    background: linear-gradient(115deg, var(--blue-ink) 0%, var(--blue-deep) 60%, var(--blue) 100%);
    color: var(--white);
}

.control-band::after {
    content: "";
    position: absolute;
    top: -180px;
    right: 6%;
    width: 430px;
    height: 430px;
    border: 65px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
}

.control-band-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 55px;
}

.control-number {
    display: flex;
    align-items: center;
    gap: 13px;
    padding-right: 45px;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.control-number strong {
    color: var(--red);
    font-size: 4.8rem;
    font-weight: 900;
    letter-spacing: -0.08em;
    line-height: 0.8;
}

.control-number span {
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.74rem;
    font-weight: 750;
    line-height: 1.45;
    text-transform: uppercase;
}

.control-band .eyebrow {
    margin-bottom: 10px;
}

.control-band h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 830;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.split-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
    align-items: end;
    gap: 75px;
}

.split-heading p:last-child {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.benefit-card {
    min-height: 250px;
    padding: 34px 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
    transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.benefit-card:hover {
    position: relative;
    z-index: 2;
    transform: translateY(-4px);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.benefit-card > svg {
    width: 38px;
    height: 38px;
    margin-bottom: 28px;
    color: var(--blue);
}

.benefit-card:nth-child(2n) > svg {
    color: var(--red);
}

.solutions-section {
    position: relative;
    padding: 118px 0 126px;
    overflow: hidden;
    background: var(--blue-ink);
}

.solutions-section::before,
.solutions-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.solutions-section::before {
    top: -320px;
    left: -180px;
    width: 620px;
    height: 620px;
    border: 90px solid rgba(255, 255, 255, 0.025);
}

.solutions-section::after {
    right: -140px;
    bottom: -240px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(46, 94, 211, 0.22), transparent 67%);
}

.light-heading {
    position: relative;
    z-index: 1;
}

.light-heading h2 {
    color: var(--white);
}

.light-heading > p:last-child {
    color: rgba(255, 255, 255, 0.6);
}

.solutions-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.solution-card {
    min-height: 355px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.055);
    color: var(--white);
    backdrop-filter: blur(10px);
    transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.solution-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.09);
}

.solution-card.featured {
    border-color: rgba(212, 49, 61, 0.65);
    background: linear-gradient(160deg, rgba(212, 49, 61, 0.18), rgba(255, 255, 255, 0.055) 52%);
}

.solution-label {
    padding: 6px 9px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.58rem;
    font-weight: 850;
    letter-spacing: 0.15em;
}

.solution-card > svg {
    width: 43px;
    height: 43px;
    margin: 31px 0 24px;
    color: #86a8ff;
}

.solution-card.featured > svg {
    color: #ff7d86;
}

.solution-card h3 {
    color: var(--white);
    font-size: 1.28rem;
}

.solution-card p {
    color: rgba(255, 255, 255, 0.57);
}

.solution-card > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    padding-top: 25px;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 800;
}

.solution-card > a span {
    color: var(--red);
    font-size: 1.15rem;
    transition: transform 180ms ease;
}

.solution-card > a:hover span {
    transform: translateX(4px);
}

.apps-section {
    position: relative;
    padding: 125px 0;
    overflow: hidden;
    background: var(--surface);
}

.apps-grid {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    align-items: center;
    gap: 100px;
}

.app-visual {
    position: relative;
    min-height: 560px;
}

.app-orbit {
    position: absolute;
    top: 50%;
    left: 45%;
    border: 1px solid rgba(25, 64, 163, 0.12);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-one {
    width: 460px;
    height: 460px;
}

.orbit-two {
    width: 350px;
    height: 350px;
    background: rgba(25, 64, 163, 0.045);
}

.app-phone {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 50%;
    width: 286px;
    height: 550px;
    padding: 17px;
    transform: translateX(-50%) rotate(-4deg);
    border: 9px solid #101a2f;
    border-radius: 48px;
    background: var(--white);
    box-shadow: 0 40px 80px rgba(9, 31, 83, 0.3);
}

.app-notch {
    position: absolute;
    z-index: 5;
    top: 10px;
    left: 50%;
    width: 86px;
    height: 22px;
    transform: translateX(-50%);
    border-radius: 0 0 15px 15px;
    background: #101a2f;
}

.app-screen-head {
    height: 64px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 10px 10px;
    color: var(--blue);
    font-size: 0.85rem;
    font-weight: 900;
}

.app-screen-head i {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: var(--surface-blue);
}

.app-map {
    height: 340px;
    border-radius: 24px;
}

.app-road {
    position: absolute;
    height: 8px;
    border-top: 3px solid rgba(255, 255, 255, 0.9);
    border-bottom: 3px solid rgba(255, 255, 255, 0.9);
    background: #c9d3e0;
}

.road-a {
    top: 42%;
    left: -10%;
    width: 125%;
    transform: rotate(-22deg);
}

.road-b {
    top: 68%;
    left: 10%;
    width: 110%;
    transform: rotate(17deg);
}

.app-path {
    top: 52%;
    left: 8%;
    height: 90px;
}

.app-pin {
    top: 31%;
    left: 58%;
    width: 31px;
    height: 31px;
    background: var(--red);
}

.app-bottom-card {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 12px;
    padding: 13px 10px;
}

.status-pulse {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 6px rgba(23, 169, 107, 0.12);
}

.app-bottom-card strong,
.app-bottom-card small {
    display: block;
    line-height: 1.35;
}

.app-bottom-card strong {
    color: var(--ink);
    font-size: 0.76rem;
}

.app-bottom-card small {
    color: var(--muted);
    font-size: 0.61rem;
}

.app-floating-card {
    position: absolute;
    z-index: 4;
    border: 1px solid rgba(25, 64, 163, 0.1);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
}

.card-speed {
    top: 80px;
    right: 0;
    padding: 17px 20px;
}

.card-speed small,
.card-speed strong {
    display: block;
}

.card-speed small {
    color: var(--muted);
    font-size: 0.55rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.card-speed strong {
    margin-top: 4px;
    color: var(--blue);
    font-size: 1.65rem;
    letter-spacing: -0.04em;
}

.card-speed strong span {
    color: var(--muted);
    font-size: 0.62rem;
    font-weight: 700;
}

.card-alert {
    bottom: 92px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
}

.card-alert > span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(23, 169, 107, 0.11);
    color: var(--success);
    font-weight: 900;
}

.card-alert strong,
.card-alert small {
    display: block;
    line-height: 1.35;
}

.card-alert strong {
    color: var(--ink);
    font-size: 0.71rem;
}

.card-alert small {
    color: var(--muted);
    font-size: 0.58rem;
}

.apps-copy > p:not(.eyebrow) {
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.8;
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 31px;
}

.store-buttons a {
    display: block;
    border-radius: 9px;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-buttons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(12, 31, 75, 0.15);
}

.store-buttons img {
    width: auto;
    height: 49px;
}

.store-buttons .store-badge {
    min-width: 179px;
    height: 49px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 7px;
    background: #202020;
    color: #fff;
    line-height: 1;
}

.store-badge .microsoft-mark {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
}

.store-badge span {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.store-badge small {
    font-size: 0.53rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.store-badge strong {
    color: #fff;
    font-size: 0.91rem;
    font-weight: 500;
    white-space: nowrap;
}

.web-app-link {
    margin-top: 19px;
}

.partners-section {
    padding: 78px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.partners-shell {
    display: grid;
    grid-template-columns: minmax(300px, 0.7fr) minmax(500px, 1.3fr);
    align-items: center;
    gap: 75px;
}

.partners-shell h2 {
    font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 18px;
}

.partner-logos img {
    width: 100%;
    max-height: 58px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.66;
    transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.partner-logos img:hover {
    transform: translateY(-2px);
    filter: grayscale(0);
    opacity: 1;
}

.faq-section {
    background: var(--surface);
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(540px, 1.28fr);
    align-items: start;
    gap: 90px;
}

.faq-intro {
    position: sticky;
    top: 125px;
}

.faq-intro > p:not(.eyebrow) {
    margin: 21px 0 28px;
    color: var(--muted);
    line-height: 1.75;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 4px;
    color: var(--ink);
    font-size: 1.02rem;
    font-weight: 790;
    line-height: 1.4;
    list-style: none;
    cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    position: relative;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border: 1px solid rgba(25, 64, 163, 0.2);
    border-radius: 50%;
    background: var(--white);
}

.faq-list summary span::before,
.faq-list summary span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 2px;
    transform: translate(-50%, -50%);
    background: var(--blue);
    transition: transform 180ms ease;
}

.faq-list summary span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary {
    color: var(--blue);
}

.faq-list details[open] summary span::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
    max-width: 680px;
    margin: -5px 0 25px;
    padding-right: 55px;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.75;
}

.final-cta {
    padding: 95px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 12%, rgba(87, 130, 236, 0.32), transparent 33%),
        linear-gradient(115deg, var(--blue-ink), var(--blue-deep));
    color: var(--white);
}

.final-cta-shell {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 70px;
}

.final-cta h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 830;
    letter-spacing: -0.05em;
    line-height: 1.08;
}

.final-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.final-cta-actions small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.72rem;
}

.site-footer {
    padding: 75px 0 26px;
    background: #050f2c;
    color: rgba(255, 255, 255, 0.62);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 0.75fr);
    gap: 55px;
}

.footer-brand img {
    width: 185px;
    height: auto;
}

.footer-brand p {
    max-width: 360px;
    margin: 21px 0 0;
    font-size: 0.86rem;
    line-height: 1.75;
}

.site-footer h2 {
    margin: 7px 0 22px;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer a {
    display: block;
    width: fit-content;
    margin-top: 11px;
    font-size: 0.84rem;
    transition: color 180ms ease;
}

.site-footer a:hover {
    color: var(--white);
}

.footer-bottom {
    min-height: 76px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-top: 54px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.72rem;
}

.floating-whatsapp {
    position: fixed;
    z-index: 90;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: #22c766;
    color: var(--white);
    box-shadow: 0 14px 35px rgba(8, 72, 40, 0.3);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 42px rgba(8, 72, 40, 0.38);
}

.floating-whatsapp svg {
    width: 31px;
    height: 31px;
    fill: currentColor;
    stroke: none;
}

/* Páginas internas */
.content-hero {
    position: relative;
    padding: 94px 0 104px;
    overflow: hidden;
    background: linear-gradient(120deg, var(--blue-ink), var(--blue-deep));
    color: var(--white);
}

.content-hero::after {
    content: "";
    position: absolute;
    top: -220px;
    right: -100px;
    width: 520px;
    height: 520px;
    border: 70px solid rgba(255, 255, 255, 0.035);
    border-radius: 50%;
}

.content-hero .container {
    position: relative;
    z-index: 1;
    max-width: 920px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.78rem;
    font-weight: 700;
}

.breadcrumb a:hover {
    color: var(--white);
}

.content-hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(2.8rem, 5.8vw, 5rem);
    font-weight: 840;
    letter-spacing: -0.055em;
    line-height: 1;
}

.content-hero p {
    max-width: 710px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
    line-height: 1.8;
}

.content-page {
    padding: 100px 0 115px;
    background: var(--surface);
}

.article-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: 48px;
}

.article-main {
    padding: 50px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.article-main h2 {
    margin: 48px 0 15px;
    color: var(--ink);
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 820;
    letter-spacing: -0.035em;
    line-height: 1.15;
}

.article-main h2:first-child {
    margin-top: 0;
}

.article-main p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.85;
}

.article-main ul {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.article-main li {
    position: relative;
    padding-left: 31px;
    color: var(--ink);
    font-weight: 650;
}

.article-main li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(25, 64, 163, 0.1);
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 900;
}

.article-aside {
    position: sticky;
    top: 118px;
    padding: 32px;
    border-radius: 22px;
    background: var(--blue-deep);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.article-aside span {
    display: block;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.article-aside h2 {
    margin: 12px 0 14px;
    color: var(--white);
    font-size: 1.6rem;
    line-height: 1.2;
}

.article-aside p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.87rem;
    line-height: 1.7;
}

.article-aside .button {
    width: 100%;
}

@media (max-width: 1080px) {
    .primary-nav {
        gap: 20px;
    }

    .primary-nav > a {
        font-size: 0.84rem;
    }

    .brand,
    .brand img {
        width: 178px;
        min-width: 178px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    }

    .platform-grid {
        grid-template-columns: 0.85fr 1.15fr;
        gap: 52px;
    }

    .phone-panel {
        right: -10px;
    }

    .benefits-grid,
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apps-grid {
        gap: 60px;
    }

    .footer-grid {
        grid-template-columns: 1.25fr repeat(3, 0.75fr);
        gap: 34px;
    }
}

@media (max-width: 900px) {
    .top-bar-inner {
        grid-template-columns: 1fr 1fr;
    }

    .top-message {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .primary-nav {
        position: fixed;
        z-index: 100;
        top: 124px;
        right: 18px;
        left: 18px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px;
        transform: translateY(-16px) scale(0.98);
        transform-origin: top;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 18px;
        background: rgba(7, 21, 59, 0.98);
        box-shadow: var(--shadow-lg);
        opacity: 0;
        pointer-events: none;
        transition: transform 180ms ease, opacity 180ms ease;
    }

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

    .primary-nav > a {
        padding: 14px 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
        font-size: 0.98rem;
    }

    .primary-nav > a::after {
        display: none;
    }

    .primary-nav .nav-cta {
        justify-content: center;
        margin-top: 13px;
        border-bottom: 0;
    }

    .hero-grid {
        min-height: 640px;
        grid-template-columns: 1fr;
        align-items: center;
        padding-bottom: 110px;
    }

    .hero-copy {
        max-width: 720px;
    }

    .hero::before {
        background: linear-gradient(90deg, rgba(5, 20, 61, 0.97), rgba(7, 25, 68, 0.83) 70%, rgba(7, 25, 68, 0.67));
    }

    .hero-media {
        background-position: 65% center;
    }

    .hero-visual {
        position: absolute;
        inset: 0;
        pointer-events: none;
    }

    .signal-chip {
        top: auto;
        right: 24px;
        bottom: 105px;
    }

    .location-chip {
        display: none;
    }

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

    .steps-grid::before {
        display: none;
    }

    .platform-grid,
    .apps-grid,
    .faq-grid,
    .article-shell {
        grid-template-columns: 1fr;
    }

    .dashboard-scene {
        width: min(100%, 680px);
        margin: 15px auto 0;
    }

    .control-band-grid {
        grid-template-columns: auto 1fr;
    }

    .control-band-grid .button {
        grid-column: 1 / -1;
        width: fit-content;
        margin-left: auto;
    }

    .split-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .app-visual {
        order: 2;
        width: min(100%, 600px);
        margin: 20px auto 0;
    }

    .apps-copy {
        order: 1;
    }

    .partners-shell {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .faq-intro,
    .article-aside {
        position: static;
    }

    .final-cta-shell {
        grid-template-columns: 1fr;
    }

    .final-cta-actions {
        align-items: flex-start;
    }

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

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .top-bar-inner {
        min-height: 38px;
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .top-login {
        display: none;
    }

    .top-contact {
        font-size: 0.78rem;
    }

    .nav-shell {
        min-height: 72px;
    }

    .brand,
    .brand img {
        width: 158px;
        min-width: 158px;
    }

    .primary-nav {
        top: 110px;
    }

    .mobile-app-bar {
        display: block;
        background: var(--red);
    }

    .mobile-app-bar button {
        width: 100%;
        min-height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        padding: 0 15px;
        border: 0;
        background: transparent;
        color: var(--white);
        font-size: 0.78rem;
        font-weight: 800;
        cursor: pointer;
    }

    .mobile-app-bar svg {
        width: 17px;
        height: 17px;
    }

    .hero {
        min-height: 730px;
    }

    .hero-grid {
        min-height: 650px;
        align-items: start;
        padding-top: 72px;
        padding-bottom: 142px;
    }

    .hero h1 {
        font-size: clamp(2.65rem, 13vw, 4.1rem);
    }

    .hero h1 strong {
        text-decoration-thickness: 4px;
        text-underline-offset: 6px;
    }

    .hero-lead {
        margin-top: 24px;
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-actions {
        align-items: stretch;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-proof {
        display: grid;
        gap: 15px;
        margin-top: 28px;
    }

    .signal-chip {
        display: none;
    }

    .hero-trust {
        min-height: 110px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 9px 14px;
        padding: 17px 0;
    }

    .hero-trust span {
        font-size: 0.7rem;
        line-height: 1.3;
    }

    .hero-trust span:last-child {
        grid-column: 1 / -1;
    }

    .steps-section,
    .benefits-section,
    .faq-section,
    .platform-section,
    .solutions-section,
    .apps-section {
        padding: 82px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2,
    .platform-copy h2,
    .apps-copy h2,
    .faq-intro h2,
    .partners-shell h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .steps-grid,
    .benefits-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        min-height: 0;
    }

    .benefits-grid {
        border-left: 0;
    }

    .benefit-card {
        min-height: 0;
        border-left: 1px solid var(--line);
    }

    .dashboard-scene {
        min-height: 430px;
    }

    .dashboard-body {
        min-height: 300px;
    }

    .phone-panel {
        right: -4px;
        width: 170px;
        height: 330px;
        border-width: 6px;
        border-radius: 28px;
    }

    .phone-map {
        height: 177px;
    }

    .map-status-card {
        display: none;
    }

    .control-band {
        padding: 68px 0;
    }

    .control-band-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .control-number {
        width: fit-content;
        padding: 0 0 22px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }

    .control-band-grid .button {
        width: 100%;
        margin-left: 0;
    }

    .solution-card {
        min-height: 330px;
    }

    .app-visual {
        min-height: 485px;
    }

    .orbit-one {
        width: 390px;
        height: 390px;
    }

    .orbit-two {
        width: 300px;
        height: 300px;
    }

    .app-phone {
        width: 236px;
        height: 468px;
        border-radius: 40px;
    }

    .app-map {
        height: 276px;
    }

    .card-speed {
        top: 55px;
        right: -5px;
    }

    .card-alert {
        bottom: 65px;
        left: -5px;
    }

    .partner-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-list summary {
        font-size: 0.94rem;
    }

    .faq-list details p {
        padding-right: 8px;
    }

    .final-cta {
        padding: 78px 0;
    }

    .final-cta-actions,
    .final-cta-actions .button {
        width: 100%;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        padding: 24px 0 0;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }

    .content-hero {
        padding: 75px 0 85px;
    }

    .content-page {
        padding: 70px 0 85px;
    }

    .article-main,
    .article-aside {
        padding: 29px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
