:root {
    --blue-950: #052b63;
    --blue-900: #063b83;
    --blue-800: #074da9;
    --blue-700: #075fd8;
    --blue-600: #1376ef;
    --blue-100: #e8f2ff;
    --green-600: #0daf67;
    --green-100: #e7f8ef;
    --violet-600: #7356ee;
    --violet-100: #f0edff;
    --ink: #102745;
    --muted: #60718a;
    --line: #dce7f4;
    --surface: #ffffff;
    --shadow-sm: 0 12px 35px rgba(21, 73, 139, .08);
    --shadow-lg: 0 28px 80px rgba(16, 70, 145, .14);
    --radius-lg: 28px;
    --radius-md: 20px;
    --container: 1360px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: "Manrope", Arial, sans-serif; color: var(--ink); background: #fff; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
svg { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.container { width: min(calc(100% - 64px), var(--container)); margin-inline: auto; }
.section-pad { padding: 102px 0; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.88); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(208, 222, 240, .68); transition: box-shadow .25s ease, background .25s ease; }
.site-header.scrolled { box-shadow: 0 10px 36px rgba(13, 60, 119, .08); background: rgba(255,255,255,.96); }
.header-inner { height: 82px; display: flex; align-items: center; justify-content: flex-start; gap: 34px; }
.brand { display: inline-flex; align-items: center; width: 225px; flex: 0 0 auto; }
.brand img { display: block; width: 100%; height: auto; max-height: 74px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; justify-content: flex-end; gap: 34px; margin-left: auto; margin-right: 0; }
.main-nav a { color: var(--blue-700); font-size: 13px; font-weight: 700; letter-spacing: .01em; transition: color .2s ease, opacity .2s ease; }
.main-nav a:hover { color: var(--blue-900); opacity: .9; }
.menu-toggle { display: none; margin-left: auto; width: 46px; height: 46px; border: 1px solid var(--line); background: #fff; border-radius: 14px; padding: 11px; }
.menu-toggle span { display: block; height: 2px; background: var(--blue-900); margin: 5px 0; border-radius: 20px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 48px; padding: 0 22px; border-radius: 13px; border: 1px solid transparent; font-size: 13px; font-weight: 800; letter-spacing: .01em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--blue-700), #0b49bb); box-shadow: 0 12px 28px rgba(7, 95, 216, .22); }
.btn-primary:hover { box-shadow: 0 16px 34px rgba(7, 95, 216, .3); }
.btn-secondary { color: var(--blue-800); background: #fff; border-color: #a9c7ef; }
.btn-secondary:hover { background: var(--blue-100); }
.btn-light { background: #fff; color: var(--blue-800); box-shadow: 0 15px 40px rgba(0, 20, 60, .18); }
.btn-lg { min-height: 56px; padding: 0 28px; border-radius: 15px; }
.hero { position: relative; overflow: hidden; padding-top: 66px; }
.hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 64px; position: relative; z-index: 2; }
.hero-copy { position: relative; top: -18px; max-width: 560px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--blue-700); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-copy > .eyebrow::before {
    content: "";
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    border-radius: 50%;
    background: #00a8ff;
    box-shadow: 0 0 0 0 rgba(0, 168, 255, .72), 0 0 14px rgba(0, 168, 255, .95);
    animation: hero-neon-pulse 1.7s ease-out infinite;
}
@keyframes hero-neon-pulse {
    0% {
        transform: scale(.88);
        box-shadow: 0 0 0 0 rgba(0, 168, 255, .72), 0 0 10px rgba(0, 168, 255, .9);
    }
    55% {
        transform: scale(1.08);
        box-shadow: 0 0 0 9px rgba(0, 168, 255, 0), 0 0 18px rgba(0, 168, 255, 1);
    }
    100% {
        transform: scale(.88);
        box-shadow: 0 0 0 0 rgba(0, 168, 255, 0), 0 0 10px rgba(0, 168, 255, .9);
    }
}
.hero h1, .section-heading h2, .cta-box h2, .security-title h2 { font-family: "Plus Jakarta Sans", "Manrope", Arial, sans-serif; font-weight: 600; letter-spacing: -.035em; line-height: 1.1; }
.hero h1 { margin: 16px 0 18px; font-size: clamp(34px, 4vw, 48px); line-height: 1.08; }
.hero h1 em { color: var(--blue-700); font-style: normal; }
.hero-copy > p { margin: 0; max-width: 500px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 26px; color: #61748d; font-size: 12px; font-weight: 700; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row svg { color: var(--green-600); }
.hero-visual { position: relative; }
.browser-frame { background: rgba(255,255,255,.9); border: 1px solid #d6e3f2; border-radius: 24px; box-shadow: var(--shadow-lg); padding: 11px; overflow: hidden; }
.browser-frame img { width: 100%; border-radius: 15px; }
.browser-top { height: 38px; display: flex; align-items: center; gap: 7px; padding: 0 8px 8px; color: #60748f; font-size: 12px; font-weight: 700; }
.browser-top i { width: 9px; height: 9px; border-radius: 50%; background: #ff675e; }
.browser-top i:nth-child(2) { background: #ffbd45; }
.browser-top i:nth-child(3) { background: #26c26f; margin-right: 6px; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .65; }
.hero-glow-one { width: 420px; height: 420px; background: radial-gradient(circle, rgba(25,124,255,.12), rgba(25,124,255,0)); right: -130px; top: 10px; }
.hero-glow-two { width: 340px; height: 340px; background: radial-gradient(circle, rgba(13,175,103,.08), rgba(13,175,103,0)); left: -170px; bottom: -140px; }
.value-section { padding: 12px 0 36px; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { display: flex; align-items: center; gap: 18px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.95); box-shadow: var(--shadow-sm); }
.value-card h2 { margin: 0 0 4px; font-size: 17px; }
.value-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.icon-badge, .step-icon { display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; }
.icon-badge { width: 68px; height: 68px; }
.icon-badge svg { width: 30px; height: 30px; }
.blue { color: var(--blue-700); background: var(--blue-100); }
.green { color: var(--green-600); background: var(--green-100); }
.violet { color: var(--violet-600); background: var(--violet-100); }
.section-heading { max-width: 760px; margin-bottom: 52px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading h2, .security-title h2 { margin: 10px 0 12px; font-size: clamp(26px, 3vw, 34px); }
.section-heading p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.process { background: linear-gradient(180deg, #fff 0%, #f7faff 100%); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.steps-grid::before { content: ""; position: absolute; left: 12%; right: 12%; top: 54px; border-top: 1px dashed #a9c8ef; z-index: 0; }
.step-card { position: relative; z-index: 1; text-align: center; padding: 0 14px; }
.step-number { position: absolute; top: 0; left: calc(50% - 42px); display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--blue-700); color: #fff; font-size: 11px; font-weight: 800; box-shadow: 0 8px 18px rgba(7,95,216,.2); }
.step-icon { width: 92px; height: 92px; margin: 10px auto 18px; border: 8px solid #fff; box-shadow: 0 12px 30px rgba(16,70,145,.1); }
.step-icon svg { width: 34px; height: 34px; }
.step-card h3 { margin: 0 0 8px; font-size: 16px; }
.step-card p { margin: 0; color: var(--muted); font-size: 13px; }
.security-section { padding: 34px 0 100px; }
.security-wrap { padding: 34px; border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: var(--shadow-sm); }
.security-title { text-align: center; margin-bottom: 28px; }
.security-items { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.security-items article { display: flex; gap: 14px; padding: 12px 25px; border-left: 1px solid var(--line); }
.security-items article:first-child { border-left: 0; }
.security-items article > svg { width: 31px; height: 31px; color: var(--blue-700); flex: 0 0 auto; }
.security-items h3 { margin: 0 0 4px; font-size: 14px; }
.security-items p { margin: 0; color: var(--muted); font-size: 12px; }
.cta-section { padding: 0 0 28px; }
.cta-box { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 52px 62px; border-radius: 28px; overflow: hidden; color: #fff; background: linear-gradient(135deg, #063c88, #075fd8 65%, #04429a); box-shadow: 0 26px 70px rgba(6,61,136,.25); }
.cta-box::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,.13), transparent 34%), linear-gradient(120deg, transparent 45%, rgba(255,255,255,.06)); pointer-events: none; }
.cta-box > * { position: relative; z-index: 1; }
.eyebrow.light { color: #cde4ff; }
.cta-box h2 { margin: 10px 0 10px; max-width: 640px; font-size: clamp(28px, 3.2vw, 36px); }
.cta-box p { margin: 0; color: #dbeaff; }
.cta-actions { display: grid; gap: 12px; min-width: 300px; }
.cta-actions span { text-align: center; color: #dbeaff; font-size: 12px; }
.site-footer { background: #032b5b; color: #fff; padding: 58px 0 18px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr .9fr; gap: 80px; }
.footer-brand img { display: block; width: 220px; max-width: 100%; height: auto; max-height: 92px; object-fit: contain; object-position: left center; filter: none; opacity: 1; background: transparent; }
.footer-brand p { max-width: 390px; color: #bfd2ea; }
.site-footer h3 { margin: 0 0 14px; font-size: 14px; }
.site-footer a, .site-footer span { display: block; color: #bfd2ea; font-size: 13px; margin: 7px 0; }
.site-footer a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 26px; margin-top: 35px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom span { font-size: 11px; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 60; display: flex; align-items: center; gap: 10px; padding: 10px 16px 10px 11px; border-radius: 999px; color: #fff; background: linear-gradient(135deg, #20c86f, #0aa957); box-shadow: 0 16px 36px rgba(10,169,87,.36); transition: transform .2s ease, box-shadow .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 21px 42px rgba(10,169,87,.45); }
.whatsapp-float > svg { width: 38px; height: 38px; stroke-width: 1.55; }
.whatsapp-float span { display: grid; line-height: 1.15; }
.whatsapp-float strong { font-size: 13px; }
.whatsapp-float small { margin-top: 3px; font-size: 11px; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-sm { transition-delay: .08s; }
.reveal-delay { transition-delay: .16s; }
.reveal-delay-lg { transition-delay: .24s; }
@media (max-width: 1040px) {
    .main-nav { gap: 20px; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: 720px; }
    .hero-visual { max-width: 850px; margin-inline: auto; }
    .value-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); row-gap: 50px; }
    .steps-grid::before { display: none; }
    .security-items { grid-template-columns: repeat(2, 1fr); }
    .security-items article:nth-child(3) { border-left: 0; }
    .cta-box { flex-direction: column; align-items: flex-start; }
    .cta-actions { width: 100%; max-width: 420px; }
    .footer-grid { gap: 50px; }
}
@media (max-width: 760px) {
    .container { width: min(calc(100% - 32px), var(--container)); }
    .section-pad { padding: 76px 0; }
    .header-inner { height: 72px; }
    .brand { width: 165px; }
    .brand img { height: auto; max-height: 58px; }
    .menu-toggle { display: block; }
    .main-nav { position: absolute; left: 14px; right: 14px; top: 78px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 13px 14px; border-radius: 10px; }
    .main-nav a:hover { background: var(--blue-100); }
    .hero { padding-top: 58px; }
    .hero-grid { gap: 44px; }
    .hero h1 { font-size: 30px; }
    .hero-copy > p { font-size: 15px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .trust-row { gap: 12px; }
    .value-grid { gap: 14px; }
    .value-card { padding: 20px; }
    .steps-grid { grid-template-columns: 1fr; gap: 42px; }
    .security-wrap { padding: 24px 20px; }
    .security-items { grid-template-columns: 1fr; }
    .security-items article { border-left: 0; border-top: 1px solid var(--line); padding: 20px 4px; }
    .security-items article:first-child { border-top: 0; }
    .cta-box { padding: 38px 26px; }
    .cta-actions { min-width: 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; }
    .whatsapp-float { right: 14px; bottom: 14px; padding-right: 13px; }
    .whatsapp-float small { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .btn, .whatsapp-float, .hero-carousel-dots button { transition: none; }
    .hero-copy > .eyebrow::before { animation: none; }
}

/* Carrossel principal das telas do sistema */
.hero-carousel { padding-bottom: 15px; }
.hero-carousel-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid #dbe6f3;
    border-radius: 15px;
    background: linear-gradient(145deg, #f7faff, #eef5fd);
}
.hero-carousel-slide {
    position: absolute;
    inset: 0;
    display: none;
    margin: 0;
    align-items: center;
    justify-content: center;
}
.hero-carousel-slide.is-active { display: flex; }
.hero-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    background: #f7faff;
}
.hero-carousel-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    padding: 14px 8px 1px;
}
.hero-carousel-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #b9cde8;
    cursor: pointer;
    transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
}
.hero-carousel-dots button:hover { transform: scale(1.15); }
.hero-carousel-dots button.is-active {
    background: var(--blue-700);
    box-shadow: 0 0 0 4px rgba(7, 95, 216, .12);
}
.hero-carousel-caption {
    padding: 16px 16px 4px;
    text-align: center;
}
.hero-carousel-caption-title {
    margin: 0 0 7px;
    font-family: "Plus Jakarta Sans", "Manrope", Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.25;
    color: var(--ink);
}
.hero-carousel-caption-text {
    max-width: 680px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}
@media (max-width: 760px) {
    .hero-carousel-dots { gap: 8px; }
    .hero-carousel-dots button { width: 9px; height: 9px; }
    .hero-carousel-caption { padding: 14px 8px 2px; }
    .hero-carousel-caption-title { font-size: 16px; }
    .hero-carousel-caption-text { font-size: 12px; }
}

/* =========================================================
   G-Exames — ajustes responsivos para desktop, tablet e celular
   O número permanece no href do WhatsApp e no link do rodapé,
   mas não é exibido dentro do botão flutuante.
   ========================================================= */

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

.whatsapp-float small {
    display: none;
}

.whatsapp-float span {
    display: block;
}

/* Tablet: 761px até 1040px */
@media (min-width: 761px) and (max-width: 1040px) {
    .container {
        width: min(calc(100% - 48px), var(--container));
    }

    .section-pad {
        padding: 82px 0;
    }

    .header-inner {
        height: 76px;
        gap: 26px;
    }

    .brand {
        width: 195px;
    }

    .brand img {
        height: auto;
        max-height: 66px;
    }

    .main-nav {
        justify-content: flex-end;
        gap: 22px;
        margin-left: auto;
        margin-right: 0;
    }

    .hero {
        padding-top: 52px;
    }

    .hero-grid {
        gap: 48px;
    }

    .hero-copy {
        top: -8px;
        max-width: 760px;
        margin-inline: auto;
        text-align: center;
    }

    .hero h1 {
        max-width: 700px;
        margin-inline: auto;
        font-size: clamp(34px, 5.2vw, 44px);
    }

    .hero-copy > p {
        max-width: 650px;
        margin-inline: auto;
    }

    .hero-actions,
    .trust-row {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        max-width: 900px;
    }

    .browser-frame {
        border-radius: 22px;
        padding: 10px;
    }

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

    .value-card {
        min-width: 0;
        flex-direction: column;
        align-items: center;
        padding: 22px 18px;
        text-align: center;
    }

    .icon-badge {
        width: 60px;
        height: 60px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 48px 28px;
    }

    .security-wrap {
        padding: 30px;
    }

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

    .security-items article {
        border-top: 1px solid var(--line);
        border-left: 0;
        padding: 22px;
    }

    .security-items article:nth-child(-n + 2) {
        border-top: 0;
    }

    .security-items article:nth-child(even) {
        border-left: 1px solid var(--line);
    }

    .cta-box {
        align-items: center;
        padding: 46px 48px;
        text-align: center;
    }

    .cta-box h2,
    .cta-box p {
        margin-inline: auto;
    }

    .cta-actions {
        width: min(100%, 430px);
        max-width: none;
    }

    .footer-grid {
        grid-template-columns: 1.35fr .75fr .9fr;
        gap: 34px;
    }

    .whatsapp-float {
        right: 18px;
        bottom: calc(18px + env(safe-area-inset-bottom));
    }
}

/* Celular */
@media (max-width: 760px) {
    :root {
        --radius-lg: 22px;
        --radius-md: 17px;
    }

    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .section-pad {
        padding: 66px 0;
    }

    .site-header {
        backdrop-filter: blur(14px);
    }

    .header-inner {
        height: 68px;
    }

    .brand {
        width: 165px;
    }

    .brand img {
        height: auto;
        max-height: 58px;
    }

    .menu-toggle {
        width: 43px;
        height: 43px;
        border-radius: 13px;
    }

    .main-nav {
        top: 72px;
        left: 12px;
        right: 12px;
        padding: 10px;
        border-radius: 16px;
    }

    .main-nav a {
        padding: 13px 14px;
        font-size: 13px;
    }

    .hero {
        padding-top: 42px;
        padding-bottom: 62px;
    }

    .hero-grid {
        gap: 38px;
    }

    .hero-copy {
        top: 0;
        max-width: none;
        text-align: center;
    }

    .eyebrow {
        justify-content: center;
        font-size: 10px;
        line-height: 1.45;
        letter-spacing: .13em;
    }

    .hero h1 {
        max-width: 560px;
        margin: 13px auto 15px;
        font-size: clamp(28px, 8.3vw, 34px);
        line-height: 1.12;
        letter-spacing: -.04em;
    }

    .hero-copy > p {
        max-width: 560px;
        margin-inline: auto;
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-actions {
        width: 100%;
        max-width: 480px;
        margin: 25px auto 0;
        gap: 11px;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 52px;
    }

    .trust-row {
        justify-content: center;
        gap: 10px 14px;
        margin-top: 22px;
        font-size: 11px;
    }

    .browser-frame {
        padding: 7px;
        border-radius: 17px;
    }

    .browser-top {
        height: 32px;
        padding: 0 6px 6px;
        font-size: 10px;
    }

    .browser-top i {
        width: 7px;
        height: 7px;
    }

    .hero-carousel {
        padding-bottom: 10px;
    }

    .hero-carousel-stage {
        aspect-ratio: 4 / 3;
        border-radius: 11px;
    }

    .hero-carousel-dots {
        gap: 7px;
        padding: 12px 5px 0;
    }

    .hero-carousel-dots button {
        width: 9px;
        height: 9px;
    }

    .hero-carousel-caption {
        padding: 13px 8px 3px;
    }

    .hero-carousel-caption-title {
        margin-bottom: 6px;
        font-size: 16px;
    }

    .hero-carousel-caption-text {
        max-width: 520px;
        font-size: 12px;
        line-height: 1.6;
    }

    .value-section {
        padding: 4px 0 28px;
    }

    .value-grid {
        gap: 12px;
    }

    .value-card {
        gap: 15px;
        padding: 18px;
        border-radius: 17px;
    }

    .value-card h2 {
        font-size: 15px;
    }

    .value-card p {
        font-size: 12px;
    }

    .icon-badge {
        width: 54px;
        height: 54px;
    }

    .icon-badge svg {
        width: 25px;
        height: 25px;
    }

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

    .section-heading h2,
    .security-title h2 {
        font-size: clamp(25px, 7vw, 30px);
        line-height: 1.15;
    }

    .section-heading p {
        font-size: 14px;
    }

    .steps-grid {
        gap: 38px;
    }

    .step-card {
        padding-inline: 8px;
    }

    .step-icon {
        width: 82px;
        height: 82px;
    }

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

    .security-section {
        padding: 18px 0 70px;
    }

    .security-wrap {
        padding: 25px 19px;
        border-radius: 21px;
    }

    .security-title {
        margin-bottom: 20px;
    }

    .security-items article {
        gap: 13px;
        padding: 18px 2px;
    }

    .security-items article > svg {
        width: 27px;
        height: 27px;
    }

    .cta-section {
        padding-bottom: 20px;
    }

    .cta-box {
        gap: 28px;
        padding: 34px 22px;
        border-radius: 22px;
        text-align: center;
    }

    .cta-box h2 {
        max-width: 520px;
        margin-inline: auto;
        font-size: clamp(26px, 7.2vw, 31px);
    }

    .cta-box p {
        font-size: 14px;
    }

    .cta-actions {
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .site-footer {
        padding: 46px 0 16px;
        text-align: center;
    }

    .footer-grid {
        gap: 27px;
    }

    .footer-brand img {
        width: 205px;
        height: auto;
        max-height: 86px;
        margin-inline: auto;
        object-position: center;
        filter: none;
        background: transparent;
    }

    .footer-brand p {
        margin-inline: auto;
        font-size: 13px;
    }

    .footer-bottom {
        align-items: center;
        gap: 8px;
        margin-top: 28px;
    }

    .whatsapp-float {
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom));
        gap: 8px;
        padding: 9px 14px 9px 10px;
        min-height: 52px;
    }

    .whatsapp-float > svg {
        width: 32px;
        height: 32px;
    }

    .whatsapp-float strong {
        font-size: 12px;
    }
}

/* Celulares compactos */
@media (max-width: 480px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .section-pad {
        padding: 58px 0;
    }

    .hero {
        padding-top: 34px;
        padding-bottom: 54px;
    }

    .hero h1 {
        font-size: clamp(27px, 8.6vw, 31px);
    }

    .hero-copy > p {
        font-size: 13px;
    }

    .btn-lg {
        min-height: 50px;
        padding-inline: 18px;
    }

    .trust-row {
        display: grid;
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .hero-carousel-stage {
        min-height: 235px;
    }

    .value-card {
        align-items: flex-start;
    }

    .cta-box {
        padding: 31px 18px;
    }

    .whatsapp-float {
        border-radius: 16px;
    }
}

/* Melhor aproveitamento em tablets/celulares deitados */
@media (max-width: 900px) and (orientation: landscape) {
    .hero {
        padding-top: 36px;
    }

    .hero-grid {
        gap: 34px;
    }

    .hero-carousel-stage {
        aspect-ratio: 16 / 9;
    }
}

/* Botão flutuante elevado para não ficar encostado na base da tela */
.whatsapp-float {
    bottom: calc(82px + env(safe-area-inset-bottom));
}

@media (max-width: 1040px) {
    .whatsapp-float {
        bottom: calc(78px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 760px) {
    .whatsapp-float {
        bottom: calc(72px + env(safe-area-inset-bottom));
    }
}


/* Seção própria de benefícios */
#beneficios,
#como-funciona,
#seguranca,
#demonstracao {
    scroll-margin-top: 96px;
}

.benefits-section {
    position: relative;
    padding: 82px 0 88px;
    background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
    border-top: 1px solid rgba(220, 231, 244, .7);
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.benefit-card {
    min-height: 214px;
    padding: 27px 25px 25px;
    border: 1px solid rgba(211, 225, 242, .92);
    border-radius: 22px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 14px 42px rgba(20, 69, 132, .07);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: #bed4ee;
    box-shadow: 0 20px 48px rgba(20, 69, 132, .11);
}

.benefit-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 19px;
    border-radius: 16px;
}

.benefit-icon svg {
    width: 25px;
    height: 25px;
}

.benefit-card h3 {
    margin: 0 0 8px;
    font-family: "Plus Jakarta Sans", "Manrope", Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.3;
}

.benefit-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

@media (max-width: 1040px) {
    .benefits-section {
        padding: 72px 0 78px;
    }

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

@media (max-width: 760px) {
    #beneficios,
    #como-funciona,
    #seguranca,
    #demonstracao {
        scroll-margin-top: 82px;
    }

    .benefits-section {
        padding: 60px 0 64px;
    }

    .benefits-section .section-heading {
        margin-bottom: 28px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .benefit-card {
        min-height: auto;
        padding: 22px 20px;
        border-radius: 18px;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 15px;
        border-radius: 14px;
    }

    .benefit-card h3 {
        font-size: 16px;
    }
}

/* =========================================================
   Contato — formulário da landing
   ========================================================= */
.contact-section {
    padding: 20px 0 34px;
    scroll-margin-top: 96px;
}

.contact-shell {
    display: grid;
    grid-template-columns: minmax(300px, .8fr) minmax(520px, 1.2fr);
    gap: 56px;
    align-items: center;
    padding: 54px;
    border: 1px solid rgba(7, 95, 216, .12);
    border-radius: 30px;
    background:
        radial-gradient(circle at 8% 10%, rgba(7, 95, 216, .08), transparent 34%),
        linear-gradient(145deg, #f9fcff 0%, #ffffff 58%, #f4f9ff 100%);
    box-shadow: 0 28px 70px rgba(4, 45, 95, .10);
}

.contact-intro h2 {
    max-width: 540px;
    margin: 12px 0 16px;
    color: var(--ink);
    font-family: "Plus Jakarta Sans", "Manrope", Arial, sans-serif;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.04em;
}

.contact-intro > p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.contact-highlights {
    display: grid;
    gap: 13px;
    margin-top: 28px;
}

.contact-highlights span {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #294463;
    font-size: 13px;
    font-weight: 700;
}

.contact-highlights svg {
    width: 21px;
    height: 21px;
    color: var(--blue-700);
    flex: 0 0 auto;
}

.contact-form {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(7, 95, 216, .12);
    border-radius: 24px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 18px 44px rgba(4, 45, 95, .08);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field label {
    color: #233f5f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .01em;
}

.form-field label span {
    color: #d92d20;
}

.form-field input,
.form-field textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #d8e3ef;
    border-radius: 13px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.form-field input {
    min-height: 49px;
    padding: 0 15px;
}

.form-field textarea {
    min-height: 132px;
    padding: 14px 15px;
    line-height: 1.6;
    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #8a9bb0;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: rgba(7, 95, 216, .72);
    box-shadow: 0 0 0 4px rgba(7, 95, 216, .10);
    background: #fff;
}

.contact-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 22px;
}

.contact-form-footer p {
    max-width: 330px;
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.55;
}

.contact-submit {
    flex: 0 0 auto;
    min-width: 190px;
}

.contact-submit:disabled {
    cursor: wait;
    opacity: .78;
    transform: none;
}

.contact-spinner {
    width: 17px;
    height: 17px;
    border: 2px solid rgba(255, 255, 255, .42);
    border-top-color: #fff;
    border-radius: 50%;
    animation: contact-spin .8s linear infinite;
}

@keyframes contact-spin {
    to { transform: rotate(360deg); }
}

.contact-alert {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 13px;
    font-size: 13px;
    line-height: 1.55;
}

.contact-alert.success {
    border: 1px solid rgba(16, 185, 129, .30);
    background: #ecfdf5;
    color: #05603a;
}

.contact-alert.error {
    border: 1px solid rgba(217, 45, 32, .25);
    background: #fff5f4;
    color: #8f1d16;
}

.contact-alert strong {
    display: block;
    margin-bottom: 5px;
}

.contact-alert ul {
    margin: 0;
    padding-left: 18px;
}

.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 1100px) {
    .contact-shell {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 44px;
    }

    .contact-intro {
        max-width: 760px;
        margin-inline: auto;
        text-align: center;
    }

    .contact-intro h2,
    .contact-intro > p {
        margin-inline: auto;
    }

    .contact-highlights {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 760px;
        margin-inline: auto;
        margin-top: 26px;
    }

    .contact-highlights span {
        justify-content: center;
        text-align: left;
    }
}

@media (max-width: 760px) {
    .contact-section {
        padding: 4px 0 26px;
        scroll-margin-top: 78px;
    }

    .contact-shell {
        gap: 28px;
        padding: 28px 20px;
        border-radius: 24px;
    }

    .contact-intro h2 {
        font-size: 27px;
    }

    .contact-intro > p {
        font-size: 14px;
    }

    .contact-highlights {
        grid-template-columns: 1fr;
        gap: 11px;
        width: fit-content;
        margin-inline: auto;
    }

    .contact-highlights span {
        justify-content: flex-start;
    }

    .contact-form {
        padding: 22px 16px;
        border-radius: 19px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-field-full {
        grid-column: auto;
    }

    .contact-form-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .contact-form-footer p {
        max-width: none;
        text-align: center;
    }

    .contact-submit {
        width: 100%;
        min-width: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-spinner {
        animation-duration: 1.4s;
    }
}

/* Navegação por gesto no carrossel — tablet e celular */
@media (max-width: 1100px) {
    .hero-carousel-stage {
        touch-action: pan-y;
        -webkit-user-select: none;
        user-select: none;
        -webkit-touch-callout: none;
    }

    .hero-carousel-stage .hero-carousel-slide.is-active {
        will-change: transform, opacity;
    }

    .hero-carousel-stage.is-dragging .hero-carousel-slide.is-active {
        transition: none;
    }

    .hero-carousel-slide.is-active.swipe-enter-next {
        animation: gexHeroSwipeNext .24s cubic-bezier(.2, .72, .32, 1);
    }

    .hero-carousel-slide.is-active.swipe-enter-previous {
        animation: gexHeroSwipePrevious .24s cubic-bezier(.2, .72, .32, 1);
    }
}

@keyframes gexHeroSwipeNext {
    from {
        opacity: .48;
        transform: translate3d(42px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes gexHeroSwipePrevious {
    from {
        opacity: .48;
        transform: translate3d(-42px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-carousel-slide.is-active.swipe-enter-next,
    .hero-carousel-slide.is-active.swipe-enter-previous {
        animation: none;
    }
}


/* Visualização em tela cheia do conteúdo demonstrativo */
body.demo-modal-open {
    overflow: hidden;
}

.demo-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    visibility: hidden;
    opacity: 0;
    background: #061a34;
    transition: opacity .22s ease, visibility .22s ease;
}

.demo-modal.is-open {
    visibility: visible;
    opacity: 1;
}

.demo-modal-panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    background: #061a34;
    transform: scale(.992);
    transition: transform .22s ease;
}

.demo-modal.is-open .demo-modal-panel {
    transform: scale(1);
}

.demo-modal-bar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 70px;
    padding: 10px 22px;
    color: #fff;
    background: linear-gradient(135deg, #052b63, #074da9);
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
}

.demo-modal-heading,
.demo-modal-actions {
    display: flex;
    align-items: center;
}

.demo-modal-heading {
    min-width: 0;
    gap: 12px;
}

.demo-modal-heading > div {
    min-width: 0;
}

.demo-modal-heading strong,
.demo-modal-heading small {
    display: block;
}

.demo-modal-heading strong {
    overflow: hidden;
    color: #fff;
    font-family: "Plus Jakarta Sans", "Manrope", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.demo-modal-heading small {
    margin-top: 2px;
    color: #cfe4ff;
    font-size: 11px;
    line-height: 1.3;
}

.demo-modal-status {
    width: 11px;
    height: 11px;
    flex: 0 0 11px;
    border-radius: 50%;
    background: #00b7ff;
    box-shadow: 0 0 0 0 rgba(0, 183, 255, .7), 0 0 16px rgba(0, 183, 255, .95);
    animation: demo-status-pulse 1.7s ease-out infinite;
}

.demo-modal-actions {
    flex: 0 0 auto;
    gap: 12px;
}

.demo-modal-external,
.demo-modal-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    background: rgba(255, 255, 255, .10);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.demo-modal-external {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
}

.demo-modal-close {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
}

.demo-modal-close span {
    margin-top: -2px;
    font-size: 29px;
    font-weight: 300;
    line-height: 1;
}

.demo-modal-external:hover,
.demo-modal-close:hover {
    border-color: rgba(255, 255, 255, .48);
    background: rgba(255, 255, 255, .18);
    transform: translateY(-1px);
}

.demo-modal-frame-wrap {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    padding: 18px;
    background:
        radial-gradient(circle at 20% 10%, rgba(0, 183, 255, .13), transparent 34%),
        linear-gradient(145deg, #061a34, #031020);
}

.demo-modal-frame-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    border: 0;
    border-radius: 18px;
    background: #121212;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .38);
}

@keyframes demo-status-pulse {
    0% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 rgba(0, 183, 255, .7), 0 0 12px rgba(0, 183, 255, .9);
    }
    60% {
        transform: scale(1.08);
        box-shadow: 0 0 0 9px rgba(0, 183, 255, 0), 0 0 20px rgba(0, 183, 255, 1);
    }
    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 rgba(0, 183, 255, 0), 0 0 12px rgba(0, 183, 255, .9);
    }
}

@media (max-width: 760px) {
    .demo-modal-bar {
        min-height: 64px;
        gap: 12px;
        padding: 9px 12px;
    }

    .demo-modal-heading {
        gap: 9px;
    }

    .demo-modal-heading strong {
        font-size: 13px;
    }

    .demo-modal-heading small,
    .demo-modal-external {
        display: none;
    }

    .demo-modal-close {
        width: 42px;
        height: 42px;
    }

    .demo-modal-frame-wrap {
        padding: 8px;
    }

    .demo-modal-frame-wrap iframe {
        border-radius: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .demo-modal,
    .demo-modal-panel,
    .demo-modal-external,
    .demo-modal-close {
        transition: none;
    }

    .demo-modal-status {
        animation: none;
    }
}

/* Com o novo item, o menu passa para o formato compacto nos tablets menores. */
@media (min-width: 761px) and (max-width: 900px) {
    .header-inner {
        position: relative;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        z-index: 60;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: #fff;
        box-shadow: var(--shadow-lg);
    }

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

    .main-nav a {
        padding: 13px 14px;
        border-radius: 10px;
    }

    .main-nav a:hover {
        background: var(--blue-100);
    }
}
