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

:root {
    --blue-0: #0099FF;
    --blue-1: #0056B3;
    --blue-2: #003D80;
    --blue-3: #002255;
    --blue-4: #001533;
    --white: #ffffff;
    --light: #f4f8ff;
    --light2: #e8f2ff;
    --muted: #5a7a9e;
    --text: #0f1f35;
    --text2: #3d5470;
    --border: rgba(0, 86, 179, 0.11);
    --border2: rgba(0, 153, 255, 0.18);
    --font-head: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 18px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
}

a {
    text-decoration: none;
}

/* ─── NAVBAR ─── */
/* nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 5vw, 64px);
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(0, 14, 38, 0.97);
    backdrop-filter: blur(20px);
    border-bottom-color: rgba(0, 153, 255, 0.12);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.2);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--blue-0), var(--blue-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 0 14px rgba(0, 153, 255, 0.45);
}

.logo-accent {
    color: var(--blue-0);
}

#navbar .nav-links {
    display: flex;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
}

.nav-links a {
    font-size: 0.87rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #fff;
}


.btn-nav {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--blue-0), var(--blue-1));
    color: #fff;
    padding: 9px 22px;
    border-radius: 50px;
    border: none;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 153, 255, 0.32);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 153, 255, 0.44);
} */



/* ── BUTTON LOGIN (provided styles) ── */
/* .btn-access-corner {
    position: fixed;
    top: 14px;
    right: 28px;
    z-index: 9999;
    background: linear-gradient(135deg, #0099FF, #0056B3, #003D80);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 26px;
    border-radius: 60px;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.78rem;
    text-transform: uppercase;
    font-family: var(--font-head);
    box-shadow: 0 0 30px rgba(0, 153, 255, 0.6), 0 0 0 2px rgba(255, 255, 255, 0.1) inset;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 9px;
    backdrop-filter: blur(10px);
    animation: neonPulse 3s ease-in-out infinite;
}

.btn-access-corner:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 45px rgba(8, 62, 99, 0.9), 0 0 0 3px rgba(255, 255, 255, 0.2) inset;
    background: linear-gradient(135deg, #1AA3FF, #0066CC, #004C99);
}

@keyframes neonPulse {
    0% {
        box-shadow: 0 0 25px rgba(0, 153, 255, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.1) inset;
    }

    50% {
        box-shadow: 0 0 45px rgba(4, 72, 117, 0.9), 0 0 0 3px rgba(255, 255, 255, 0.2) inset;
    }

    100% {
        box-shadow: 0 0 25px rgba(0, 153, 255, 0.5), 0 0 0 2px rgba(255, 255, 255, 0.1) inset;
    }
} */

/* ─── GLOBAL BUTTONS ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--blue-0), var(--blue-1));
    color: #fff;
    padding: 15px 36px;
    border-radius: 50px;
    border: none;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(0, 153, 255, 0.38);
    transition: transform 0.25s, box-shadow 0.25s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 153, 255, 0.52);
}

.btn-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s;
    backdrop-filter: blur(8px);
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost-blue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--blue-1);
    padding: 14px 30px;
    border-radius: 50px;
    border: 1.5px solid rgba(0, 86, 179, 0.28);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-ghost-blue:hover {
    background: rgba(0, 86, 179, 0.05);
    border-color: var(--blue-0);
    color: var(--blue-0);
}



/* ─── HERO ─── */
.hero {
    /* min-height: 100vh; */
    /* background: linear-gradient(150deg, #000f28 0%, var(--blue-3) 48%, #003a78 100%); */
    background: var(--light);

    display: flex;
    align-items: center;
    padding: 90px clamp(20px, 5vw, 80px) 70px;
    position: relative;
    overflow: hidden;
}

.hero-glow1 {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 153, 255, 0.14) 0%, transparent 65%);
    top: -200px;
    right: -80px;
    pointer-events: none;
}

