@import url('https://fonts.cdnfonts.com/css/petrov-sans-trial');

:root{
    --font-family: 'Petrov Sans-Trial', 'Trebuchet MS', sans-serif;
    --color-blue: #52cae8;
    --color-white: #FFFFFF;
    --color-text: #f8f7f7;
    --destaque: #68f2bd;
    --destaque02: #bfa0fa;
}
  
* {
    margin: 0;
    border: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html{
    margin: 0;
    padding: 0;
    background: #700286;
    background: linear-gradient(90deg, rgba(112, 2, 134, 1) 0%, rgba(37, 1, 106, 1) 100%);
    color: var(--color-text);
    word-wrap: normal;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: var(--font-family);
}

.titulo img{
    width: 70%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    margin: auto;
    display: block;
}
.topo-imagem img{
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: auto;
    display: block;
}
.topo{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    margin-top: 5%;
}
.titulo{
    width: fit-content;
    margin: 50px auto 100px;
}
.topo-imagem{
    width: 70%;
}

.content{
    padding: 0 10% 10%;
    text-align: center;
}
.texto{
    margin: 0 10%;    
}
p{
    text-align: justify;
    font-size: large;
}

.info-box, .profissoes-box{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 5% 0;
}
.box{
    width: 35%;
    padding: 1rem 2rem;
    background: #ac87e6;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;

    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    font-weight: 700;
    font-size: x-large;
}
.box span{
    font-size: xx-large;
    font-weight: 800;
    color: #5d2694;
}
.box a, .box a:hover{
    text-decoration: none;
    color: #FFFFFF;
}
.profissoes{
    width: 45%;
}
.inscricao{
    width: 100%;
    margin-top: 5%;
}

h1{
    color: var(--destaque);
    text-transform: uppercase;
    font-weight: 700;
    font-size: x-large;
    margin-top: 5rem;

    small{
        color: var(--color-white);
    }
}

footer{
    color: white;
    padding: 2% 10%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}
footer i{
    color: #FFFFFF;
    font-size: x-large;
    margin: 0px 5px;
}
footer a, footer a:hover{
    color: #FFFFFF;
    text-decoration: none;
}
.footer-box{
    width: 20%;
    text-align: center;
    margin: 2% 0 4%;
}
.line{
    width: 100%;
    text-align: center;
    font-size: x-small;
}

.i70{
    max-width: 70%;
}
.i50{
    max-width: 50%;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
li {
    background-color: var(--destaque);
    color: #5d2694;
    font-weight: 600;
    text-align: center;
    padding: 0.3rem 1rem;
    margin: .2rem 0;
}

.btn-inscricao {
    background: var(--destaque);
    padding: 5px 20px;
    border-radius: 50px;
    position: fixed;
    top: 10px;
    right: 30px;
    color: var(--color-white);
    z-index: 9;
}
.btn-inscricao:hover {
    background: var(--color-blue);
    border-radius: 50px;
    color: var(--color-white);
}
.btn-inscricao::after{
    content: "Inscreva-se";
    padding-left: .5rem;
}


@media screen and (max-width: 767.98px){
    .content{
        padding: 0 5% 10%;
    }
    .topo-line{
        font-size: 15pt;
    }
    .box{
        width: 45%;
    }
    .titulo linha1{
        font-size: 30pt;
    }
    .titulo linha2{
        font-size: 70pt;
    }
    .topo-imagem{
        width: 90%;
    }
    .titulo{
        width: fit-content;
        display: block;
        margin-bottom: 50px;
    }
}
@media screen and (max-width: 644.98px){
    .titulo{
        line-height: 5vh;
    }
    .titulo linha1{
        font-size: 7vw;
    }
    .titulo linha2{
        font-size: 13vw;
    }
}
@media screen and (max-width: 575.98px){
    .topo-line{
        font-size: small;
        padding: 0px 5%;
    }
    .footer-box, .profissoes, .box{
        width: 100%;
    }
    .box{
        margin: 20px 0;
    }
    .btn-inscricao {
        padding: 10px 18px!important;
        top: 20px;
        right: 1%;
        transform: translateX(-50%);
        width: auto;
        font-size: larger;
        text-align: center;
        z-index: 20;
    }
    .btn-inscricao::after{
        content: none;
        padding-left: 0;
    }
}
