/* SECTION */
.how-section {
    padding: 100px 20px;
    background: var(--color-litght);
}

.container-how-custom{
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;

}

/* HEADER */
.how-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-header h2 {
    font-size: 40px;
    color: var(--color-text-dark);
    margin: 15px 0;
}

.how-header p {
    color: var(--color-text-dark);
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
}

/* GRID */
.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* STEP */
.how-step {
    text-align: center;
    position: relative;
}

/* ICON */
.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 16px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    position: relative;
}

/* NUMBER */
.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-title-destaque);
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* TEXT */
.how-step h3 {
    color: var(--color-text-dark);
    font-size: 18px;
    margin-bottom: 8px;
}

.how-step p {
    color: var(--color-text-dark);
    font-size: 14px;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .how-grid {
        grid-template-columns: 1fr 1fr;
    }

    .how-step::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .how-grid {
        grid-template-columns: 1fr;
    }

    .how-section {
        padding: 60px 15px;
    }

    .how-header h2 {
        font-size: 28px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}