#why {
    width: 100%;
    height: 890px;
    background-image: url('../img/duvida.png');
    background-size: cover;
    background-position: center;
}

#title-section-why {
    color: var(--main-blue);
    text-shadow: 0px 4px 4px black;
    /* x, y, blur, color */
    text-transform: uppercase;
}

.benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.benefit i {
    color: var(--main-blue);
    font-size: 40px;
    text-shadow: 0 4px 4px black;
}

.benefit p {
    font-family: 'Fredoka', sans-serif;
    font-size: 35px;
    font-weight: 600;
    color: var(--main-blue);
    text-shadow: 0px 4px 4px black;
}

@media (max-width: 980px) {
    #why {
        background-position: -350px;
        padding: 20px;
    }

    #benefit-line {
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .benefit p {
        font-size: 20px;
    }
}