.hero-glow2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.18) 0%, transparent 65%);
    bottom: -100px;
    left: 8%;
    pointer-events: none;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: linear-gradient(rgba(0, 153, 255, 1) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 153, 255, 1) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* gap: 64px; */
    align-items: center;
    position: relative;
}

/* hero left */
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 153, 255, 0.1);
    border: 1px solid rgba(0, 153, 255, 0.3);
    color: #7ecfff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-0);
    animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.2
    }
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.1rem, 3.8vw, 3.5rem);
    font-weight: 800;
    /* color: #fff; */
    color: var(--text);
    line-height: 1.1;
    letter-spacing: -1.2px;
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: normal;
    color: var(--blue-0);
}

.hero-desc {
    font-size: 1.05rem;
    font-weight: 500;
    /* color: rgba(255, 255, 255, 0.56); */
    color: var(--text2);
    line-height: 1.75;
    max-width: 450px;
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 44px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.79rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

/* hero mockup */
.hero-right {
    position: relative;
}

/* ---------SECTION APRESENT ------- */
.apresent {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 30px;
    align-items: center;
    padding: 50px clamp(20px, 5vw, 80px);
    background: linear-gradient(150deg, #000f28 0%, var(--blue-3) 48%, #003a78 100%);
}

/* TEXTO (lado direito) */
.apresent-right {
    color: #fff;
}

.apresent-right h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.apresent-right em {
    font-style: normal;
    color: var(--blue-0);
}

.apresent-right p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 30px;
}

/* VÍDEO */
.video-wrap {
    width: 90%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-wrap iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .apresent {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .apresent-right p {
        margin: 0 auto 30px;
    }
}


/*--------- HERO-TWO --------- */
.hero-two {
    /* min-height: 100vh; */
    background: linear-gradient(150deg, #000f28 0%, var(--blue-3) 48%, #003a78 100%);
    /* background: var(--light); */

    display: flex;
    align-items: center;
    padding: 90px clamp(20px, 5vw, 80px) 70px;
    position: relative;
    overflow: hidden;
}

.hero-two-glow1 {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 153, 255, 0.14) 0%, transparent 65%);
    top: -200px;
    right: -80px;
    pointer-events: none;
}

.hero-two-glow2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.18) 0%, transparent 65%);
    bottom: -100px;
    left: 8%;
    pointer-events: none;
}

.hero-two-grid-bg {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    background-image: linear-gradient(rgba(0, 153, 255, 1) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 153, 255, 1) 1px, transparent 1px);
    background-size: 52px 52px;
    pointer-events: none;
}

.hero-two-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
}

/* hero-two left */
.hero-two-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 153, 255, 0.1);
    border: 1px solid rgba(0, 153, 255, 0.3);
    color: #7ecfff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-0);
    animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.2
    }
}

.hero-two h2 {
    font-family: var(--font-head);
    font-size: clamp(2.1rem, 3.8vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    /* color: var(--text); */
    line-height: 1.1;
    letter-spacing: -1.2px;
    margin-bottom: 20px;
}

.hero-two h2 em {
    font-style: normal;
    color: var(--blue-0);
}

.hero-two-desc {
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.56);
    line-height: 1.75;
    max-width: 450px;
    margin-bottom: 36px;
}

.hero-two-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 44px;
}

.hero-two-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.79rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

/* hero-two mockup */
.hero-two-right {
    position: relative;
}

.mock-wrap {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 153, 255, 0.08);
    background: #061120;
}

.mock-bar {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.mock-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.d-r {
    background: #ff5f56;
}

.d-y {
    background: #ffbd2e;
}

.d-g {
    background: #27c93f;
}

.mock-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 5px;
    padding: 4px 11px;
    font-size: 0.69rem;
    color: rgba(255, 255, 255, 0.3);
    font-family: monospace;
}

/* .mock-body {
    padding: 18px;
} */
/* --- AJUSTES NA ESTRUTURA DO MOCKUP --- */
.mock-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* Espaçamento entre as seções */
}

