@charset "UTF-8";

/*Typical Devices Breakpoints
-----------------------------
Pequenas telas: até 600px
Celular: 600px até 768px
Tablet: 769px até 992px
desktop: 993 até 1200px
Grandes telas: 1201px e acima
*/

main {
    width: 100%;
    padding-top: 180px;
}

#titulacoesSection {
    width: 80%;
    height: fit-content;
    margin: auto;
}

#tituloTitulacoes {
    display: flex;
    gap: 10px;
    width: fit-content;
    color: #484848;
    background-color: #fff;
    padding: 12px 15px;
    align-items: center;
    font-weight: normal;
    font-size: 18px;
}

#tituloTitulacoes h1 {
    font-weight: normal;
    font-size: 18px;
}

#tituloTitulacoes p {
    font-size: 16px;
}

#titulacoes {
    background-color: white;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#titulacoes h1 {
    color: black;
    font-size: 25px;
    text-align: justify;
}

#titulacoes p {
    color: black;
    font-size: 17px;
    text-align: justify;
    line-height: 1.4;
}

@media screen and (min-width: 600px) and (max-width: 768px) {
    #titulacoesSection {
        width: 550px;
    }
}

@media screen and (min-width: 769px) and (max-width: 992px) {
    #titulacoesSection {
        width: 650px;
    }
}

@media screen and (min-width: 993px) {
    main {
        padding-top: 15vw;
    }
    
    #titulacoesSection {
        width: 70vw;
    }

    #tituloTitulacoes {
        gap: 1vw;
        padding: 0.81vw 1.3vw;
        font-size: 1.5vw;
    }

    #tituloTitulacoes h1 {
        font-size: 1.5vw;
    }
    
    #tituloTitulacoes p {
        font-size: 1.4vw;
    }

    #titulacoes {
        padding: 2vw;
        gap: 1.4vw;
    }
    
    #titulacoes h1 {
        font-size: 2.2vw;
    }

    #titulacoes h2 {
        font-size: 1.8vw;
    }
    
    #titulacoes p {
        font-size: 1.3vw;
    }
}