@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;    
}

body{ 
    font-size: 100%;
    background: linear-gradient(68.15deg, #675bca 10%, #9363d6 90%);
}

.cabecalho {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 10px;
}

.cabecalho-imagem{
    height: 80px; /*tamanho da imagem*/
}

.cabecalho-menu{
    display: flex;
    gap: 35px;
}

.cabecalho-menu-item{
    font-family: 'Sarala', sans-serif;
    color:#fff8dc;
    font-weight: 400;
    font-size: 18px;

}
.conteudo{
    margin-bottom: 48px;
    border-top: 0.4px solid #fff8dc;
}

.conteudo-principal{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.conteudo-principal-escrito{
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.conteudo-h1{
    font-family: 'Righteous', cursive;
    font-weight: 400;
    font-size: 64px;
    color: #fff8dc;
}

.conteudo-h2{
    font-family: 'Sarala', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color:#d1cac3;
}

.conteudo-button{
    background-color: #fff8dc;
    color: #000000;
    width: 180px;
    height: 60px;
    border: none;
    box-shadow: 4px 5px 4px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    font-family: 'Sarala', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #000000dd;
         
}
.conteudo-button:hover {
    background-color: rgba(236, 214, 196, 0.53);
}
.conteudo-imagem{
height: 420px;

}
.conteudo-secundario{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
    
}
.conteudo-h3{
    border-top: 0.4px solid #ecd6c4;
    padding-top: 48px;
    font-family: 'Righteous', cursive;
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 16px;
    color: #ffffff

}
.conteudo-p{
    font-family: 'Sarala', sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: #fff8dc;

}
.rodape{
    border-top: 0.4px solid #ecd6c4;
    
}
.rodape-img{
    height: 150px;
    width: 289px;
    display: block;
    margin: 0 auto;

}