@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 {
    padding-top: 180px;
}

#xadeSection {
    width: 80%;
    height: fit-content;
    margin: auto;
}

#tituloXade{
    display: flex;
    gap: 10px;
    width: fit-content;
    color: #484848;
    background-color: #fff;
    padding: 12px 15px;
    align-items: center;
    font-weight: normal;
    font-size: 18px;
}

#tituloXade h1 {
    font-weight: normal;
    font-size: 18px;
}

#tituloXade p {
    font-size: 16px;
}

#xade {
    margin-bottom: 40px;
    background-color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#xade h1 {
    font-size: 25px;
    color: black;
    text-align: justify;
}

#xade h2 {
    font-size: 22px;
    color: black;
    text-align: justify;
}

#xade p {
    font-size: 17px;
    color: black;
    text-align: justify;
    line-height: 1.4;
}

@media screen and (min-width: 600px) and (max-width: 768px) {
    #xadeSection {
        width: 550px;
    }
}

@media screen and (min-width: 769px) and (max-width: 992px) {
    #xadeSection {
        width: 650px;
    }
}

@media screen and (min-width: 993px) {
    main {
        padding-top: 15vw;
    }
    
    #xadeSection {
        width: 70vw;
    }

    #tituloXade {
        gap: 1vw;
        padding: 0.81vw 1.3vw;
        font-size: 1.5vw;
    }

    #tituloXade h1 {
        font-size: 1.5vw;
    }
    
    #tituloXade p {
        font-size: 1.4vw;
    }

    #xade {
        margin-top: 0vw;
        margin-bottom: 4vw;
        padding: 2vw;
        gap: 2vw;
    }
    
    #xade h1 {
        font-size: 2.2vw;
    }
    
    #xade h2 {
        font-size: 1.6vw;
    }
    
    #xade p {
        font-size: 1.3vw;
    }
}