
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Righteous&family=Sarala:wght@400;700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body{
    font-size: 100%;
}

.cabecalho{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 35px;
    gap: 70px;
    margin-left: 40px;
    
}

.cabecalho-item{
    font-weight: 550;
    color: black;
    font-size: 16px;
}

.cabecalho-botao{
    background-color: #6FBF44;
    color: white;
    width: 130px;
    height: 55px;
    border: none;
    box-shadow: 4px 5px 4px rgba(0, 0, 0, 0);
    border-radius: 10px;
    cursor: pointer;
}

.cabecalho-botao:hover {
    background-color: rgba(197, 193, 193, 0.808);
}

.conteudo{
    display: flex;
    padding: 20px;
}

.esquerda, .direita{
    flex: 1;
    padding: 20px;
}

.esquerda{
    padding: 50px;
    margin: 20px;
}

.direita{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: start;
}

.titulo-principal{
    font-size: 62px;
    font-weight: 800;
    padding-bottom: 70px;
}

.paragrafo-principal{
    padding-bottom: 60px;
    font-size: 18px;
    color: rgb(75, 74, 74);
    font-weight: 450;
}

.botao-principal{
    background-color: #6FBF44;
    color: white;
    font-size: 20px;
    font-weight: 500;
    width: 130px;
    height: 55px;
    border: none;
    box-shadow: 4px 5px 4px rgba(207, 207, 207, 0);
    border-radius: 10px;
    cursor: pointer;
}

.botao-principal:hover {
    background-color: rgba(197, 193, 193, 0.808);
}