/* Abraco Digital - landing page (design proprio, independente do marketing.css
   generico). Tema claro, ilustrado, focado em creches/escolas infantis.
   Robenilson Rodrigues da Silva - Metamorph (https://metamorph.com.br/) */

:root {
    --lp-ink: #1E2A45;
    --lp-body: #5B6478;
    --lp-body-soft: #7A8399;
    --lp-bg: #FFFFFF;
    --lp-bg-soft: #F6F7FD;
    --lp-border: #EAE8F5;

    --lp-purple: #7B5FC4;
    --lp-purple-dark: #5F45A8;
    --lp-purple-soft: #EFEAFB;
    --lp-green: #1FAE73;
    --lp-green-dark: #128F5C;
    --lp-green-soft: #E3F7EE;
    --lp-pink: #F0629B;
    --lp-pink-soft: #FDEAF1;
    --lp-yellow: #FBB040;
    --lp-yellow-soft: #FFF4E0;
    --lp-blue: #2F8FE0;
    --lp-blue-soft: #E7F2FD;
    --lp-teal: #2BBFA0;
    --lp-teal-soft: #E3F7F2;

    --lp-shadow-sm: 0 6px 18px -10px rgba(30,42,69,.18);
    --lp-shadow-md: 0 20px 44px -18px rgba(30,42,69,.24);
    --lp-shadow-lg: 0 30px 70px -24px rgba(95,69,168,.35);
}

