@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&family=Roboto:wght@400&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.cabecalho{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 2.5rem 1.25rem;

    background-color: #603F26;
    margin: 1.25rem 1.25rem 5rem;
    border-radius: 12px;
}

.cabecalho__titulo__imagem {
    display: flex;
    justify-content: space-between;
    text-align: center;
    align-items: center;

    gap: 30px;
}

.cafe__icone {
    width: 2em;
    height: 2em;
}

.cabecalho__titulo {
    font-size: 2.5rem;
    color: #FFEAC5;
}

.cabecalho__links{
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
    font-weight: 100;
    font-style:normal;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.cabecalho__links__link {
    text-decoration: none;
    color: #FFEAC5;

}

body {
    background-color: #FFDBB5;
    font-family: 'Amatic SC', sans-serif;
    font-weight: 400;
    font-style: normal;
}

.conteudo__principal {
    font-size: 40px;
    padding: 0 15%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.conteudo__secao {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 10px;
}

.rodape {
    margin: 1,875rem;
    padding: 1.875rem 0px 1.25rem;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
}

@media (max-width: 590px) {
    .cabecalho {
        padding: 5%;
    }

    .cabecalho__titulo__imagem{
        margin: 5%;
    }

    .cafe__icone {
        width: 75px;
        height: auto;
    }

    .cabecalho__links {
        padding: 5%;
        flex-direction: column;
        text-align: center;
    }

    .conteudo__texto {
        text-align: justify;
    }
}