/* ==========================================================================
   7. SEÇÃO 5: COMO FUNCIONA (STEPS)
   ========================================================================== */
.how-it-works {
    background-color: #ffffff;
    padding-bottom: 100px;
}

.how-it-works .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0d1b2a;
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 25px;
}

.step-number {
    background-color: #e67e22;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0d1b2a;
    margin-bottom: 8px;
}

.step-content p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .how-it-works .section-title {
        font-size: 1.8rem;
    }

    .step-item {
        gap: 15px;
    }
}