body.landing-page { background: var(--lp-bg); color: var(--lp-body); }
body.landing-page .footer-credit { background: #14102A; color: rgba(255,255,255,.5); margin: 0; padding: 18px 24px !important; }
body.landing-page .footer-credit a { color: rgba(255,255,255,.8); }

.lp-container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.lp-accent-purple { color: var(--lp-purple); }
.lp-accent-pink { color: var(--lp-pink); }
.lp-accent-green { color: var(--lp-green); }

/* ==================== Navegação ==================== */
.lp-nav {
    position: sticky; top: 0; z-index: 40;
    background: rgba(255,255,255,.7);
    border-bottom: 1px solid transparent;
    transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.lp-nav.is-scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-color: var(--lp-border); box-shadow: 0 8px 24px -20px rgba(30,42,69,.4); }
.lp-nav-inner { max-width: 1160px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; gap: 20px; }
.lp-brand { display: flex; align-items: center; margin-right: auto; }
.lp-brand-logo { height: 44px; width: auto; display: block; }
.lp-nav-links { display: none; align-items: center; gap: 26px; }
.lp-nav-links a { color: var(--lp-body); font-weight: 600; font-size: .92rem; text-decoration: none; padding: 6px 0; position: relative; }
.lp-nav-links a:hover { color: var(--lp-ink); text-decoration: none; }
.lp-nav-links a.is-active { color: var(--lp-purple); }
.lp-nav-links a.is-active::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 3px; border-radius: 3px;
    background: var(--lp-yellow);
}
.lp-nav-actions { display: none; align-items: center; gap: 10px; }
@media (min-width: 960px) {
    .lp-nav-links { display: flex; }
    .lp-nav-actions { display: flex; }
}
.lp-burger {
    display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer;
    padding: 10px; margin: -10px;
}
@media (min-width: 960px) { .lp-burger { display: none; } }
.lp-burger span { width: 22px; height: 2px; border-radius: 2px; background: var(--lp-ink); transition: transform .3s ease, opacity .3s ease; }
.lp-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-burger.is-open span:nth-child(2) { opacity: 0; }
.lp-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lp-mobile-overlay {
    position: fixed; inset: 0; z-index: 39;
    background: rgba(255,255,255,.98);
    display: flex; flex-direction: column; justify-content: center; gap: 22px;
    padding: 32px;
    opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.lp-mobile-overlay.is-open { opacity: 1; pointer-events: auto; }
.lp-mobile-overlay a { color: var(--lp-ink); font-size: 1.5rem; font-weight: 700; text-decoration: none; }
.lp-mobile-overlay .lp-mobile-cta { color: #fff; background: var(--lp-green); padding: 12px 22px; border-radius: 999px; text-align: center; font-size: 1.05rem; }
@media (min-width: 960px) { .lp-mobile-overlay { display: none; } }

/* ==================== Botões ==================== */
.lp-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 22px; border-radius: 999px; font-weight: 700; font-family: var(--font-display);
    font-size: .92rem; text-decoration: none; border: none; cursor: pointer;
    position: relative; overflow: hidden;
    transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease;
}
.lp-btn:hover { transform: translateY(-1px); text-decoration: none; }
.lp-btn:active { transform: scale(.96); }
.lp-btn-lg { padding: 15px 30px; font-size: 1.02rem; }
.lp-btn-primary { background: var(--lp-green); color: #fff; box-shadow: 0 10px 24px -10px rgba(31,174,115,.55); }
.lp-btn-primary:hover { background: var(--lp-green-dark); color: #fff; }
.lp-btn-yellow { background: var(--lp-yellow); color: #4A2E00; box-shadow: 0 10px 24px -10px rgba(251,176,64,.55); }
.lp-btn-yellow:hover { background: #EFA02C; color: #4A2E00; }
.lp-btn-ghost { background: transparent; color: var(--lp-ink); border: 1.5px solid var(--lp-border); }
.lp-btn-ghost:hover { border-color: var(--lp-purple); color: var(--lp-purple); }

/* ==================== Hero ==================== */
.lp-hero { position: relative; overflow: hidden; padding: 56px 0 40px; }
.lp-hero-decor { display: none; position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
@media (min-width: 960px) { .lp-hero-decor { display: block; } }
.lp-cloud { position: absolute; opacity: .8; animation: lp-drift 26s ease-in-out infinite; }
.lp-cloud.c1 { top: 8%; left: 4%; width: 90px; animation-duration: 22s; }
.lp-cloud.c2 { top: 4%; right: 8%; width: 70px; animation-duration: 30s; animation-delay: -6s; }
.lp-cloud.c3 { top: 42%; left: 46%; width: 60px; opacity: .55; animation-duration: 26s; animation-delay: -14s; }
@keyframes lp-drift {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(22px); }
}
.lp-star { position: absolute; animation: lp-twinkle 2.6s ease-in-out infinite; transform-origin: center; }
.lp-star.s1 { top: 18%; left: 2%; animation-delay: 0s; }
.lp-star.s2 { top: 10%; right: 34%; animation-delay: .6s; }
.lp-star.s3 { bottom: 12%; left: 40%; animation-delay: 1.2s; }
@keyframes lp-twinkle {
    0%, 100% { opacity: .4; transform: scale(.85) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.1) rotate(10deg); }
}

.lp-hero-grid { position: relative; z-index: 1; max-width: 1160px; margin: 0 auto; padding: 0 24px; display: grid; gap: 40px; }
@media (min-width: 960px) { .lp-hero-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 30px; } }

.lp-hero-copy h1 {
    font-size: clamp(1.9rem, 4vw, 2.6rem); line-height: 1.18; color: var(--lp-ink); margin: 0 0 18px;
}
.lp-hero-copy h1 .accent { color: var(--lp-purple); }
.lp-hero-copy > p { font-size: 1.05rem; line-height: 1.6; max-width: 480px; margin: 0 0 22px; }

.lp-trust-row { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-wrap: wrap; gap: 16px 22px; }
.lp-trust-row li { display: flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 600; color: var(--lp-ink); }
.lp-trust-row .lp-check-dot {
    width: 20px; height: 20px; border-radius: 50%; background: var(--lp-green-soft); color: var(--lp-green);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    animation: lp-check-pulse 2.4s ease-in-out infinite;
}
.lp-trust-row li:nth-child(2) .lp-check-dot { animation-delay: .3s; }
.lp-trust-row li:nth-child(3) .lp-check-dot { animation-delay: .6s; }
.lp-trust-row .lp-check-dot svg { width: 11px; height: 11px; }

.lp-hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.lp-hero-note { font-size: .85rem; color: var(--lp-body-soft); max-width: 220px; }
.lp-hero-note strong { color: var(--lp-purple); }

/* --- Visual do hero: blob + foto + mockup do painel --- */
.lp-hero-visual { position: relative; display: flex; justify-content: center; }
.lp-hero-visual-inner { position: relative; width: 100%; max-width: 480px; padding: 36px 8px 30px 14px; }
.lp-hero-visual-inner::before {
    content: ""; position: absolute; z-index: 0;
    top: -4%; left: 4%; right: -4%; bottom: -2%;
    background: linear-gradient(150deg, var(--lp-purple), var(--lp-purple-dark) 80%);
    border-radius: 42% 58% 56% 44% / 46% 42% 58% 54%;
}

.lp-hero-photo {
    position: absolute; z-index: 2; left: -2%; bottom: -14px; width: 44%; height: auto;
    filter: drop-shadow(0 18px 22px rgba(20,16,42,.35));
}

.lp-mockup-card {
    position: relative; z-index: 1; margin-left: auto; width: 60%; background: #fff; border-radius: 22px;
    box-shadow: var(--lp-shadow-lg);
    padding: 14px 14px 16px; transform: rotate(1.5deg);
    animation: lp-float-card 6s ease-in-out infinite;
}
@keyframes lp-float-card { 0%, 100% { transform: rotate(1.5deg) translateY(0); } 50% { transform: rotate(1.5deg) translateY(-8px); } }
.lp-mockup-header { display: flex; align-items: center; gap: 8px; padding-bottom: 10px; margin-bottom: 10px; border-bottom: 1px solid var(--lp-border); }
.lp-mockup-header img { width: 24px; height: 24px; border-radius: 7px; object-fit: cover; flex-shrink: 0; }
.lp-mockup-header strong { display: block; font-size: .72rem; color: var(--lp-ink); line-height: 1.25; }
.lp-mockup-header span { font-size: .62rem; color: var(--lp-body-soft); }
.lp-mockup-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; margin-bottom: 10px; }
.lp-mockup-stat { background: var(--lp-bg-soft); border-radius: 10px; padding: 7px 3px; text-align: center; }
.lp-mockup-stat strong { display: block; font-size: .82rem; color: var(--lp-ink); }
.lp-mockup-stat span { font-size: .52rem; color: var(--lp-body-soft); }
.lp-mockup-list-item {
    display: flex; align-items: center; justify-content: space-between; gap: 6px;
    padding: 7px 8px; border-radius: 9px; font-size: .64rem; color: var(--lp-ink); font-weight: 600;
}
.lp-mockup-list-item:nth-child(odd) { background: var(--lp-bg-soft); }
.lp-mockup-list-item time { font-size: .58rem; font-weight: 600; color: var(--lp-purple); }

.lp-hero-badge {
    position: absolute; z-index: 2; right: 2%; bottom: -6px; max-width: 155px;
    background: #fff; border-radius: 16px; padding: 10px 12px; box-shadow: var(--lp-shadow-md);
    font-size: .7rem; font-weight: 600; color: var(--lp-ink); line-height: 1.35;
    animation: lp-float-badge 5s ease-in-out infinite;
}
@keyframes lp-float-badge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(8px); } }
@media (max-width: 480px) {
    .lp-hero-visual-inner { max-width: 340px; }
    .lp-hero-badge { max-width: 130px; font-size: .64rem; padding: 8px 10px; }
}

