/* ========================================
   PROBLEMAS QUE RESOLVEMOS CSS - SalonBookIt
   ======================================== */

/* === HERO STATS ROW === */
.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
}

.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* === PROBLEMS GRID === */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.problem-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
}

.problem-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.problem-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy-900) 0%, #1e3a5f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.problem-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
    flex-shrink: 0;
}

.problem-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--gray-500);
    background: var(--gray-100);
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.problem-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 0.75rem;
}

.problem-desc {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.problem-solution {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.solution-header svg {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
}

.solution-header span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #10b981;
    letter-spacing: 0.5px;
}

.problem-solution p {
    color: var(--navy-900);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin: 0;
}

.problem-solution strong {
    color: var(--navy-900);
}

.problem-stats {
    display: flex;
    gap: 1rem;
}

.problem-stat {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.problem-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
}

.problem-stat-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* === CHALLENGES GRID === */
.challenges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.challenge-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    transition: all 0.2s ease;
}

.challenge-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 158, 11, 0.3);
}

.challenge-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(245, 158, 11, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.challenge-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
}

.challenge-content {
    flex: 1;
}

.challenge-problem {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
}

.challenge-solution {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.challenge-solution strong {
    color: var(--gold);
    font-size: 0.9375rem;
}

.challenge-solution span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
}

/* === BENEFITS ROW === */
.benefits-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-box {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-200);
}

.benefit-box-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--navy-900) 0%, #1e3a5f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.benefit-box-icon svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
    flex-shrink: 0;
}

.benefit-box-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.benefit-box-label {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .benefits-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-stats-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-stat-value {
        font-size: 2rem;
    }

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

    .challenge-card {
        flex-direction: column;
        text-align: center;
    }

    .challenge-icon {
        margin: 0 auto;
    }
}
