/**
 * Landing home — layout mock GestorAdv (navy / blue / white)
 * Carregado por último em layouts/landing.php quando $paginaAtiva === 'home'.
 */

/* --- Tokens / base -------------------------------------------------------- */
html.inst-html--home {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--home-header-inset-y, 14px) + var(--inst-header-h, 76px) + 16px);
    /* Mesmo tom do topo do hero — evita faixa distinta atrás do menu */
    background: #0a1a2e;
    /* overflow no html quebra position:fixed (banner de cookies cai no fim da página) */
}

body.inst-page--home {
    --ga-topbar-h: 0px;
    --inst-header-h: 76px;
    --home-header-inset-x: 28px;
    --home-header-inset-y: 14px;
    --home-header-max: 1280px;
    --mock-navy: #071525;
    --mock-navy-2: #0a1f36;
    --mock-blue: #1f6fff;
    --mock-blue-hover: #1557d6;
    --mock-bg: #f5f8fc;
    --mock-card: #ffffff;
    --mock-text: #0a1a2e;
    --mock-muted: #5b6b81;
    --mock-border: #e2e8f0;
    --mock-radius: 12px;
    --mock-radius-lg: 16px;
    --mock-shadow: 0 8px 28px rgba(10, 26, 46, 0.08);
    padding-top: 0 !important;
    background: #0a1a2e;
    overflow-x: clip;
    max-width: 100%;
}

main.ga-mock {
    background: #fff;
}

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

.inst-page--home .inst-container {
    width: min(1160px, calc(100% - 48px)) !important;
}

@media (max-width: 640px) {
    body.inst-page--home {
        --home-header-inset-x: 12px;
        --home-header-inset-y: 10px;
        --inst-header-h: 64px;
    }

    .inst-page--home .inst-container {
        width: min(100% - 32px, 1160px) !important;
    }
}

/* --- Header flutuante: transparente no topo → pill branco no scroll ------ */
body.inst-page--home > .ga-lp-topbar {
    display: none !important;
    height: 0 !important;
}

/* Skip-link não pode virar relative (senão empurra o hero e cria faixa preta) */
body.inst-page--home > .skip-link {
    position: fixed !important;
    z-index: 100000 !important;
}

body.inst-page--home > .inst-header,
.inst-header--home {
    position: fixed !important;
    top: var(--home-header-inset-y) !important;
    left: var(--home-header-inset-x) !important;
    right: var(--home-header-inset-x) !important;
    width: auto !important;
    max-width: var(--home-header-max) !important;
    height: auto !important;
    min-height: var(--inst-header-h) !important;
    margin-inline: auto !important;
    z-index: 100 !important;
    background: transparent !important;
    border: 1px solid transparent !important;
    border-radius: 22px !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition:
        top 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        min-height 0.22s ease,
        padding 0.22s ease;
}

/* Estado scrolled: pill branco flutuante */
.inst-page--home .inst-header.is-scrolled,
.inst-header--home.is-scrolled,
body.inst-page--home.ga-lp-header-scrolled .inst-header {
    background: rgba(255, 255, 255, 0.98) !important;
    border-color: rgba(226, 232, 240, 0.95) !important;
    box-shadow: 0 12px 40px rgba(10, 26, 46, 0.12) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    min-height: 88px !important;
    padding-block: 6px;
}

.inst-page--home .inst-header .marca-gestor-adv__img--tema-dark {
    display: block !important;
}

.inst-page--home .inst-header .marca-gestor-adv__img--tema-light {
    display: none !important;
}

.inst-page--home .inst-header.is-scrolled .marca-gestor-adv__img--tema-dark,
body.inst-page--home.ga-lp-header-scrolled .inst-header .marca-gestor-adv__img--tema-dark {
    display: none !important;
}

.inst-page--home .inst-header.is-scrolled .marca-gestor-adv__img--tema-light,
body.inst-page--home.ga-lp-header-scrolled .inst-header .marca-gestor-adv__img--tema-light {
    display: block !important;
}

.inst-page--home .inst-nav {
    min-height: var(--inst-header-h);
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding-block: 10px;
}

.inst-page--home .inst-header.is-scrolled .inst-nav,
body.inst-page--home.ga-lp-header-scrolled .inst-nav {
    min-height: 76px;
    padding-block: 14px;
}