/* Header Estilo Print (Dark Version) */
.db-hd-main {
    background: linear-gradient(135deg, #0a1f3d, #021026);
    padding: 18px 22px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(0, 153, 255, 0.2);
}

.db-hd-main .db-hd-ttl {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

/* Botões de Navegação (Menu interno) */
.db-nav {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    /* 6 botões como no print */
    gap: 8px;
}

.nav-item {
    background: #0d2242;
    color: #fff;
    padding: 10px 5px;
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

/* .nav-item:hover {
    background: var(--blue-0, #0099FF);
    transform: translateY(-2px);
} */

/* db content */
.db-hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.db-hd-ttl {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.db-hd-dt {
    font-size: 0.68rem;
    /* color: rgba(255, 255, 255, 0.3); */
    color: #fff;
}

/* .db-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-bottom: 13px;
} */
.db-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

/* .kpi {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 9px;
    padding: 12px 10px;
} */
.kpi {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 3px solid #0099FF;
    /* Linha de destaque no fundo */
    border-radius: 10px;
    padding: 15px;
}

.kpi-icon {
    background: #0d2242;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border: 1px solid rgba(0, 153, 255, 0.2);
}

.kpi-lbl {
    font-size: 0.58rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 5px;
}

.kpi-val {
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.kpi-sub {
    font-size: 0.58rem;
    margin-top: 3px;
    color: #fff;
}

.kpi-sub.up {
    color: #36e27f;
}

.kpi-sub.dn {
    color: #ff7070;
}

.db-chart {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 9px;
    padding: 12px;
    margin-bottom: 12px;
}

/* Card de Gráfico com Header */
.db-chart-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: hidden;
}

.chart-hd {
    background: #0d2242;
    color: #fff;
    padding: 10px 15px;
    font-size: 0.75rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(0, 153, 255, 0.1);
}

/* .chart-body {
    padding: 20px;
    height: 120px;
    display: flex;
    align-items: flex-end;
} */

.db-chart-ttl {
    font-size: 0.66rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    margin-bottom: 10px;
}

.bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 62px;
}

.bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    transition: height 0.3s;
}

.db-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.db-mini {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 9px;
    padding: 10px 12px;
}

.dm-ttl {
    font-size: 0.58rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 7px;
    font-weight: 700;
}

.dm-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.65rem;
}

.dm-row:last-child {
    border-bottom: none;
}

.dm-n {
    color: rgba(255, 255, 255, 0.55);
}

.dm-v {
    font-weight: 700;
    color: #fff;
}

.tag-ok {
    background: rgba(54, 226, 127, 0.14);
    color: #36e27f;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.57rem;
    font-weight: 700;
}

.tag-pn {
    background: rgba(255, 189, 46, 0.14);
    color: #ffbd2e;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.57rem;
    font-weight: 700;
}

/* float cards */
.float-card {
    position: absolute;
    background: rgba(2, 16, 38, 0.9);
    border: 1px solid rgba(0, 153, 255, 0.22);
    backdrop-filter: blur(16px);
    border-radius: 13px;
    padding: 11px 15px;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.4);
}

.fc-left {
    left: -38px;
    top: 50%;
    transform: translateY(-50%);
    animation: float1 4s ease-in-out infinite;
}

.fc-right {
    right: -34px;
    bottom: 55px;
    animation: float2 4s ease-in-out infinite;
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(-50%)
    }

    50% {
        transform: translateY(calc(-50% - 8px))
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-9px)
    }
}

.fc-lbl {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 4px;
}

.fc-val {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.05rem;
    color: #fff;
    line-height: 1;
}

.fc-val em {
    font-style: normal;
    color: #36e27f;
}

.fc-trend {
    font-size: 0.59rem;
    color: #36e27f;
    margin-top: 3px;
}

/* ─── SECTION HELPERS ─── */
.sec {
    padding: 50px clamp(20px, 5vw, 80px);
}

.sec.bg-light {
    background: var(--light);
}

.sec-in {
    max-width: 1200px;
    margin: 0 auto;
}

