@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');

*{
    padding: 0;
    border: none;
    margin: 0;
    font-family: "Source Serif 4", serif;
    outline: none;
}
body{
    background-color: rgb(55, 4, 94);
    color:#ffff;
}
section{
    padding: 20px 40px;
}
h1{
    font-size: 40px;
    margin-bottom: 30px;

        span{
            color: #e502fa;
        }
        i{
            font-size: 25px;
            padding: 0 10px;
        }
}
.home{
    margin: 40px 0;
        a i{
            padding: 0 40px;
            font-size: 40px;
            color: rgba(180, 174, 180, 0.995);
        }
}
.conteudo{

        p{
            font-size: 15px;
            font-weight: 500;
            max-width: 500px;
            text-align: justify;
        }
}
.pdf{
    padding: 15px 0;
    a{
        color: #e502fa;
    }
}
img{
    box-shadow: 20px 20px 0 12px #501140;
    width: 330px;
    height: auto;
    border-radius: 30px;
    flex-shrink: 0;
}
.conteiner-sobre{
    display: flex;
    align-items: flex-start; 
    gap: 50px; 
    flex-wrap: wrap; 
}
.text{
    flex: 1; 
    max-width: 500px;
}
@media (max-width: 768px){
    .conteiner-sobre{
        flex-direction: column-reverse;
}
    img{
        box-shadow: 18px 18px 0 12px #501140;
        width: 280px;
        height: auto;
        border-radius: 30px;
        flex-shrink: 0;
}
    .conteudo{
            p{
                font-size: 13px;
                font-weight: 400;
            }
}
}