.inst-page--home .inst-header .inst-container--nav {
    width: 100% !important;
    max-width: none !important;
    padding-inline: 24px 20px !important;
    box-sizing: border-box !important;
}

@media (max-width: 980px) {
    .inst-page--home .inst-header .inst-container--nav {
        padding-inline: 22px 18px !important;
    }
}

@media (max-width: 640px) {
    .inst-page--home .inst-header .inst-container--nav {
        padding-inline: 20px 16px !important;
    }
}

.inst-page--home .inst-nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
    gap: 28px;
    min-width: 0;
}

.inst-page--home .inst-nav-links__main {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px 6px;
    flex: 0 1 auto;
}

.inst-page--home .inst-nav-links__main a:not(.botao),
.inst-page--home .inst-nav-mais__btn {
    color: rgba(247, 250, 255, 0.88) !important;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 10px;
    background: transparent !important;
    white-space: nowrap;
}

.inst-page--home .inst-nav-links__main a:not(.botao):hover,
.inst-page--home .inst-nav-mais__btn:hover,
.inst-page--home .inst-nav-mais__btn[aria-expanded="true"] {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.inst-page--home .inst-header.is-scrolled .inst-nav-links__main a:not(.botao),
.inst-page--home .inst-header.is-scrolled .inst-nav-mais__btn,
body.inst-page--home.ga-lp-header-scrolled .inst-nav-links__main a:not(.botao),
body.inst-page--home.ga-lp-header-scrolled .inst-nav-mais__btn {
    color: var(--mock-muted) !important;
}

.inst-page--home .inst-header.is-scrolled .inst-nav-links__main a:not(.botao):hover,
.inst-page--home .inst-header.is-scrolled .inst-nav-links__main a:not(.botao).ativo,
.inst-page--home .inst-header.is-scrolled .inst-nav-mais__btn:hover,
.inst-page--home .inst-header.is-scrolled .inst-nav-mais__btn[aria-expanded="true"],
body.inst-page--home.ga-lp-header-scrolled .inst-nav-links__main a:not(.botao):hover,
body.inst-page--home.ga-lp-header-scrolled .inst-nav-links__main a:not(.botao).ativo,
body.inst-page--home.ga-lp-header-scrolled .inst-nav-mais__btn:hover,
body.inst-page--home.ga-lp-header-scrolled .inst-nav-mais__btn[aria-expanded="true"] {
    color: var(--mock-text) !important;
    background: rgba(31, 111, 255, 0.08) !important;
}

.inst-page--home .inst-nav-mais {
    position: relative !important;
}

.inst-page--home .inst-nav-mais__menu {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
    z-index: 120 !important;
    min-width: 240px;
    padding: 8px !important;
    border-radius: var(--inst-radius, 16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: #0f2138 !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35) !important;
    overflow: hidden !important;
}

.inst-page--home .inst-nav-mais__menu[hidden] {
    display: none !important;
}

.inst-page--home .inst-nav-mais__menu a {
    color: rgba(247, 250, 255, 0.82) !important;
    border-radius: 8px !important;
}

.inst-page--home .inst-nav-mais__menu a:hover,
.inst-page--home .inst-nav-mais__menu a.ativo {
    color: #fff !important;
    background: rgba(31, 111, 255, 0.18) !important;
}

.inst-page--home .inst-header.is-scrolled .inst-nav-mais__menu,
body.inst-page--home.ga-lp-header-scrolled .inst-nav-mais__menu {
    background: #fff !important;
    border-color: var(--mock-border) !important;
    box-shadow: var(--mock-shadow) !important;
}

.inst-page--home .inst-header.is-scrolled .inst-nav-mais__menu a,
body.inst-page--home.ga-lp-header-scrolled .inst-nav-mais__menu a {
    color: var(--mock-muted) !important;
}

.inst-page--home .inst-header.is-scrolled .inst-nav-mais__menu a:hover,
.inst-page--home .inst-header.is-scrolled .inst-nav-mais__menu a.ativo,
body.inst-page--home.ga-lp-header-scrolled .inst-nav-mais__menu a:hover,
body.inst-page--home.ga-lp-header-scrolled .inst-nav-mais__menu a.ativo {
    color: var(--mock-text) !important;
    background: rgba(31, 111, 255, 0.08) !important;
}

.inst-page--home .inst-nav-links__acoes {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.inst-page--home .inst-nav-login {
    color: #fff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.55) !important;
    border-radius: 10px !important;
    padding: 11px 18px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    background: transparent !important;
    text-decoration: none !important;
    line-height: 1.2;
}

.inst-page--home .inst-nav-login:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: #fff !important;
}

.inst-page--home .inst-header.is-scrolled .inst-nav-login,
body.inst-page--home.ga-lp-header-scrolled .inst-nav-login {
    color: var(--mock-text) !important;
    border-color: var(--mock-border) !important;
    background: transparent !important;
}

.inst-page--home .inst-header.is-scrolled .inst-nav-login:hover,
body.inst-page--home.ga-lp-header-scrolled .inst-nav-login:hover {
    color: var(--mock-text) !important;
    border-color: var(--mock-blue) !important;
    background: rgba(31, 111, 255, 0.06) !important;
}

.inst-page--home .inst-nav-cta {
    background: var(--mock-blue) !important;
    color: #fff !important;
    border: 1.5px solid var(--mock-blue) !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 20px rgba(31, 111, 255, 0.35) !important;
    padding: 12px 20px !important;
    font-weight: 700 !important;
    white-space: nowrap;
    line-height: 1.2;
}

.inst-page--home .inst-nav-cta:hover {
    background: var(--mock-blue-hover) !important;
    border-color: var(--mock-blue-hover) !important;
}

.inst-page--home .inst-nav-toggle span {
    background: #f7faff !important;
}

.inst-page--home .inst-header.is-scrolled .inst-nav-toggle span,
body.inst-page--home.ga-lp-header-scrolled .inst-nav-toggle span {
    background: var(--mock-text) !important;
}

.inst-page--home .inst-marca {
    flex-shrink: 0;
}

.inst-page--home .inst-marca .marca-gestor-adv__img--logo {
    height: 52px !important;
    max-width: 260px !important;
}

.inst-page--home .inst-header.is-scrolled .inst-marca .marca-gestor-adv__img--logo,
body.inst-page--home.ga-lp-header-scrolled .inst-marca .marca-gestor-adv__img--logo {
    height: 48px !important;
    max-width: 240px !important;
}

@media (max-width: 980px) {
    .inst-page--home .inst-nav-toggle {
        display: flex !important;
    }

    .inst-page--home .inst-nav-links {
        position: fixed !important;
        top: calc(var(--home-header-inset-y, 12px) + var(--inst-header-h) + 8px) !important;
        left: 12px !important;
        right: 12px !important;
        max-width: none !important;
        margin-inline: auto !important;
        background: rgba(7, 21, 37, 0.96) !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 20px 24px 28px !important;
        gap: 20px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 16px !important;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35) !important;
        display: none !important;
        max-height: calc(100dvh - var(--inst-header-h) - 40px);
        overflow-y: auto;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .inst-page--home .inst-header.is-scrolled .inst-nav-links,
    body.inst-page--home.ga-lp-header-scrolled .inst-nav-links {
        background: rgba(255, 255, 255, 0.98) !important;
        border-color: var(--mock-border) !important;
        box-shadow: var(--mock-shadow) !important;
    }

    .inst-page--home .inst-header.is-scrolled .inst-nav-links__main a,
    body.inst-page--home.ga-lp-header-scrolled .inst-nav-links__main a {
        color: var(--mock-muted) !important;
    }

    .inst-page--home .inst-nav-links.aberto {
        display: flex !important;
    }

    .inst-page--home .inst-nav-links__main {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 4px !important;
        width: 100%;
    }

    .inst-page--home .inst-nav-links__main a:not(.botao),
    .inst-page--home .inst-nav-mais,
    .inst-page--home .inst-nav-mais__btn {
        width: 100% !important;
        box-sizing: border-box;
    }

    .inst-page--home .inst-nav-links__main a:not(.botao),
    .inst-page--home .inst-nav-mais__btn {
        padding: 12px 16px !important;
        border-radius: 12px !important;
        justify-content: flex-start;
        text-align: left;
    }

    .inst-page--home .inst-nav-links__acoes {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
        width: 100%;
    }

    .inst-page--home .inst-nav-login,
    .inst-page--home .inst-nav-cta {
        text-align: center;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
        margin: 0 !important;
    }
}

/* --- Utilitários ---------------------------------------------------------- */
.ga-mock-eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 0 16px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(31, 111, 255, 0.16);
    color: #7eb0ff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ga-mock-eyebrow--accent {
    background: rgba(31, 111, 255, 0.1);
    color: var(--mock-blue);
}

.ga-mock-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ga-mock-btn--lg {
    min-height: 52px;
    padding: 0 24px;
    font-size: 1rem;
}

.ga-mock-btn--block {
    width: 100%;
}

.ga-mock-btn--primary {
    background: var(--mock-blue);
    color: #fff;
    box-shadow: 0 10px 24px rgba(31, 111, 255, 0.35);
}

.ga-mock-btn--primary:hover {
    background: var(--mock-blue-hover);
    color: #fff;
    transform: translateY(-1px);
}

.ga-mock-btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.ga-mock-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

.ga-mock-btn__play {
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
}

.ga-mock-checks {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    gap: 12px;
}

.ga-mock-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(247, 250, 255, 0.92);
    font-size: 0.98rem;
    font-weight: 500;
}