.sec-tag {
    display: inline-block;
    background: rgba(0, 153, 255, 0.08);
    border: 1px solid rgba(0, 153, 255, 0.22);
    color: var(--blue-1);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    padding: 4px 13px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.sec-h {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 2.8vw, 2.55rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.sec-h em {
    font-style: normal;
    color: var(--blue-0);
}

.sec-p {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text2);
    line-height: 1.75;
    margin-top: 12px;
    max-width: 460px;
}


/* ─── Z-PATTERN ─── */
.zpair {
    display: flex;
    align-items: center;
    gap: 80px;
}

.zpair.rev {
    flex-direction: row-reverse;
}

.zp-text {
    flex: 1;
}

.zp-vis {
    flex: 1;
}

.zp-checks {
    
    list-style: none;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.zp-checks li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text2);
    line-height: 1.6;
}

.chk {
    flex-shrink: 0;
    margin-top: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 153, 255, 0.1);
    border: 1px solid rgba(0, 153, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: var(--blue-0);
}

.zp-action {
    margin-top: 30px;
}

/* Visual panel styles */
.vp {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 60, 160, 0.07);
}

.vp.dark {
    background: #071526;
    border-color: rgba(0, 153, 255, 0.1);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

/* NF panel */
#imgRotativa {
    transition: opacity 0.5s ease;
}

/* .nf-wrap {
    padding: 22px;
}

.nf-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.nf-num {
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--blue-1);
    background: var(--light2);
    border: 1px solid rgba(0, 86, 179, 0.17);
    padding: 4px 11px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.nf-ok {
    background: rgba(54, 226, 127, 0.11);
    color: #1aaa5c;
    border: 1px solid rgba(54, 226, 127, 0.22);
    padding: 4px 11px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 700;
}

.nf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    margin-bottom: 14px;
}

.nf-f-lbl {
    font-size: 0.62rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
    font-weight: 600;
}

.nf-f-val {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    font-family: var(--font-head);
}

.nf-tot {
    background: linear-gradient(135deg, var(--blue-2), var(--blue-3));
    border-radius: 11px;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nf-tot-lbl {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.nf-tot-val {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
} */

/* Cobrança panel */
.cob-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 86, 179, 0.07);
    font-size: 0.82rem;
}

.cob-item:last-child {
    border-bottom: none;
}

.cob-l {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cob-av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--light2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--blue-1);
    border: 1px solid var(--border2);
}

.cob-nm {
    font-weight: 600;
    color: var(--text);
}

.cob-dt {
    font-size: 0.7rem;
    color: var(--muted);
}

.cob-amt {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text);
}

.bdg {
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.62rem;
    font-weight: 700;
}

.bdg.ok {
    background: rgba(54, 226, 127, 0.11);
    color: #1aaa5c;
}

.bdg.pn {
    background: rgba(255, 189, 46, 0.12);
    color: #c47a00;
}

.bdg.at {
    background: rgba(255, 80, 80, 0.09);
    color: #d93535;
}

/* Flux panel */
.flux-wrap {
    padding: 20px;
}

.flux-hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.flux-ttl {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-head);
}

.flux-tabs {
    display: flex;
    gap: 5px;
}

.ft {
    font-size: 0.62rem;
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
}

.ft.on {
    background: var(--blue-0);
    color: #fff;
}

.ft:not(.on) {
    color: rgba(255, 255, 255, 0.35);
}

.flux-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 85px;
    margin-bottom: 13px;
}

.fb-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.fb {
    width: 100%;
    border-radius: 3px 3px 0 0;
}

.fb-lbl {
    font-size: 0.57rem;
    color: rgba(255, 255, 255, 0.28);
}

.flux-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.fg {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 9px 11px;
}

.fg-lbl {
    font-size: 0.58rem;
    color: rgba(255, 255, 255, 0.32);
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.fg-val {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 800;
    margin-top: 3px;
}

.fg-val.g {
    color: #36e27f;
}

.fg-val.r {
    color: #ff7575;
}

.fg-val.w {
    color: #fff;
}


/* ─── FEATURES GRID ─── */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.feat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-0), var(--blue-1));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s;
}

