@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');



#custoSection {
    height: auto;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

#custoInfoContainer {
    width: 60vw;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 50px;
}

.divMetade {
    height: auto;
    width: 50%;
}

#infoDiv {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#gratisDiv {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#title100 {
    font-family: 'Roboto';
    font-size: 160px;
    font-weight: bolder;
    color: #1E6BAC;
}

#gratisTitle {
    font-size: 110px;
    font-weight: 600;
    text-transform: uppercase;
}

.infoContainer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    height: auto;
    width: auto;
}

.lineBlue {
    height: 26px;
    width: 4px;
    background-color: #1E6BAC;
    margin-right: 5px;
}

.infoTitle {
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
}

#infoContainer {
    height: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
}



@media all and (max-width: 900px) and (orientation: portrait) {
    #custoInfoContainer {
        width: 100vw;
        flex-direction: column;
        gap: 60px;
    }
}


@media all and (max-width: 500px) and (orientation: portrait) {
    #custoInfoContainer {
        gap: 50px;
    }

    #title100 {
        font-size: 130px;
    }
    
    #gratisTitle {
        font-size: 90px;
    }

    .infoTitle {
        font-size: 22px;
    }

    .lineBlue {
        height: 22px;
    }
}


@media all and (max-width: 400px) and (orientation: portrait) {

    #title100 {
        font-size: 110px;
    }
    
    #gratisTitle {
        font-size: 80px;
    }
}