/* MiCompa AI - Landing Page Styles */
/* Complementa style.css — solo para index.html */

/* Typography override for headings */
.hero-landing h1,
.section h2,
.pricing-card h3,
.diff-card h3 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Logo accent */
.logo-ai {
    color: var(--primary);
    font-weight: 800;
}

/* Hero landing - warmer gradient */
.hero-landing {
    text-align: center;
    padding: 80px 0 60px;
    background: linear-gradient(180deg, #fef9f0 0%, #f0fdf4 40%, #ffffff 100%);
}

.hero-landing h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: #1a1a2e;
}

.hero-badge-landing {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    background: #dcfce7;
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

/* WhatsApp CTA button */
.btn-wa {
    background: #25D366;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-wa:hover {
    background: #128C7E;
}

.btn-wa svg {
    flex-shrink: 0;
}

/* Diff grid - us vs them */
.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.diff-card {
    padding: 28px;
    border-radius: 12px;
    border: 2px solid var(--border);
}

.diff-card h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.diff-card ul {
    list-style: none;
    padding: 0;
}

.diff-card li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.diff-card li::before {
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.diff-them {
    background: #fef2f2;
    border-color: #fecaca;
}

.diff-them h3 {
    color: #991b1b;
}

.diff-them li::before {
    content: '✗';
    color: #dc2626;
}

.diff-us {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.diff-us h3 {
    color: #166534;
}

.diff-us li::before {
    content: '✓';
    color: #16a34a;
    font-weight: 700;
}

/* Personality chips */
.personality-examples {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 24px 0 16px;
}

.persona-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.2s;
}

.persona-chip:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.1);
}

.persona-emoji {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.persona-chip small {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.persona-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Skills landing grid */
.skills-landing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.skill-landing-card {
    padding: 28px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg);
    text-align: center;
    transition: all 0.2s;
}

.skill-landing-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.skill-landing-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.skill-landing-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.skill-landing-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.skill-plan-badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.skill-plan-badge.free {
    background: #dcfce7;
    color: #16a34a;
}

.skill-plan-badge.pro {
    background: #fef3c7;
    color: #d97706;
}

.skill-plan-badge.soon {
    background: #e0e7ff;
    color: #4338ca;
}

/* Dashboard preview items */
.dash-preview-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
    color: var(--text);
}

.dash-preview-item:last-child {
    border-bottom: none;
}

.dash-preview-item span {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* CTA final landing */
.cta-final-landing {
    background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 50%, #dcfce7 100%);
    padding: 80px 0;
}

.cta-final-landing h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 8px;
}

/* Responsive adjustments for landing */
@media (max-width: 768px) {
    .hero-landing h1 {
        font-size: 2.2rem;
    }

    .diff-grid {
        grid-template-columns: 1fr;
    }

    .skills-landing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .personality-examples {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero-landing h1 {
        font-size: 1.8rem;
    }

    .hero-landing {
        padding: 60px 0 40px;
    }

    .skills-landing-grid {
        grid-template-columns: 1fr;
    }
}
