:root {
    --lp-primary: #00a884; /* Verde WhatsApp Premium */
    --lp-primary-hover: #008f6f;
    --lp-bg: #0b141a; /* Escuro puxado para o tema do WA Web */
    --lp-card: #111b21;
    --lp-text: #f0f2f5;
    --lp-text-dim: #8696a0;
}

/* Landing Page Wrapper */
.landing-page {
    background: radial-gradient(circle at top right, #1e293b 0%, #0f172a 100%);
    min-height: 100vh;
    color: var(--lp-text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Navbar */
.lp-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.lp-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-logo span {
    color: var(--lp-primary);
}

.lp-nav-actions {
    display: flex;
    gap: 20px;
}

/* Hero Section */
.lp-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 150px 5% 100px;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.lp-hero-content {
    flex: 1;
}

.lp-hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-hero-content p {
    font-size: 1.25rem;
    color: var(--lp-text-dim);
    margin-bottom: 40px;
    line-height: 1.6;
}

.lp-hero-btns {
    display: flex;
    gap: 20px;
}

.btn-lp-primary {
    background: var(--lp-primary);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-lp-primary:hover {
    background: var(--lp-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.btn-lp-outline {
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-lp-outline:hover {
    background: rgba(255,255,255,0.05);
}

/* Mockup */
.lp-hero-visual {
    flex: 1.2;
    position: relative;
}

.lp-mockup {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Login Sidebar (Drawer) */
#lp-login-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: var(--lp-card);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
}

#lp-login-drawer.active {
    right: 0;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.drawer-header {
    margin-bottom: 40px;
}

.drawer-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.drawer-header p {
    color: var(--lp-text-dim);
}

.lp-input-group {
    margin-bottom: 20px;
}

.lp-input-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--lp-text-dim);
    font-size: 0.9rem;
}

.lp-input-group input {
    width: 100%;
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 14px;
    border-radius: 10px;
    color: #fff;
    outline: none;
}

.lp-input-group input:focus {
    border-color: var(--lp-primary);
}

/* Estilo para quando logado vs deslogado */
.is-logged-in #login-overlay { display: none; }
.is-logged-out #main-content { display: none; }

/* Features Section */
.lp-features {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--lp-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--lp-primary);
    transform: translateY(-5px);
}





.feature-icon {
    font-size: 2.5rem;
    color: var(--lp-primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--lp-text-dim);
    line-height: 1.6;
}

/* Steps Section */
.lp-steps {
    padding: 100px 5%;
    background: rgba(255,255,255,0.02);
    text-align: center;
}

.lp-section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 800;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--lp-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin: 0 auto 20px;
    font-size: 1.2rem;
}

/* Pricing */
.lp-pricing {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    background: var(--lp-card);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.price-card.featured {
    border: 2px solid var(--lp-primary);
    transform: scale(1.05);
}

.price-val {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 10px 0;
    color: #fff;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-val span {
    font-size: 3.5rem; /* Valor grande */
    color: #fff;
}

.price-currency {
    font-size: 1.2rem; /* R$ menor e no alto */
    color: var(--lp-primary);
    font-weight: 700;
}

.price-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
    color: var(--lp-text-dim);
}

.price-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features i {
    color: var(--lp-primary);
}

/* Pain Points */
.lp-pains {
    padding: 80px 5%;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.pain-item {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.1);
    padding: 30px;
    border-radius: 15px;
    color: #fca5a5;
    font-weight: 500;
}

.pain-item i {
    margin-bottom: 10px;
    display: block;
    font-size: 1.5rem;
}

/* Stats Section */
.lp-stats {
    padding: 60px 5%;
    background: var(--lp-primary);
    color: #fff;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.stat-item h2 {
    font-size: 3rem;
    font-weight: 800;
}

/* FAQ */
.lp-faq {
    padding: 100px 5%;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--lp-card);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--lp-text-dim);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Calculator */
.lp-calculator {
    padding: 80px 5%;
    background: rgba(255,255,255,0.02);
    border-radius: 30px;
    margin: 50px 5%;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.calc-inputs {
    flex: 1;
    min-width: 300px;
}

.calc-results {
    flex: 1;
    min-width: 300px;
    background: var(--lp-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--lp-primary);
    text-align: center;
}

.calc-results h3 {
    font-size: 1.2rem;
    color: var(--lp-text-dim);
    margin-bottom: 20px;
}

.calc-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--lp-primary);
    margin-bottom: 10px;
}

.calc-sub {
    color: var(--lp-text-dim);
    font-size: 0.9rem;
}

.range-group {
    margin-bottom: 30px;
}

.range-group label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 600;
}

.range-group span {
    color: var(--lp-primary);
}

input[type=range] {
    width: 100%;
    accent-color: var(--lp-primary);
    cursor: pointer;
}

@media (max-width: 768px) {
    .lp-calculator {
        flex-direction: column;
        padding: 40px 20px;
    }
}

@media (max-width: 968px) {
    .lp-hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }
    .lp-hero-content h1 {
        font-size: 2.5rem;
    }
    #lp-login-drawer {
        width: 100%;
        right: -100%;
    }
    .lp-pricing .price-card.featured {
        transform: scale(1);
    }
}
/* FOMO Toast */
.lp-fomo-toast {
    position: fixed;
    bottom: 60px; /* Acima do ticker */
    left: 20px;
    background: var(--lp-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    max-width: 320px;
}

.lp-fomo-toast.active {
    transform: translateY(0);
}

.fomo-icon {
    width: 40px;
    height: 40px;
    background: var(--lp-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

.fomo-info p {
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.fomo-info strong {
    color: var(--lp-primary);
}

.fomo-info span {
    font-size: 0.75rem;
    color: var(--lp-text-dim);
    display: block;
    margin-top: 2px;
}


/* Success Modal */
.lp-modal-success {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.lp-modal-success.active {
    opacity: 1;
    pointer-events: all;
}

.success-content {
    background: var(--lp-card);
    padding: 40px;
    border-radius: 25px;
    border: 2px solid var(--lp-primary);
    text-align: center;
    max-width: 400px;
    transform: scale(0.8);
    transition: transform 0.3s;
}

.lp-modal-success.active .success-content {
    transform: scale(1);
}

.success-icon {
    font-size: 4rem;
    color: var(--lp-primary);
    margin-bottom: 20px;
    display: block;
}

.success-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.success-content p {
    color: var(--lp-text-dim);
    line-height: 1.6;
    margin-bottom: 30px;
}
