:root {
    --lp-ink: #263238;
    --lp-muted: #6c757d;
    --lp-sky: #31a8ff;
    --lp-sky-dark: #1f8ade;
    --lp-mint: #35c48c;
    --lp-coral: #ff6b6b;
    --lp-sun: #ffd166;
    --lp-lilac: #8d7cf6;
    --lp-paper: #fffdf8;
    --lp-line: rgba(38, 50, 56, .1);
    --lp-bg: #eef4f8;
    --lp-bg-soft: #f7fbff;
}

* {
    box-sizing: border-box;
}

body.lp-body {
    margin: 0;
    background: var(--lp-bg);
    color: var(--lp-ink);
    font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

.lp-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 253, 248, .92);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--lp-line);
}

.lp-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 24px;
    max-width: 1180px;
    margin: 0 auto;
}

.lp-brand {
    display: flex;
    align-items: center;
}

.lp-brand-mark {
    height: 36px;
    width: auto;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 15px;
    font-weight: 700;
    color: var(--lp-muted);
}

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

.lp-nav-links a:hover {
    color: var(--lp-sky);
}

.lp-nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Buttons */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    text-decoration: none;
    border-radius: 16px;
    white-space: nowrap;
    border: 2px solid transparent;
    cursor: pointer;
}

.lp-btn-sm {
    font-size: 15px;
    padding: 11px 20px;
}

.lp-btn-lg {
    font-size: 18px;
    padding: 17px 30px;
    border-radius: 18px;
}

.lp-btn-primary {
    color: #fff;
    background: var(--lp-sky);
    box-shadow: 0 10px 24px rgba(49, 168, 255, .32);
}

.lp-btn-primary:hover {
    background: var(--lp-sky-dark);
}

.lp-btn-ghost {
    color: var(--lp-ink);
    background: var(--lp-paper);
    border-color: #dfe6ea;
}

.lp-btn-ghost:hover {
    border-color: var(--lp-sky);
    color: var(--lp-sky-dark);
}

.lp-link {
    font-size: 16px;
    font-weight: 800;
    color: var(--lp-ink);
    text-decoration: none;
}

.lp-link:hover {
    color: var(--lp-sky);
}

.lp-btn-white {
    color: var(--lp-sky);
    background: var(--lp-paper);
}

.lp-btn-white:hover {
    background: #fff;
}

/* Section shells */
.lp-section {
    padding: clamp(56px, 8vw, 96px) 0;
}

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

.lp-eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--lp-sky-dark);
    background: #e8f5ff;
    padding: 9px 16px;
    border-radius: 999px;
}

.lp-eyebrow-mint {
    color: #2a9e73;
    background: #eefaf4;
}

.lp-eyebrow-sun {
    color: #d19b12;
    background: #fff7e3;
}

.lp-section-head {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    text-align: center;
    margin-bottom: 48px;
}

.lp-section-head h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
    letter-spacing: -0.03em;
}

.lp-section-head p {
    margin: 0;
    max-width: 620px;
    font-size: 18px;
    line-height: 1.55;
    color: var(--lp-muted);
}

/* Hero */
.lp-hero-row {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 48px;
    align-items: center;
    padding: clamp(40px, 6vw, 80px) 0 clamp(48px, 7vw, 88px);
}

.lp-hero-copy {
    display: flex;
    flex-direction: column;
    gap: 26px;
    max-width: 620px;
}

.lp-hero-copy h1 {
    margin: 0;
    font-size: clamp(34px, 4.4vw, 62px);
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.lp-hero-copy > p {
    margin: 0;
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: 1.55;
    color: var(--lp-muted);
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.lp-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    font-size: 14px;
    font-weight: 700;
    color: var(--lp-muted);
}

/* Phone mockup */
.lp-phone-frame {
    position: relative;
    justify-self: center;
    width: 100%;
    max-width: 320px;
}

.lp-phone-glow {
    position: absolute;
    inset: -30px -26px;
    background: #e8f5ff;
    border-radius: 44px;
    z-index: 0;
}

.lp-phone {
    position: relative;
    z-index: 1;
    background: var(--lp-ink);
    border-radius: 40px;
    padding: 11px;
    box-shadow: 0 26px 54px rgba(38, 50, 56, .22);
}

.lp-phone-screen {
    background: var(--lp-paper);
    border-radius: 30px;
    overflow: hidden;
    padding: 16px 18px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-phone-status {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 800;
    color: var(--lp-ink);
    letter-spacing: .04em;
    margin-bottom: -4px;
}

.lp-phone-kid {
    display: flex;
    align-items: center;
    gap: 11px;
}

.lp-phone-avatar {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--lp-sun);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 900;
    color: #8a6a12;
    flex-shrink: 0;
}

.lp-phone-kid strong {
    display: block;
    font-size: 16px;
    font-weight: 900;
}

.lp-phone-kid span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--lp-muted);
}