/* ==================== Cabeçalho de seção ==================== */
.lp-section { padding: 80px 0; position: relative; }
.lp-section-alt { background: var(--lp-bg-soft); }
.lp-section-head { max-width: 640px; margin: 0 auto 46px; text-align: center; position: relative; }
.lp-section-head.is-left { margin: 0 0 24px; text-align: left; }
.lp-eyebrow {
    display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px; border-radius: 999px;
    font-weight: 700; font-size: .76rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px;
}
.lp-eyebrow-purple { background: var(--lp-purple-soft); color: var(--lp-purple); }
.lp-eyebrow-pink { background: var(--lp-pink-soft); color: var(--lp-pink); }
.lp-section-head h2 { font-size: clamp(1.6rem, 3vw, 2.15rem); color: var(--lp-ink); margin: 0; line-height: 1.25; }
.lp-scribble { position: absolute; top: -18px; right: calc(50% - 210px); width: 46px; height: 46px; color: var(--lp-teal); }
.lp-scribble path { stroke-dasharray: 120; stroke-dashoffset: 120; transition: stroke-dashoffset 1.1s ease; }
.lp-scribble.is-drawn path { stroke-dashoffset: 0; }
.lp-pencil { position: absolute; top: -6px; right: calc(50% - 260px); width: 34px; animation: lp-pencil-wiggle 3s ease-in-out infinite; }
@keyframes lp-pencil-wiggle { 0%, 100% { transform: rotate(-8deg); } 50% { transform: rotate(6deg); } }
@media (max-width: 720px) { .lp-scribble, .lp-pencil { display: none; } }

