/* Landing Branding - Estilo Maduro e Consultivo */

/* HERO BRANDING */
.hero-branding {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    text-align: center;
}

.hero-branding h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
}

.hero-branding h1 span {
    color: #3b82f6;
}

.hero-branding .hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* SECTION PAIN (DOR SILENCIOSA) */
.section-pain {
    padding: 80px 24px;
    background: #f8fafc;
}

.section-pain h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.4;
}

.pain-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto 32px;
}

.pain-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #ef4444;
}

.pain-item i {
    color: #ef4444;
    font-size: 1.1rem;
}

.pain-item span {
    font-size: 1rem;
    color: #475569;
    font-weight: 500;
}

.pain-conclusion {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
}

.pain-conclusion strong {
    color: #0f172a;
}

/* SECTION CLARITY (O QUE É BRANDING) */
.section-clarity {
    padding: 80px 24px;
    background: white;
}

.section-clarity h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.clarity-text {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.clarity-focus {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.focus-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
}

.focus-item.positive {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.focus-item.positive i {
    color: #22c55e;
}

/* SECTION DELIVERABLES (ENTREGÁVEIS) */
.section-deliverables {
    padding: 80px 24px;
    background: #f8fafc;
}

.section-deliverables h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.deliverables-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 48px;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.deliverable-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
}

.deliverable-card:hover {
    border-color: #3b82f6;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.1);
}

.deliverable-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.deliverable-icon i {
    font-size: 1.5rem;
    color: white;
}

.deliverable-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.deliverable-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

/* SECTION FILTER (PARA QUEM É/NÃO É) */
.section-filter {
    padding: 80px 24px;
    background: white;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 700px) {
    .filter-grid {
        grid-template-columns: 1fr;
    }
}

.filter-box {
    padding: 32px;
    border-radius: 16px;
}

.filter-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-box ul li {
    padding: 10px 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.filter-box ul li:last-child {
    border-bottom: none;
}

.filter-yes {
    background: rgba(34, 197, 94, 0.08);
    border: 2px solid rgba(34, 197, 94, 0.2);
}

.filter-yes h3 {
    color: #16a34a;
}

.filter-yes ul li {
    color: #166534;
}

.filter-no {
    background: rgba(239, 68, 68, 0.05);
    border: 2px solid rgba(239, 68, 68, 0.15);
}

.filter-no h3 {
    color: #dc2626;
}

.filter-no ul li {
    color: #7f1d1d;
}

/* SECTION PROCESS (COMO FUNCIONA) */
.section-process {
    padding: 80px 24px;
    background: #f8fafc;
}

.section-process h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.process-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 48px;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 auto 14px;
}

.process-step h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    max-width: 140px;
}

.process-connector {
    width: 40px;
    height: 2px;
    background: #cbd5e1;
}

@media (max-width: 700px) {
    .process-steps {
        flex-direction: column;
    }

    .process-connector {
        width: 2px;
        height: 30px;
    }
}

/* SECTION CONNECTION (RELAÇÃO COM PRESENÇA DIGITAL) */
.section-connection {
    padding: 60px 24px;
    background: white;
}

.connection-box {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 2px solid #bae6fd;
    border-radius: 20px;
    padding: 48px 32px;
    max-width: 700px;
    margin: 0 auto;
}

.connection-text {
    font-size: 1.1rem;
    color: #0c4a6e;
    line-height: 1.7;
    margin-bottom: 20px;
}

.connection-cta {
    font-size: 1rem;
    color: #0369a1;
    margin-bottom: 24px;
}

.connection-cta strong {
    color: #0c4a6e;
}

/* CTA FINAL OVERRIDE */
.cta-final h2 {
    font-size: 1.6rem;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.4;
}

/* RESPONSIVE */
@media (min-width: 768px) {
    .hero-branding h1 {
        font-size: 3.2rem;
    }

    .hero-branding .hero-sub {
        font-size: 1.3rem;
    }

    .section-pain h2 {
        font-size: 2rem;
    }

    .section-clarity h2 {
        font-size: 2.5rem;
    }
}