/* ===========================================
   Landing Page: Mentoria em IA — Luiz Rangel
   Extends base styles.css
   =========================================== */

/* Hero overrides for LP */
.lp-hero .hero-supporting {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.lp-hero .hero-stats {
    gap: 1.5rem;
}

/* Problem / Pain Section */
.lp-problem {
    padding: 80px 0;
    background: #1a202c;
    color: white;
}

.lp-problem .section-header h2 {
    color: white;
    font-size: 2.2rem;
}

.lp-problem .lead {
    color: #cbd5e0;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
}

.pain-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.pain-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid #f56565;
    transition: background 0.3s ease;
}

.pain-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.pain-item i {
    color: #f56565;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pain-item span {
    color: #e2e8f0;
    font-size: 1rem;
}

.problem-callout {
    margin-top: 2.5rem;
    padding: 2rem;
    background: rgba(245, 101, 101, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(245, 101, 101, 0.2);
    text-align: center;
}

.problem-callout p {
    color: #e2e8f0;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.problem-callout p:last-child {
    margin-bottom: 0;
}

.problem-callout strong {
    color: #fff;
}

/* Transformation / BAB Section */
.lp-transformation {
    padding: 80px 0;
    background: white;
}

.bab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.bab-card {
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.bab-card:hover {
    transform: translateY(-5px);
}

.bab-card h3 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.bab-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.bab-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

.bab-icon i {
    color: white;
}

.bab-before {
    background: #fff5f5;
    border: 2px solid #fed7d7;
}

.bab-before h3 {
    color: #c53030;
}

.bab-before .bab-icon {
    background: linear-gradient(135deg, #fc8181, #f56565);
}

.bab-bridge {
    background: linear-gradient(135deg, #667eea08, #764ba208);
    border: 2px solid #667eea;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.15);
}

.bab-bridge h3 {
    color: #667eea;
}

.bab-bridge .bab-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.bab-after {
    background: #f0fff4;
    border: 2px solid #c6f6d5;
}

.bab-after h3 {
    color: #276749;
}

.bab-after .bab-icon {
    background: linear-gradient(135deg, #68d391, #38a169);
}

/* How It Works Section */
.lp-how-it-works {
    padding: 80px 0;
    background: #f8fafc;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.4);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea10, #764ba210);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem auto 1.5rem;
}

.step-icon i {
    font-size: 1.8rem;
    color: #667eea;
}

.step-card h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.steps-result {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.steps-result i {
    font-size: 2rem;
    flex-shrink: 0;
}

.steps-result p {
    color: white;
    margin: 0;
    font-size: 1.05rem;
}

/* Benefits Section */
.lp-benefits {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.benefit-card {
    padding: 2rem;
    border-radius: 16px;
    background: #f8fafc;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon i {
    font-size: 1.4rem;
    color: white;
}

.benefit-card h3 {
    color: #2d3748;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ICP Paths Section */
.lp-paths {
    padding: 80px 0;
    background: #f8fafc;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.path-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.path-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.path-primary {
    border-color: #667eea;
}

.path-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.path-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea10, #764ba210);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.path-icon i {
    font-size: 1.5rem;
    color: #667eea;
}

.path-card h3 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.path-who {
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.path-description {
    color: #4a5568;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.path-gains {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.path-gains li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    font-size: 0.9rem;
}

.path-gains li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 0.8rem;
}

.path-offer {
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #4a5568;
}

/* FAQ Section */
.lp-faq {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover,
.faq-item.active {
    border-color: #667eea;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 500;
    color: #2d3748;
    text-align: left;
    font-family: 'Inter', sans-serif;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question i {
    color: #667eea;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

.faq-guarantee {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #667eea08, #764ba208);
    border: 2px solid #667eea;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.faq-guarantee i {
    color: #667eea;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.faq-guarantee p {
    margin: 0;
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
}

/* Final CTA Section */
.lp-final-cta {
    padding: 80px 0;
    background: #f8fafc;
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.final-cta-text h2 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.final-cta-text .lead {
    font-size: 1.1rem;
    color: #4a5568;
}

.final-cta-benefits {
    margin-top: 2rem;
}

.final-cta-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.final-cta-benefits .benefit-item i {
    color: #38a169;
    font-size: 1.1rem;
}

.final-cta-benefits .benefit-item span {
    color: #4a5568;
    font-weight: 500;
}

.final-cta-form .contact-form {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    margin-top: 1rem;
    margin-bottom: 0;
}

.form-disclaimer i {
    margin-right: 0.3rem;
}

/* Social Proof Sectors */
.social-proof-sectors {
    margin-top: 3rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-proof-sectors p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.social-proof-sectors strong {
    color: white;
}

/* Ecosystem Section */
.lp-ecosystem {
    padding: 40px 0;
    background: white;
    border-top: 1px solid #e2e8f0;
}

.ecosystem-content {
    text-align: center;
}

.ecosystem-label {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.ecosystem-brands {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.ecosystem-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.ecosystem-brand strong {
    color: #2d3748;
    font-size: 1.1rem;
}

.ecosystem-brand span {
    color: #999;
    font-size: 0.85rem;
}

.ecosystem-divider {
    color: #cbd5e0;
    font-size: 0.8rem;
}

/* ===========================
   Responsive Overrides
   =========================== */
@media (max-width: 768px) {
    .bab-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .paths-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .path-primary {
        order: -1;
    }

    .final-cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .final-cta-text {
        text-align: center;
    }

    .final-cta-text h2 {
        font-size: 1.8rem;
    }

    .final-cta-benefits {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .lp-problem .section-header h2 {
        font-size: 1.8rem;
    }

    .lp-transformation .section-header h2 {
        font-size: 1.8rem;
    }

    .steps-result {
        flex-direction: column;
        text-align: center;
    }

    .faq-guarantee {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .ecosystem-brands {
        flex-direction: column;
        gap: 1rem;
    }

    .ecosystem-divider {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .lp-problem .section-header h2 {
        font-size: 1.5rem;
    }

    .pain-item {
        padding: 0.75rem 1rem;
    }

    .pain-item span {
        font-size: 0.9rem;
    }

    .faq-question span {
        font-size: 0.95rem;
    }
}