/* ==================== Recursos ==================== */
.lp-features-grid { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.lp-feature-card {
    background: #fff; border: 1px solid var(--lp-border); border-radius: 20px; padding: 26px 20px;
    box-shadow: var(--lp-shadow-sm); text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}
.lp-feature-card:hover { transform: translateY(-6px); box-shadow: var(--lp-shadow-md); }
.lp-feature-icon {
    width: 54px; height: 54px; border-radius: 16px; margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
}
.lp-feature-icon svg { width: 26px; height: 26px; }
.lp-feature-card h3 { font-size: 1rem; color: var(--lp-ink); margin: 0 0 6px; }
.lp-feature-card p { font-size: .86rem; line-height: 1.5; margin: 0; color: var(--lp-body); }

/* ==================== Por que escolher ==================== */
.lp-why-grid { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: grid; gap: 40px; align-items: center; }
@media (min-width: 960px) { .lp-why-grid { grid-template-columns: 1fr 1fr; } }
.lp-why-copy h2 { margin-bottom: 20px; }
.lp-check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.lp-check-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--lp-ink); font-size: .96rem; }
.lp-check-badge {
    width: 26px; height: 26px; border-radius: 50%; background: var(--lp-pink-soft); color: var(--lp-pink);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    animation: lp-check-pulse 2.4s ease-in-out infinite;
}
.lp-check-list li:nth-child(2) .lp-check-badge { animation-delay: .3s; }
.lp-check-list li:nth-child(3) .lp-check-badge { animation-delay: .6s; }
.lp-check-list li:nth-child(4) .lp-check-badge { animation-delay: .9s; }
.lp-check-list li:nth-child(5) .lp-check-badge { animation-delay: 1.2s; }
.lp-check-badge svg { width: 13px; height: 13px; }
@keyframes lp-check-pulse { 0%, 80%, 100% { transform: scale(1); } 40% { transform: scale(1.22); } }

.lp-why-visual { position: relative; display: flex; justify-content: center; }
.lp-why-photo-wrap { position: relative; width: 100%; max-width: 420px; }
.lp-why-photo-wrap::before {
    content: ""; position: absolute; inset: 6% 4%; z-index: 0; border-radius: 50%;
    background: radial-gradient(closest-side, var(--lp-purple-soft), transparent 78%);
}
.lp-why-photo { position: relative; z-index: 1; width: 100%; height: auto; display: block; filter: drop-shadow(0 20px 30px rgba(30,42,69,.18)); }
.lp-why-heart {
    position: absolute; z-index: 2; top: 4%; right: 6%;
    animation: lp-heartbeat 1.8s ease-in-out infinite;
}
@keyframes lp-heartbeat { 0%, 100% { transform: scale(1); } 25% { transform: scale(1.15); } 40% { transform: scale(1); } }
.lp-why-star { position: absolute; z-index: 2; bottom: 8%; left: 2%; }

