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


/* Configuração Geral */

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

body {
    background: linear-gradient(90deg, rgba(135, 206, 250, 1) 34%, rgba(173, 216, 230, 1) 55%, rgba(255, 255, 255, 1) 100%);
    font-size: 100%;
}

/* Cabeçalho */

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

.menu_logo {
    height: 72px;
}

.menu {
    display: flex;
    gap: 32px;
}

.menu_item {
    font-family: 'Freckle Face', cursive;
    color: rgb(0, 0, 0);
    font-weight: 300;
    font-size: 26px;
}

.menu_item:hover {
    color: rgb(175, 114, 22);
    text-decoration: underline;
    cursor: pointer;
}

/* Conteúdo Principal */

.conteudo {
    border-top: 0.4px solid rgb(255, 255, 255, 1);
    margin-bottom: 48px;
}

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

.conteudo_principal_texto {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.titulo {
    font-family: 'Freckle Face', cursive;
    font-weight: 400;
    font-size: 170px;
    color: rgb(0, 0, 0);
}

.subtitulo {
    font-family: 'Sarala', sans-serif;
    font-weight: 300;
    font-size: 26px;
    color: rgb(0, 0, 0)
}

.botao {
    background-color: rgba(255, 255, 255, 1);
    width: 180px;
    height: 60px;
    border: none;
    box-shadow: 4px 5px 4px rgb(0, 0, 0, 0.25);
    border-radius: 20px;
    font-family: 'Freckle Face', cursive;
    font-weight: 400;
    font-size: 28px;
    color: rgb(0, 0, 0)
}

.botaoLink {
    color: rgb(0, 0, 0)
}

.botaoLink:hover {
    color: rgb(175, 114, 22);
    cursor: pointer;
}

.img_nut {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 52px;
}

.nut_logo {
    width: 270px;
}

/* Conteúdo Secundário */

.conteudo_secundario {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
}

.conteudo_secundario_titulo {
    border-top: 0.4px solid rgb(255, 255, 255, 1);
    padding-top: 48px;
    font-family: 'Freckle Face', cursive;
    font-weight: 400;
    font-size: 34px;
    color: rgb(0, 0, 0);
    margin-bottom: 16px;
}

.conteudo_texto {
    font-family: 'Sarala', sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: rgb(0, 0, 0)
}

/* Rodapé */

.rodape {
    padding: 32px;
    border-top: 0.4px solid rgb(255, 255, 255, 1);
}

.rodape_texto {
    font-family: 'Sarala', sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: rgb(0, 0, 0);
    text-align: left;
}

.emblemas {
    width: 30px;
    height: 40px;
}