/* Landing Page - Presença Digital Profissional */

.landing-page {
    overflow-x: hidden;
}

/* Hero Landing */
.hero-landing {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
    position: relative;
    z-index: 10;
}

.hero-content-center {
    max-width: 900px;
    margin: 0 auto;
}

.logo-landing {
    margin-bottom: 48px;
}

.logo-landing a {
    display: inline-block;
    transition: all 0.3s ease;
}

.logo-landing a:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.logo-landing img {
    max-width: 250px;
    height: auto;
}

.hero-landing h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 900;
    color: var(--color-primary-dark);
    margin-bottom: 28px;
}

.highlight-blue {
    color: var(--color-secondary);
}

.hero-sub {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 22px 48px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.btn-cta-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 6px 36px rgba(37, 211, 102, 0.8);
    }
}

/* Identification Section */
.identification-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fef2f2, #fff);
}

.identification-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    text-align: center;
    margin-bottom: 60px;
}

.id-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.id-item {
    background: white;
    padding: 36px;
    border-radius: 16px;
    border: 2px solid #fee2e2;
    text-align: center;
    transition: all 0.3s ease;
}

.id-item:hover {
    transform: translateY(-8px);
    border-color: #fca5a5;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.id-item i {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 20px;
}

.id-item p {
    font-size: 1.05rem;
    color: var(--color-text-main);
    line-height: 1.6;
}

/* Includes Section */
.includes-section {
    padding: 100px 0;
    background: white;
}

.includes-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    text-align: center;
    margin-bottom: 16px;
}

.section-lead {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 60px;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.include-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.include-card.featured {
    border-color: #3b82f6;
    transform: scale(1.05);
    background: linear-gradient(135deg, #eff6ff, #ffffff);
}

.include-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.card-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.include-icon {
    width: 90px;
    height: 90px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.include-icon i {
    font-size: 3rem;
    color: var(--color-secondary);
}

.include-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
}

.include-card p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* How Section */
.how-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.how-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    text-align: center;
    margin-bottom: 16px;
}

.how-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    max-width: 1200px;
    margin: 60px auto 0;
}

.step {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    border: 2px solid #bfdbfe;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

.step-num {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
}

.step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
}

.step p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.step-arrow {
    color: #cbd5e1;
    font-size: 2rem;
}

/* Invest Section */
.invest-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e1b4b, #312e81, #1e3a8a);
}

.invest-box {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 60px 48px;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.invest-box h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 32px;
}

.invest-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 16px;
}

.invest-price .currency {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-right: 12px;
    margin-top: 16px;
}

.invest-price .value {
    font-size: 6rem;
    font-weight: 900;
    color: var(--color-primary-dark);
    line-height: 1;
}

.invest-label {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.invest-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 32px;
    border-top: 2px solid #e2e8f0;
}

.benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.benefit i {
    color: #10b981;
    font-size: 1.4rem;
}

.benefit span {
    font-size: 1.1rem;
    color: var(--color-text-main);
    font-weight: 600;
}

/* Why Section */
.why-section {
    padding: 100px 0;
    background: white;
}

.why-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    text-align: center;
    margin-bottom: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.why-item {
    background: linear-gradient(135deg, #ecfdf5, #fff);
    padding: 28px 32px;
    border-radius: 12px;
    border: 2px solid #d1fae5;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateX(8px);
    border-color: #10b981;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.why-item i {
    font-size: 1.8rem;
    color: #10b981;
    flex-shrink: 0;
}

.why-item p {
    font-size: 1.05rem;
    color: var(--color-text-main);
    font-weight: 600;
    margin: 0;
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #059669, #10b981);
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 48px;
    line-height: 1.3;
}

.highlight-yellow {
    color: #fbbf24;
}

.btn-cta-final {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 24px 56px;
    background: white;
    color: #10b981;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-cta-final:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
}

.btn-cta-final i {
    font-size: 1.8rem;
}

/* Footer Landing */
.footer-landing {
    background: var(--color-primary-dark);
    color: white;
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
    text-align: center;
}

.footer-logo {
    max-width: 180px;
    filter: brightness(0) invert(1);
    margin: 0 auto;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-col i {
    margin-right: 8px;
    color: var(--color-accent);
}

.footer-copy {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-landing h1 {
        font-size: 2.5rem;
    }

    .hero-sub {
        font-size: 1.1rem;
    }

    .how-steps {
        grid-template-columns: 1fr;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 16px 0;
    }

    .id-grid,
    .includes-grid {
        grid-template-columns: 1fr;
    }

    .include-card.featured {
        transform: scale(1);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .final-cta h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 640px) {
    .hero-landing h1 {
        font-size: 2rem;
    }

    .btn-cta-main,
    .btn-cta-final {
        width: 100%;
        justify-content: center;
    }

    .invest-price .value {
        font-size: 4.5rem;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        font-size: 2rem;
    }
}

/* Additional Styles for New Landing Pages */
/* How It Works Timeline */
.how-it-works-section { padding: 100px 0; background: linear-gradient(135deg, #f8fafc, #e2e8f0); }
.how-it-works-section h2 { font-size: 2.5rem; font-weight: 800; color: var(--color-primary-dark); text-align: center; margin-bottom: 60px; }
.steps-timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; max-width: 1200px; margin: 0 auto; }
.step-item { background: white; padding: 40px 28px 32px; border-radius: 20px; text-align: center; position: relative; border: 2px solid #cbd5e1; transition: all 0.3s ease; }
.step-item:hover { transform: translateY(-8px); border-color: var(--color-secondary); box-shadow: 0 16px 40px rgba(59, 130, 246, 0.2); }
.step-number { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); width: 44px; height: 44px; background: linear-gradient(135deg, #3b82f6, #2563eb); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 900; box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4); }
.step-item h3 { font-size: 1.2rem; font-weight: 700; color: var(--color-primary-dark); margin-bottom: 12px; }
.step-item p { font-size: 1rem; color: var(--color-text-muted); line-height: 1.6; }
