.porque-ser-bigfibra {
    background-color: #355583;
    display: flex;
    padding: 30px;
    height: 80vh;
    justify-content: center;
    align-items: center;
}

.titulo-porque p {
    font-size: 2rem;
}

.titulo-porque h1 {
    color: #f88d2f;
    font-size: 3rem;
}

#separador-porque {
    width: 100px;
    height: 2px;
    margin-top: 10px;
    background-color: #ffffff;
}

.texto-porque {
    padding-top: 40px;
}

.container1,
.container2 {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-porque,
.container-vantagens {
    width: 70%;
}


.titulo-vantegens{
    color: #ffffff;
    display: flex;
    justify-content: center;
}

#separador-vantagens{
    height: 3px;
    width: 50%;
    background-color: #FFFFFF;
}

.container-itens-vantagens {
    padding-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.item-vantagem{
    width: 150px;
    height: 150px;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    align-content: space-around;
}

.item-vantagem img{
    height: 50px;
    width: 50px;
}

.item-vantagem p{
    text-align: center;
    color: #ffffff;
    font-size: .8rem;
}

@media (max-width: 1020px) {
    .porque-ser-bigfibra {
        flex-direction: column;
        padding: 20px;
        height: auto;
    }

    .container1,
    .container2 {
        width: 100%;
        display: block;
        margin-bottom: 30px;
    }

    .container-porque,
    .container-vantagens {
        width: 100%;
        text-align:left;
    }

    .titulo-porque p,
    .titulo-porque h1 {
        font-size: 1.5rem;
    }

    .titulo-porque h1 {
        font-size: 2rem;
    }

    #separador-porque,
    #separador-vantagens {
        width: 50%;
        margin: 10px auto;
    }

    .texto-porque {
        padding-top: 20px;
        font-size: 0.9rem;
        
    }

    .titulo-vantegens h1 {
        font-size: 1.8rem;
        padding-top: 10vh;
    }

    .container-itens-vantagens {
        gap: 40px;
        
    }

    .item-vantagem {
        width: 100%; /* Mantém o item com 100% no mobile */
        max-width: 150px; /* Define um limite para manter o design */
        margin: 0;
        display: flex;
        flex-direction: column; /* Força os itens a ficarem empilhados */
        justify-content: center;
        align-items: center;
        
    }

    .item-vantagem img {
        height: 60px;
        width: 60px;
    }

    .item-vantagem p {
        font-size: 1rem;
        word-wrap: break-word; /* Garante quebra de linha em palavras longas */
        
    }
}

@media (max-width: 390px) {
    .item-vantagem{
        scale: .6;
    }
    .container-itens-vantagens{
        gap: 0px;
    }
}