.feat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 80, 180, 0.1);
    border-color: rgba(0, 153, 255, 0.22);
}

.feat-card:hover::after {
    transform: scaleX(1);
}

.feat-ico {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 153, 255, 0.1), rgba(0, 86, 179, 0.05));
    border: 1px solid rgba(0, 153, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.feat-card h3 {
    font-family: var(--font-head);
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 7px;
}

.feat-card p {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ─── FAQ ─── */
/* container */
.faq-wrap {
    max-width: 700px;
    margin: 0 auto;
}

/* header */
.faq-hd {
    text-align: center;
    margin-bottom: 40px;
}

/* accordion base */
.accordion-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.2s ease;
}

/* botão */
.accordion-button {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    background: #fff;
    padding: 18px 20px;
    box-shadow: none;
}

/* hover */
.accordion-button:hover {
    background: rgba(0, 153, 255, 0.03);
}

/* ativo */
.accordion-button:not(.collapsed) {
    color: var(--blue-1);
    background: rgba(0, 153, 255, 0.05);
    box-shadow: none;
}

/* remove seta padrão */
.accordion-button::after {
    filter: hue-rotate(180deg);
}

/* corpo */
.accordion-body {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    padding: 0 20px 18px;
}

/* efeito leve quando aberto */
.accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: rgba(0, 153, 255, 0.3);
    box-shadow: 0 6px 18px rgba(0, 153, 255, 0.08);
}

/* ─── CTA FINAL ─── */
.cta-section {
    padding: 0 clamp(20px, 4vw, 80px) 80px;
}

.cta-box {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--blue-3) 0%, #003d82 55%, #005cb8 100%);
    border-radius: 28px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle, #fff 1px, transparent 1px);
    background-size: 28px 28px;
}

.cta-box h2 {
    font-family: var(--font-head);
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 12px;
    position: relative;
    letter-spacing: -0.5px;
}

.cta-box h2 em {
    font-style: normal;
    color: var(--blue-0);
}

.cta-box p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.97rem;
    margin-bottom: 34px;
    position: relative;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
}


/* ─── FOOTER ─── */
/* footer {
    background: var(--blue-4);
    padding: 60px clamp(20px, 5vw, 80px) 30px;
}

.ft-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 44px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ft-brand p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.36);
    line-height: 1.7;
    max-width: 220px;
    margin-top: 13px;
}

.ft-col h5 {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 14px;
}

.ft-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 0px !important;
}

.ft-col a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.36);
    transition: color 0.2s;
    
}

.ft-col a:hover {
    color: var(--blue-0);
}

.ft-bottom {
    max-width: 1200px;
    margin: 26px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.25);
    flex-wrap: wrap;
    gap: 8px;

}

.ft-bottom a {
    color: rgba(255, 255, 255, 0.25);
    margin-left: 14px;
    transition: color 0.2s;
    font-size: 2rem;
}

.ft-bottom a:hover {
    color: var(--blue-0);
} */


/* ─── REVEAL ─── */
.rv {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.rv.vis {
    opacity: 1;
    transform: none;
}

.rl {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.rl.vis {
    opacity: 1;
    transform: none;
}

.rr {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.rr.vis {
    opacity: 1;
    transform: none;
}



/* ─── RESPONSIVE ─── */
@media(max-width:900px) {

    .hero-inner,
    .zpair,
    .zpair.rev {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 40px;
    }

    .feat-grid,
    .plans,
    .testi-grid {
        grid-template-columns: 1fr;
    }

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

    .fc-left,
    .fc-right {
        display: none;
    }

    /* .btn-access-corner {
        padding: 10px 16px;
        font-size: 0.69rem;
        right: 12px;
        top: 14px;
    } */

    /* .nav-links {
        display: none;
    } */

    .cta-box {
        padding: 50px 24px;
    }

    /* .proof-stats {
        gap: 22px;
        justify-content: center;
    } */

    .db-2col {
        grid-template-columns: 1fr;
    }
}