.lp-phone-balance {
    background: var(--lp-sky);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 12px 24px rgba(49, 168, 255, .3);
}

.lp-phone-balance small {
    font-size: 12px;
    font-weight: 800;
    color: #d6ecff;
}

.lp-phone-balance strong {
    font-size: 34px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
}

.lp-phone-balance-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-top: 6px;
}

.lp-phone-pill {
    font-size: 12px;
    font-weight: 800;
    color: #0f6ba8;
    background: #b8e2ff;
    padding: 6px 11px;
    border-radius: 999px;
    white-space: nowrap;
}

.lp-phone-stats {
    display: flex;
    gap: 10px;
}

.lp-phone-stat {
    flex: 1;
    border-radius: 18px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.lp-phone-stat.mint {
    background: #eefaf4;
}

.lp-phone-stat.coral {
    background: #fff2f2;
}

.lp-phone-stat small {
    font-size: 12px;
    font-weight: 800;
    color: var(--lp-muted);
}

.lp-phone-stat strong {
    font-size: 18px;
    font-weight: 900;
}

.lp-phone-stat.mint strong {
    color: var(--lp-mint);
}

.lp-phone-stat.coral strong {
    color: var(--lp-coral);
}

.lp-phone-goal {
    background: #fff;
    border: 1px solid #f0e9dc;
    border-radius: 20px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-phone-goal-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 15px;
    font-weight: 900;
}

.lp-phone-goal-head span {
    font-size: 13px;
    font-weight: 800;
    color: var(--lp-mint);
}

.lp-bar {
    height: 13px;
    border-radius: 999px;
    background: #eef2f4;
    overflow: hidden;
}

.lp-bar-fill {
    height: 100%;
    border-radius: 999px;
    background: var(--lp-mint);
}

.lp-phone-goal-foot {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    color: var(--lp-muted);
}

/* Feature cards */
.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-card {
    background: #fff;
    border-radius: 22px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 14px 32px rgba(38, 50, 56, .07);
}

.lp-card-badge {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
}

.lp-card-badge.sky {
    background: #e8f5ff;
    color: var(--lp-sky);
}

.lp-card-badge.mint {
    background: #eefaf4;
    color: var(--lp-mint);
}

.lp-card-badge.sun {
    background: #fff7e3;
    color: #d19b12;
}

.lp-card h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
}

.lp-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--lp-muted);
}

/* Two-column feature blocks */
.lp-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.lp-feature-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lp-feature-copy h2 {
    margin: 0;
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.lp-feature-copy > p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: var(--lp-muted);
}

.lp-feature-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    font-size: 16px;
    font-weight: 700;
    padding-top: 6px;
}

.lp-combo-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-combo-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-radius: 18px;
    padding: 18px 20px;
}

.lp-combo-item.mint { background: #eefaf4; }
.lp-combo-item.coral { background: #fff2f2; }
.lp-combo-item.lilac { background: #f3f0ff; }

.lp-combo-item strong {
    display: block;
    font-size: 17px;
    font-weight: 900;
}

.lp-combo-item span.lp-combo-sub {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--lp-muted);
}

.lp-combo-value {
    font-size: 18px;
    font-weight: 900;
    white-space: nowrap;
}

.lp-combo-value.mint { color: var(--lp-mint); }
.lp-combo-value.coral { color: var(--lp-coral); }
.lp-combo-value.lilac { color: var(--lp-lilac); }

.lp-goal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.lp-goal-main {
    grid-column: span 2;
}

.lp-goal-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--lp-lilac);
}

.lp-goal-badge span {
    width: 16px;
    height: 16px;
    border-radius: 5px;
    background: #fff;
}

.lp-goal-card small {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--lp-muted);
    margin-top: 4px;
}