.ga-mock-checks__icon {
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--mock-blue);
    color: #fff;
    flex-shrink: 0;
}

.ga-mock-checks--dark li {
    color: var(--mock-text);
}

.ga-mock-trust {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 18px;
}

.ga-mock-trust li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(247, 250, 255, 0.7);
    font-size: 0.86rem;
    font-weight: 500;
    line-height: 1.2;
}

.ga-mock-trust li > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: inherit;
}

.ga-mock-trust li > span svg {
    display: block;
    width: 16px;
    height: 16px;
}

.ga-mock-trust--center {
    justify-content: center;
    margin-top: 36px;
}

.ga-mock-trust--center li {
    color: var(--mock-muted);
}

/* --- Hero ----------------------------------------------------------------- */
.ga-mock-hero {
    position: relative;
    z-index: 2;
    padding: calc(var(--home-header-inset-y) + var(--inst-header-h) + 48px) 0 72px;
    background:
        radial-gradient(ellipse 90% 55% at 50% -10%, rgba(31, 111, 255, 0.28), transparent 55%),
        radial-gradient(ellipse 70% 60% at 85% 35%, rgba(31, 111, 255, 0.22), transparent 60%),
        linear-gradient(165deg, #0a1a2e 0%, #0c2440 42%, #0e2c4e 100%);
    color: #fff;
    overflow: hidden;
    border-radius: 0 0 56px 56px;
    box-shadow:
        0 28px 64px rgba(7, 21, 37, 0.28),
        0 12px 28px rgba(7, 21, 37, 0.14),
        0 2px 8px rgba(7, 21, 37, 0.08);
    margin-bottom: 0;
}

.ga-mock-hero__glow {
    position: absolute;
    inset: 8% -8% -18% 38%;
    width: auto;
    height: auto;
    background: radial-gradient(
        ellipse 75% 65% at 60% 45%,
        rgba(31, 111, 255, 0.2),
        rgba(31, 111, 255, 0.06) 45%,
        transparent 72%
    );
    pointer-events: none;
    z-index: 0;
}

.ga-mock-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 48px;
    align-items: center;
}

