:root {
    --lp-color-primary: #0A2A52;
    --lp-color-secondary: #9EE447;
    --lp-color-text: #0E2240;
    --lp-max-width: 1180px;
    --lp-scroll-offset: 96px;
    --lp-scroll-offset-mobile: 132px;
}

body.landing-shell {
    font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

body.landing-shell #topo,
body.landing-shell #diferencial,
body.landing-shell #como-funciona,
body.landing-shell #planos,
body.landing-shell #faq {
    scroll-margin-top: var(--lp-scroll-offset);
}

.landing-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10, 42, 82, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.nav {
    max-width: var(--lp-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.5rem;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
}

.logo-icon {
    width: 34px;
    height: 34px;
    background: center/contain no-repeat;
    border-radius: 0;
    flex-shrink: 0;
}

.logo-text {
    font-weight: 600;
    font-size: 1.05rem;
}

.menu {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.menu a {
    font-size: 0.9rem;
    color: #fff;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.menu__link {
    display: inline-flex;
}

.menu a:hover {
    opacity: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
}

.btn-primary {
    background: #fff;
    color: var(--lp-color-primary);
    padding: 0.6rem 1.35rem;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.btn-primary.btn-primary--nav {
    color: var(--lp-color-primary);
    background: #fff;
}

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

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 0.45rem 1.2rem;
}

.landing-footer {
    margin-top: 3rem;
    padding: 0.9rem 1.5rem;
    background: #0A2A52;
    color: #fff;
}

.landing-footer__inner {
    max-width: var(--lp-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.3rem;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    opacity: 0.75;
}

.footer-links a {
    color: inherit;
    text-decoration: none;
}

.landing-footer__meta {
    font-size: 0.75rem;
    opacity: 0.55;
}

@media (max-width: 992px) {
    .landing-footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 540px) {
    .nav {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 0.75rem;
    }

    .menu {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        margin-left: auto;
    }

    .menu__link {
        display: none;
    }

    .menu__cta {
        display: inline-flex;
        padding: 0.45rem 1.2rem;
        font-size: 0.85rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
    }

    body.landing-shell #topo,
    body.landing-shell #diferencial,
    body.landing-shell #como-funciona,
    body.landing-shell #planos,
    body.landing-shell #faq {
        scroll-margin-top: var(--lp-scroll-offset-mobile);
    }
}