/* Web/mobile grid */
.lp-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-panel {
    border-radius: 22px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-panel.sky { background: #e8f5ff; }
.lp-panel.mint { background: #eefaf4; }
.lp-panel.lilac { background: #f3f0ff; }

.lp-panel h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
}

.lp-panel p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #4a5b62;
}

/* CTA band */
.lp-cta-band {
    background: var(--lp-sky);
    border-radius: 28px;
    padding: clamp(36px, 5vw, 64px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 22px 50px rgba(49, 168, 255, .3);
}

.lp-cta-band h2 {
    margin: 0 0 12px;
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.lp-cta-band p {
    margin: 0;
    font-size: 17px;
    color: #dcefff;
    line-height: 1.5;
}

.lp-cta-action {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.lp-cta-action small {
    font-size: 13px;
    font-weight: 700;
    color: #dcefff;
}

/* Footer */
.lp-footer {
    background: var(--lp-ink);
    padding: 56px 0 40px;
}

.lp-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.lp-footer-brand-mark {
    height: 42px;
    width: auto;
    display: block;
    margin-bottom: 14px;
}

.lp-footer-brand p {
    margin: 0;
    max-width: 300px;
    font-size: 14px;
    line-height: 1.6;
    color: #9aa8ae;
}

.lp-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #9aa8ae;
}

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

.lp-footer-links a:hover {
    color: #fffdf8;
}

.lp-footer-links strong {
    color: var(--lp-paper);
    font-weight: 900;
}

.lp-footer-base {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: 13px;
    color: #7c8a90;
}

/* Responsive */
@media (max-width: 900px) {
    .lp-nav-links,
    .lp-nav-actions .lp-link {
        display: none;
    }

    .lp-hero-row,
    .lp-feature {
        grid-template-columns: 1fr;
    }

    .lp-phone-frame {
        max-width: 300px;
        margin: 0 auto;
    }

    .lp-steps,
    .lp-panels {
        grid-template-columns: 1fr;
    }

    .lp-cta-band {
        flex-direction: column;
        text-align: center;
    }

    .lp-footer-row {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .lp-goal-grid {
        grid-template-columns: 1fr;
    }

    .lp-goal-main {
        grid-column: span 1;
    }

    .lp-hero-actions .lp-btn {
        width: 100%;
    }
}

/*
 * Animacoes leves: entrada no carregamento do hero, revelacao por secao
 * conforme a pagina rola (IntersectionObserver liga a classe is-visible),
 * e um pequeno hover nos cards. Tudo atras de .js-anim, que so o proprio
 * script coloca no <html> — sem JS, ou com prefers-reduced-motion, a pagina
 * fica exatamente como sem esta secao, sem nada escondido.
 */
@keyframes lp-entra {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lp-aparece {
    from { opacity: 0; }
    to { opacity: 1; }
}

.js-anim .lp-nav {
    animation: lp-aparece .5s ease both;
}

.js-anim .lp-hero-copy {
    animation: lp-entra .8s cubic-bezier(.16, .84, .44, 1) both;
}

.js-anim .lp-phone-frame {
    animation: lp-entra .8s cubic-bezier(.16, .84, .44, 1) .15s both;
}

.js-anim .lp-reveal {
    opacity: 0;
    transform: translateY(28px);
    /*
     * box-shadow entra aqui, nao so em .lp-card/.lp-panel: como esta regra
     * e mais especifica, ela venceria a cascata inteira pra quem for as
     * duas coisas ao mesmo tempo (reveal + card), deixando o hover sem
     * transicao nenhuma se box-shadow ficasse so na outra regra.
     */
    transition: opacity .7s cubic-bezier(.16, .84, .44, 1), transform .7s cubic-bezier(.16, .84, .44, 1), box-shadow .25s ease;
}

.js-anim .lp-reveal.lp-visivel {
    opacity: 1;
    transform: translateY(0);
}

.js-anim .lp-reveal-group > .lp-reveal:nth-child(2) { transition-delay: .09s; }
.js-anim .lp-reveal-group > .lp-reveal:nth-child(3) { transition-delay: .18s; }
.js-anim .lp-reveal-group > .lp-reveal:nth-child(4) { transition-delay: .27s; }

/*
 * O lift de hover usa so box-shadow, nunca transform: .lp-card e .lp-panel
 * tambem carregam .lp-reveal, e a entrada por scroll ja anima o transform
 * deles — disputar a mesma propriedade com timings diferentes é frágil.
 * .lp-combo-item nao entra em .lp-reveal individualmente, entao o
 * translateX no hover fica livre de conflito.
 */
.lp-card,
.lp-panel {
    transition: box-shadow .25s ease;
}

.lp-combo-item {
    transition: transform .25s ease;
}

.lp-card:hover {
    box-shadow: 0 22px 44px rgba(38, 50, 56, .13);
}

.lp-panel:hover {
    box-shadow: 0 16px 32px rgba(38, 50, 56, .1);
}

.lp-combo-item:hover {
    transform: translateX(2px);
}

@media (prefers-reduced-motion: reduce) {
    .js-anim .lp-nav,
    .js-anim .lp-hero-copy,
    .js-anim .lp-phone-frame {
        animation: none;
    }

    .js-anim .lp-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .lp-card,
    .lp-panel,
    .lp-combo-item {
        transition: none;
    }

    .lp-combo-item:hover {
        transform: none;
    }
}