.ga-mock-hero__title {
    margin: 0 0 18px;
    font-size: clamp(2.35rem, 4.2vw, 3.5rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
}

.ga-mock-hero__title span {
    color: #4d9bff;
}

.ga-mock-hero__lead {
    margin: 0 0 22px;
    max-width: 34rem;
    color: rgba(247, 250, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.65;
}

.ga-mock-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ga-mock-browser {
    background: #101c2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.28),
        0 6px 16px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.04);
    transform: perspective(1200px) rotateY(-3deg) rotateX(1.5deg);
    animation: ga-mock-float 5.5s ease-in-out infinite;
}

.ga-mock-hero__visual {
    position: relative;
    isolation: isolate;
}

/* Glow suave atrás do mockup — evita faixa horizontal da box-shadow */
.ga-mock-hero__visual::before {
    content: "";
    position: absolute;
    inset: 8% -6% -4% 6%;
    border-radius: 24px;
    background: radial-gradient(
        ellipse 70% 60% at 50% 45%,
        rgba(0, 0, 0, 0.28),
        transparent 70%
    );
    z-index: -1;
    pointer-events: none;
}

.ga-mock-browser__bar {
    display: flex;
    gap: 6px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ga-mock-browser__bar span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #3a4a63;
}

.ga-mock-browser__bar span:nth-child(1) { background: #ff5f57; }
.ga-mock-browser__bar span:nth-child(2) { background: #febc2e; }
.ga-mock-browser__bar span:nth-child(3) { background: #28c840; }

.ga-mock-browser__screen {
    margin: 0;
    position: relative;
    background: #0b1524;
}

.ga-mock-browser__img,
.ga-mock-browser__video {
    display: block;
    width: 100%;
    height: auto;
}

.ga-mock-browser--video {
    /* Vídeo interativo: sem flutuação 3D que atrapalha o clique/play */
    transform: none;
    animation: none;
}

.ga-mock-browser__poster,
.ga-mock-browser__video {
    width: 100%;
    height: auto;
    max-height: min(62vh, 520px);
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center center;
    background: #0b1524;
}

.ga-mock-browser__poster {
    display: block;
}

.ga-mock-browser__screen:has(#ga-hero-video) .ga-mock-browser__poster {
    display: none;
}

.ga-mock-browser__screen.is-playing .ga-mock-video-play {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.ga-mock-video-play {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0;
    border: 0;
    background: rgba(7, 21, 37, 0.28);
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease, background 0.2s ease;
}

.ga-mock-video-play:hover,
.ga-mock-video-play:focus-visible {
    background: rgba(7, 21, 37, 0.4);
    outline: none;
}

.ga-mock-video-play__icon {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border-radius: 999px;
    background: var(--mock-blue, #1f6fff);
    color: #fff;
    box-shadow:
        0 12px 28px rgba(31, 111, 255, 0.45),
        0 0 0 10px rgba(31, 111, 255, 0.18);
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.ga-mock-video-play__icon svg {
    margin-left: 3px;
}

.ga-mock-video-play:hover .ga-mock-video-play__icon,
.ga-mock-video-play:focus-visible .ga-mock-video-play__icon {
    background: var(--mock-blue-hover, #1557d6);
    transform: scale(1.06);
    box-shadow:
        0 14px 32px rgba(31, 111, 255, 0.55),
        0 0 0 12px rgba(31, 111, 255, 0.22);
}

@media (max-width: 720px) {
    .ga-mock-video-play__icon {
        width: 64px;
        height: 64px;
    }

    .ga-mock-browser__poster,
    .ga-mock-browser__video {
        max-height: min(48vh, 360px);
    }
}

/* Modal fullscreen do vídeo da home — acima do header (z-index 100 / 100000) */
.ga-video-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    z-index: 200000 !important;
    display: grid;
    place-items: center;
    padding: clamp(16px, 4vw, 40px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.ga-video-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ga-video-modal[hidden] {
    display: none !important;
}

.ga-video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 12, 22, 0.78);
    cursor: pointer;
}

.ga-video-modal__panel {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100vw - 32px));
    max-height: min(86vh, 820px);
    border-radius: 18px;
    overflow: hidden;
    background: #0b1524;
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(255, 255, 255, 0.06);
    transform: translateY(10px) scale(0.98);
    transition: transform 0.24s ease;
}

.ga-video-modal.is-open .ga-video-modal__panel {
    transform: none;
}

.ga-video-modal__video,
.ga-video-modal .ga-mock-browser__video {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(86vh, 820px);
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center center;
    background: #0b1524;
    border-radius: 0;
}

.ga-video-modal__close {
    position: absolute;
    top: max(12px, env(safe-area-inset-top, 0px));
    right: max(12px, env(safe-area-inset-right, 0px));
    z-index: 2;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background 0.18s ease, transform 0.18s ease;
}

.ga-video-modal__close:hover,
.ga-video-modal__close:focus-visible {
    background: rgba(255, 255, 255, 0.28);
    outline: none;
    transform: scale(1.05);
}

html.ga-video-modal-open,
body.ga-video-modal-open {
    overflow: hidden !important;
}

body.ga-video-modal-open {
    position: fixed !important;
    left: 0;
    right: 0;
    width: 100%;
}

body.ga-video-modal-open > .inst-header,
body.ga-video-modal-open > .ga-lp-topbar,
body.ga-video-modal-open .inst-header--home {
    visibility: hidden !important;
    pointer-events: none !important;
}

@media (max-width: 640px) {
    .ga-video-modal {
        padding: 12px;
        align-items: center;
    }

    .ga-video-modal__panel {
        width: calc(100vw - 20px);
        border-radius: 14px;
        max-height: min(78vh, 640px);
    }

    .ga-video-modal__video,
    .ga-video-modal .ga-mock-browser__video {
        max-height: min(78vh, 640px);
    }

    .ga-video-modal__close {
        top: max(8px, env(safe-area-inset-top, 0px));
        right: max(8px, env(safe-area-inset-right, 0px));
        width: 40px;
        height: 40px;
    }
}

@keyframes ga-mock-float {
    0%, 100% { transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) translateY(0); }
    50% { transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
    .ga-mock-browser {
        animation: none;
        transform: none;
    }
}

/* --- Logos / social proof ------------------------------------------------- */
.ga-mock-logos {
    position: relative;
    z-index: 1;
    padding: 36px 0 32px;
    background: #fff;
    border-bottom: none;
    margin-top: 0;
}

.ga-mock-logos__title {
    margin: 0 0 20px;
    text-align: center;
    color: var(--mock-blue, #1f6fff);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.35;
}

.ga-mock-logos__row {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
}

.ga-mock-logos__item {
    color: #94a3b8;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    opacity: 0.85;
}

/* --- Sections ------------------------------------------------------------- */
.ga-mock-section {
    padding: 88px 0;
    background: #fff;
}

.ga-mock-section--soft {
    background: var(--mock-bg);
}

.ga-mock-section__header {
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
}

.ga-mock-section__header h2 {
    margin: 0 0 12px;
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--mock-text);
}

.ga-mock-section__header p {
    margin: 0;
    color: var(--mock-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* --- Features grid -------------------------------------------------------- */
.ga-mock-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.ga-mock-feature {
    background: var(--mock-card);
    border: 1px solid var(--mock-border);
    border-radius: var(--mock-radius-lg);
    padding: 24px 22px;
    box-shadow: var(--mock-shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.ga-mock-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10, 26, 46, 0.12);
}

.ga-mock-feature__icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 12px;
    background: rgba(31, 111, 255, 0.1);
    color: var(--mock-blue);
    overflow: hidden;
    isolation: isolate;
}

.ga-mock-feature__icon svg {
    display: block;
    flex-shrink: 0;
}

.ga-mock-feature__icon--whatsapp {
    color: #1f6fff;
}

.ga-mock-feature__icon--whatsapp svg {
    width: 26px;
    height: 26px;
}

.ga-mock-feature h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    color: var(--mock-text);
}

.ga-mock-feature p {
    margin: 0;
    color: var(--mock-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* --- Split controle ------------------------------------------------------- */
.ga-mock-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
    overflow: hidden;
}

.ga-mock-split__copy,
.ga-mock-split__media {
    min-width: 0;
}

.ga-mock-split__copy h2 {
    margin: 0 0 16px;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--mock-text);
}

.ga-mock-split__copy h2 span {
    color: var(--mock-blue);
}

.ga-mock-split__lead {
    margin: 0 0 22px;
    color: var(--mock-muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.ga-mock-lifestyle {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(10, 26, 46, 0.16);
    background: #dbe7f5;
}

.ga-mock-lifestyle__img {
    display: block;
    width: 100%;
    height: auto;
}

/* --- Metrics -------------------------------------------------------------- */
.ga-mock-metrics {
    padding: 56px 0;
    background: #fff;
    border-top: 1px solid var(--mock-border);
    border-bottom: 1px solid var(--mock-border);
}

.ga-mock-metrics__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.ga-mock-metric {
    text-align: center;
    padding: 8px 12px;
}

.ga-mock-metric__icon {
    display: inline-flex;
    color: var(--mock-blue);
    margin-bottom: 10px;
}

.ga-mock-metric__valor {
    margin: 0 0 4px;
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--mock-text);
}

.ga-mock-metric__label {
    margin: 0;
    color: var(--mock-muted);
    font-size: 0.92rem;
}

/* --- Testimonials --------------------------------------------------------- */
.ga-mock-testimonials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.ga-mock-testimonial {
    background: var(--mock-card);
    border: 1px solid var(--mock-border);
    border-radius: var(--mock-radius-lg);
    padding: 26px 24px;
    box-shadow: var(--mock-shadow);
}

.ga-mock-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
}

.ga-mock-testimonial__texto {
    margin: 0 0 20px;
    color: var(--mock-text);
    font-size: 0.98rem;
    line-height: 1.6;
    font-style: italic;
}

.ga-mock-testimonial__footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ga-mock-testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.ga-mock-testimonial__footer strong {
    display: block;
    color: var(--mock-text);
    font-size: 0.92rem;
}

.ga-mock-testimonial__footer span {
    display: block;
    color: var(--mock-muted);
    font-size: 0.82rem;
}

/* --- Planos (reusa cards existentes, visual mock) ------------------------- */
.ga-mock-planos .inst-billing-toggle {
    margin: 0 auto 32px;
}

.ga-mock-planos .inst-precos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.ga-mock-planos .inst-plano {
    background: #fff;
    border: 1px solid var(--mock-border);
    border-radius: 16px;
    box-shadow: var(--mock-shadow);
    padding: 28px 24px 24px;
    position: relative;
}

.ga-mock-planos .inst-plano.destaque {
    border-color: var(--mock-blue);
    box-shadow: 0 16px 44px rgba(31, 111, 255, 0.18);
    transform: translateY(-6px);
}

.ga-mock-planos .inst-plano-tag {
    background: var(--mock-blue);
    color: #fff;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ga-mock-planos .inst-plano .botao-primario {
    background: var(--mock-blue);
    border-color: var(--mock-blue);
}

.ga-mock-planos .inst-plano.destaque .botao-primario {
    background: var(--mock-blue);
    border-color: var(--mock-blue);
    box-shadow: 0 10px 22px rgba(31, 111, 255, 0.3);
}

.ga-mock-planos .inst-plano-lista--features {
    margin-top: 7px;
    padding-top: 0;
    border-top: none;
    min-height: 0;
}

/* --- FAQ + CTA ------------------------------------------------------------ */
.ga-mock-faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 28px;
    align-items: start;
    overflow: hidden;
}

.ga-mock-faq h2 {
    margin: 0 0 24px;
    font-size: clamp(1.6rem, 2.6vw, 2rem);
    color: var(--mock-text);
}

.ga-mock-accordion {
    display: grid;
    gap: 10px;
}

.ga-mock-accordion__item {
    background: #fff;
    border: 1px solid var(--mock-border);
    border-radius: 12px;
    overflow: hidden;
}

.ga-mock-accordion__item summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 18px;
    font-weight: 650;
    color: var(--mock-text);
    position: relative;
    padding-right: 42px;
}

.ga-mock-accordion__item summary::-webkit-details-marker {
    display: none;
}

.ga-mock-accordion__item summary::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--mock-blue);
    font-size: 1.25rem;
    font-weight: 600;
}

.ga-mock-accordion__item[open] summary::after {
    content: '−';
}

.ga-mock-accordion__body {
    padding: 0 18px 16px;
}

.ga-mock-accordion__body p {
    margin: 0;
    color: var(--mock-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.ga-mock-cta-card {
    background:
        radial-gradient(ellipse 80% 60% at 80% 0%, rgba(31, 111, 255, 0.35), transparent 55%),
        linear-gradient(165deg, #071525 0%, #0c2440 100%);
    color: #fff;
    border-radius: 18px;
    padding: 36px 28px;
    box-shadow: 0 20px 50px rgba(7, 21, 37, 0.28);
}

.ga-mock-cta-card__icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(31, 111, 255, 0.2);
    color: #7eb0ff;
    margin-bottom: 18px;
}

.ga-mock-cta-card h2 {
    margin: 0 0 12px;
    font-size: 1.55rem;
    line-height: 1.25;
    color: #fff;
}

.ga-mock-cta-card p {
    margin: 0 0 24px;
    color: rgba(247, 250, 255, 0.75);
    line-height: 1.6;
}

/* --- Footer --------------------------------------------------------------- */
.ga-mock-footer {
    background: #0b2a52;
    color: rgba(247, 250, 255, 0.78);
    padding-top: 56px;
}

.ga-mock-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 40px;
}

.ga-mock-footer__brand p {
    margin: 14px 0 0;
    max-width: 280px;
    line-height: 1.55;
    font-size: 0.92rem;
}

.ga-mock-footer h4 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ga-mock-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ga-mock-footer li + li {
    margin-top: 8px;
}

.ga-mock-footer a {
    color: rgba(247, 250, 255, 0.72);
    text-decoration: none;
    font-size: 0.92rem;
}

.ga-mock-footer a:hover {
    color: #fff;
}

.ga-mock-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ga-mock-footer__bottom p {
    margin: 0;
    font-size: 0.86rem;
    color: rgba(247, 250, 255, 0.55);
}

.ga-mock-footer__social {
    display: flex;
    gap: 12px;
}

.ga-mock-footer__social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.ga-mock-footer__social a:hover {
    background: rgba(255, 255, 255, 0.16);
}

/* --- Entrada do hero ------------------------------------------------------ */
.ga-enter {
    opacity: 0;
    animation: ga-enter-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: calc(var(--ga-enter-delay, 0) * 90ms + 80ms);
    will-change: opacity, transform, filter;
}

.ga-enter--visual {
    animation-name: ga-enter-rise;
}

.ga-enter--soft {
    animation-name: ga-enter-fade;
}

@keyframes ga-enter-up {
    from {
        opacity: 0;
        transform: translateY(28px);
        filter: blur(6px);
    }
    to {
        opacity: 1;
        transform: none;
        filter: blur(0);
    }
}

@keyframes ga-enter-rise {
    from {
        opacity: 0;
        transform: translateY(36px) scale(0.96);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: none;
        filter: blur(0);
    }
}

@keyframes ga-enter-fade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* --- Reveal --------------------------------------------------------------- */
[data-ga-reveal] {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
    filter: blur(4px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: calc(var(--ga-reveal-delay, 0) * 90ms);
    will-change: opacity, transform, filter;
}

[data-ga-reveal="left"] {
    transform: translateX(-28px) scale(0.985);
}

[data-ga-reveal="right"] {
    transform: translateX(28px) scale(0.985);
}

[data-ga-reveal].is-revealed {
    opacity: 1;
    transform: none;
    filter: blur(0);
}

/* Mobile: sem translateX — evita conteúdo “solto” / scroll horizontal */
@media (max-width: 900px) {
    [data-ga-reveal="left"],
    [data-ga-reveal="right"] {
        transform: translateY(24px) scale(0.985);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ga-enter,
    [data-ga-reveal] {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        animation: none !important;
        transition: none !important;
    }
}

/* --- Responsivo ----------------------------------------------------------- */
@media (max-width: 1100px) {
    .ga-mock-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ga-mock-planos .inst-precos {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-inline: auto;
    }

    .ga-mock-planos .inst-plano.destaque {
        transform: none;
    }
}

@media (max-width: 900px) {
    .ga-mock-hero {
        padding: calc(var(--home-header-inset-y) + var(--inst-header-h) + 28px) 0 48px;
        border-radius: 0 0 36px 36px;
        box-shadow:
            0 20px 48px rgba(7, 21, 37, 0.26),
            0 8px 20px rgba(7, 21, 37, 0.12);
    }

    .ga-mock-hero__grid,
    .ga-mock-split,
    .ga-mock-faq-grid,
    .ga-mock-testimonials,
    .ga-mock-footer__grid {
        grid-template-columns: 1fr;
    }

    .ga-mock-metrics__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 16px;
    }

    .ga-mock-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .ga-mock-hero .ga-mock-trust {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px 8px;
        width: 100%;
        margin-top: 18px;
    }

    .ga-mock-hero .ga-mock-trust li {
        justify-content: center;
        gap: 6px;
        font-size: 0.78rem;
        text-align: center;
        white-space: nowrap;
    }

    .ga-mock-browser {
        transform: none;
        animation: none;
        max-width: 640px;
        margin-inline: auto;
    }

    .ga-mock-section {
        padding: 64px 0;
    }

    .ga-mock-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .ga-mock-features {
        grid-template-columns: 1fr;
    }

    .ga-mock-metrics__grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px 12px;
    }

    .ga-mock-hero__title {
        font-size: 2.1rem;
    }

    .ga-mock-hero .ga-mock-trust {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-items: center;
        gap: 8px 6px;
        max-width: none;
        margin-inline: 0;
        width: 100%;
    }

    .ga-mock-hero .ga-mock-trust li {
        justify-content: center;
        text-align: center;
        white-space: nowrap;
        font-size: 0.72rem;
        gap: 5px;
    }

    .ga-mock-trust--center {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-items: center;
        gap: 8px 6px;
    }
}