/* ==================== Planos ==================== */
.lp-pricing-note {
    display: flex; align-items: center; gap: 8px; justify-content: center; margin: 0 auto 36px;
    max-width: 320px; background: var(--lp-yellow-soft); color: #8A5A00; font-weight: 700; font-size: .82rem;
    padding: 10px 18px; border-radius: 999px;
}
.lp-pricing-grid {
    max-width: 1160px; margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px;
}
.lp-plan-card {
    background: #fff; border: 2px solid var(--lp-border); border-radius: 22px; padding: 30px 24px;
    display: flex; flex-direction: column; box-shadow: var(--lp-shadow-sm);
    transition: transform .2s ease, box-shadow .2s ease;
}
.lp-plan-card:hover { transform: translateY(-4px); }
.lp-plan-card.is-highlight { border-color: var(--lp-purple); box-shadow: var(--lp-shadow-lg); transform: scale(1.03); position: relative; }
@media (max-width: 720px) { .lp-plan-card.is-highlight { transform: none; } }
.lp-plan-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%); white-space: nowrap;
    background: var(--lp-purple); color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .03em;
    padding: 6px 16px; border-radius: 999px; text-transform: uppercase;
}
.lp-plan-name { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; margin: 0 0 6px; }
.lp-plan-desc { font-size: .82rem; color: var(--lp-body); min-height: 36px; margin: 0 0 14px; }
.lp-plan-price { font-size: 2rem; font-weight: 700; color: var(--lp-ink); margin-bottom: 18px; }
.lp-plan-price small { font-size: .85rem; font-weight: 500; color: var(--lp-body-soft); }
.lp-plan-features { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.lp-plan-features li { display: flex; align-items: flex-start; gap: 8px; font-size: .86rem; color: var(--lp-ink); }
.lp-plan-features li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--lp-green); }
.lp-plan-card .lp-btn { width: 100%; }
.lp-pricing-enterprise {
    max-width: 1160px; margin: 40px auto 0; padding: 0 24px; text-align: center; font-size: .92rem; color: var(--lp-body);
}
.lp-pricing-enterprise a { color: var(--lp-purple); font-weight: 700; text-decoration: none; }
.lp-pricing-enterprise a:hover { text-decoration: underline; }

