* {
    margin: 0px;
    padding: 0px;
    /* font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal; */
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body{
    /* background-image: url('../img/background.png'); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
   
}

main {
    background-image: url('../img/background.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
   
    height: 100dvh;  
    /* margin-top: -90px; */   
   


}



section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
       
}



.area_logo{
    /* background: red; */
    display: flex;
    justify-content: center;
    padding-top: 10px;
    z-index: 1;
}

.area_logo img{
    width: 130px;
}

.area_banner{
    background-color: #0c0c0c;
    height: 190px;    
    margin:110px 10px 0px 10px;
    border-radius: 10px;
   
    /* background-image: url('../img/image.png');
    background-repeat: no-repeat;
    background-size: cover; */
}

.title_banner{
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color:#F06800; */
    
}
.area_banner span{
    color: #FFFFFF;
    text-align: center;
    text-decoration: underline;
  
    font-size: 15px;
    font-weight: bold;
    
}

.img_banner{
    display: flex;               /* Usar flexbox para alinhar horizontalmente */
    /* justify-content: space-around;  */
    /* align-items: center;        */
    gap: 10px;                   /* Espaçamento entre as imagens */
    padding: 10px;   
    overflow-x: auto;            /* Espaçamento ao redor das imagens */
}

.img_banner img{
    width: 140px;                /* Definir uma largura padrão */
    height: 140px;               /* Definir uma altura padrão */
    object-fit: cover;           /* Ajusta a imagem mantendo a proporção */
    border-radius: 10px;         /* Bordas arredondadas para as imagens (opcional) */
}

.area_post{
    background-color: #141313ab;
    height: 115px;    
    margin:0px 10px;
    border-radius: 10px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;    

}

.area_frase{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;

}

.area_frase span{
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
}

.area_frase img{
    width: 24px;
    height: 24px;
   
}

.area_post p{
    color: #FFFFFF;
    padding: 10px;
    font-size: 16px;
    text-align: justify;

}

.btn-inscreve{
    margin: 0px 10px;
    border: none;
    height: 51px;
    background-color: #F06800;
    color: #FFFFFF;
    font-weight: bold;
    border-radius: 20px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.btn-inscreve:hover{
    background-color: chartreuse;
}

.btn-inscreve img{
    width: 42px;
    padding-right: 10px;
}

.social{
    display: flex;
    /* background: red; */
    justify-content: center;
    align-items: center;
   
}

.social img{
    width: 52px;
    padding: 10px;
    margin-top: 5px;
}

.descricao{   
    display: flex;               /* Usar flexbox para alinhar horizontalmente */
    justify-content: space-around; /* Espaçamento uniforme entre as imagens */
    align-items: center;         /* Centralizar verticalmente */
             
}

.descricao span{
    margin-top: -15px;
}


.login{
    position: absolute;
    color: #747474;
    margin-left: 70%;
    /* margin-top: 60px; */
    text-decoration: none;

}