/* ==================== Depoimentos ==================== */
.lp-testimonials-layout { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: grid; gap: 30px; align-items: center; }
@media (min-width: 960px) { .lp-testimonials-layout { grid-template-columns: 1fr 240px; gap: 20px; } }
.lp-testimonials-copy .lp-section-head { max-width: none; }
.lp-testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.lp-testimonial-card { background: #fff; border: 1px solid var(--lp-border); border-radius: 20px; padding: 26px 22px; box-shadow: var(--lp-shadow-sm); }
.lp-testimonial-quote-icon { color: var(--lp-purple-soft); width: 30px; height: 24px; margin-bottom: 10px; }
.lp-testimonial-card p.quote { font-size: .92rem; line-height: 1.6; color: var(--lp-ink); margin: 0 0 18px; }
.lp-testimonial-person { display: flex; align-items: center; gap: 10px; }
.lp-avatar-initial {
    width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .9rem; color: #fff; flex-shrink: 0;
}
.lp-testimonial-person strong { display: block; font-size: .86rem; color: var(--lp-ink); }
.lp-testimonial-person span { font-size: .76rem; color: var(--lp-body-soft); }
.lp-testimonial-note { text-align: left; font-size: .78rem; color: var(--lp-body-soft); margin: 24px 0 0; max-width: 460px; }
.lp-testimonials-visual { display: none; justify-content: center; }
.lp-testimonials-visual img { width: 100%; max-width: 280px; height: auto; filter: drop-shadow(0 20px 26px rgba(30,42,69,.2)); }
@media (min-width: 960px) { .lp-testimonials-visual { display: flex; } }

/* ==================== CTA final ==================== */
.lp-cta-final-wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.lp-cta-final {
    position: relative; overflow: hidden; border-radius: 32px; padding: 56px 32px;
    background: linear-gradient(135deg, var(--lp-purple), #5A3FA0 60%, #4B3487);
    text-align: center; color: #fff;
}
.lp-cta-final h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0 0 10px; }
.lp-cta-final p { color: rgba(255,255,255,.82); margin: 0 0 26px; }
.lp-cta-star { position: absolute; color: rgba(255,255,255,.8); animation: lp-twinkle 2.4s ease-in-out infinite; }
.lp-cta-rocket { position: absolute; right: 6%; bottom: -10px; width: 130px; display: none; }
@media (min-width: 720px) { .lp-cta-rocket { display: block; } }
.lp-cta-rocket .lp-rocket-body { animation: lp-rocket-float 3.4s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes lp-rocket-float { 0%, 100% { transform: translateY(0) rotate(-8deg); } 50% { transform: translateY(-14px) rotate(-8deg); } }
.lp-cta-rocket .lp-flame { animation: lp-flame-flicker .35s ease-in-out infinite alternate; transform-box: fill-box; transform-origin: top center; }
@keyframes lp-flame-flicker { 0% { transform: scaleY(1) scaleX(1); opacity: .9; } 100% { transform: scaleY(1.3) scaleX(.85); opacity: 1; } }

/* ==================== Páginas de autenticação (Entrar / Cadastre-se) ==================== */
.lp-auth-section { position: relative; overflow: hidden; padding: 60px 0 100px; min-height: 70vh; display: flex; align-items: center; }
.lp-auth-wrap { position: relative; z-index: 1; max-width: 460px; margin: 0 auto; padding: 0 20px; width: 100%; }
.lp-auth-eyebrow { text-align: center; margin-bottom: 18px; }
.lp-auth-card { background: #fff; border-radius: 26px; padding: 34px 30px; box-shadow: var(--lp-shadow-lg); border: 1px solid var(--lp-border); }
.lp-auth-card h1 { font-size: 1.4rem; color: var(--lp-ink); margin: 0 0 8px; }
.lp-auth-card > p { color: var(--lp-body); font-size: .88rem; line-height: 1.5; margin: 0 0 22px; }
.lp-field { margin-bottom: 16px; }
.lp-field label { display: block; font-size: .82rem; font-weight: 600; color: var(--lp-ink); margin-bottom: 6px; }
.lp-field input {
    width: 100%; padding: 12px 14px; border-radius: 12px; border: 1.5px solid var(--lp-border);
    font-size: .92rem; font-family: inherit; color: var(--lp-ink); transition: border-color .2s ease, box-shadow .2s ease;
    background: var(--lp-bg-soft);
}
.lp-field input:focus { outline: none; border-color: var(--lp-purple); box-shadow: 0 0 0 3px var(--lp-purple-soft); background: #fff; }
.lp-field .hint { font-size: .76rem; color: var(--lp-body-soft); margin-top: 6px; }
.lp-auth-note { font-size: .78rem; color: var(--lp-body-soft); margin: -6px 0 16px; line-height: 1.5; }
.lp-auth-footer-link { text-align: center; font-size: .85rem; color: var(--lp-body); margin-top: 20px; }
.lp-auth-footer-link a { color: var(--lp-purple); font-weight: 700; text-decoration: none; }
.lp-auth-footer-link a:hover { text-decoration: underline; }
.lp-auth-search-results { margin-top: 8px; border-radius: 14px; overflow: hidden; }
.lp-auth-search-results:empty { margin-top: 0; }

/* ==================== Rodapé ==================== */
.lp-footer { background: #14102A; color: rgba(255,255,255,.66); padding: 60px 0 0; }
.lp-footer-grid { max-width: 1160px; margin: 0 auto; padding: 0 24px 40px; display: grid; gap: 32px; grid-template-columns: 1.4fr repeat(3, 1fr); }
@media (max-width: 800px) { .lp-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .lp-footer-grid { grid-template-columns: 1fr; } }
.lp-footer-brand img { height: 40px; margin-bottom: 12px; }
.lp-footer-brand p { font-size: .84rem; line-height: 1.6; max-width: 260px; color: rgba(255,255,255,.5); }
.lp-footer-col h4 { color: #fff; font-size: .84rem; margin: 0 0 14px; }
.lp-footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.lp-footer-col a { color: rgba(255,255,255,.62); text-decoration: none; font-size: .86rem; }
.lp-footer-col a:hover { color: #fff; text-decoration: none; }
.lp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1); padding: 18px 24px; text-align: center; font-size: .78rem; color: rgba(255,255,255,.4);
}

/* ==================== Confete ==================== */
.confetti-particle {
    position: fixed;
    width: 6px; height: 6px;
    border-radius: 1px;
    pointer-events: none;
    z-index: 999;
    animation: confetti-fly .9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes confetti-fly {
    to {
        transform: translate(var(--tx), var(--ty)) rotate(var(--rot));
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lp-cloud, .lp-star, .lp-mockup-card, .lp-hero-mascot, .lp-hero-badge,
    .lp-check-badge, .lp-check-dot, .lp-why-heart, .lp-pencil,
    .lp-cta-rocket .lp-rocket-body, .lp-cta-rocket .lp-flame {
        animation-duration: 40s !important;
    }
}
