.cabecalho {
    align-items: center;
    background: #F9F9F9;
    display: flex;
    justify-content: space-between;
    padding-left: 2rem;
    padding-right: 2rem;
}

.menu__lista {
    display: flex;
}

.menu__item {
    list-style: none;
}

.a__header {
    color: #808080;
    margin-right: 1.25rem;
    text-decoration: none;
    text-transform: uppercase;
}

.a__header:hover {
    color: #333333;
    font-weight: bold;
}

.banner__img {
    width: 100%;
}

.banner {
    position: relative;
}

.banner__titulo {
    font-family: Pacifico, cursive;
    color: #FDFDFD;
    font-size: 5.0625rem;
    position: absolute;
    left: 50%;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.75);
    top: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    width: 100%;
}

.sobre {
    text-align: center;
    padding: 2.5rem;
}

.sobre__titulo {
    font-family: Pacifico, cursive;
    color: #8D0606;
    font-size: 3.1875rem;
}

.sobre__descricao {
    color: #595959;
    font-size: 1.75rem;
    font-weight: 100;
}

.receitas {
    background: #E5E5E5;
    display: flex;
    flex-wrap: wrap;
    padding: 5rem 0 0 5rem;
}

.receita {
    background: #FDFDFD;
    display: flex;
    flex-direction: column;
    margin-bottom: 5rem;
    margin-right: 5rem;
    width: calc(25% - 5rem);
}

.receita__titulo {
    font-size: 1.4375rem;
}

.receita__descricao {
    font-size: 1.1875rem;
    line-height: 1.5;
    text-align: justify;
}

.receita__conteudo {
   padding: 1rem; 
}

.receita__botao {
    background: #8D0606;
    border: none;
    border-radius: 5px;
    color: #FDFDFD;
    padding: 1rem;
    transition: all .1s ease-in-out;
}

.receita__botao:hover {
    cursor: pointer;
    background: #CE1111;
}

.quemsomos {
    text-align: center;
    padding: 2rem;
}

.quemsomos__titulo {
    margin-bottom: 1rem;
    font-family: Pacifico, cursive;
    color: #8D0606;
    font-size: 3.1875rem;
}

.quemsomos__descricao {
    font-weight: 100;
    font-size: 1.75rem;
    color: #595959;
}

.pessoas {
    display: flex;
    justify-content: space-around;
}

.pessoa {
    display: flex;
    flex-direction: column;
    padding-top: 3rem;
    transition: all .1s ease-in-out;
}

.pessoa:hover {
    transform: scale(1.2, 1.2);
}

.pessoa__imagem {
    height: 150px;
    margin: 0 auto;
    width: 150px;
    border: none;
    border-radius: 100%;
}

.pessoa__nome {
    font-family: Pacifico, cursive;
    color: #8D0606;
    margin: 1rem 0;
    font-size: 2rem;
}

.pessoa__funcao {
    color: #595959;
    font-size: 1.25rem;
}

.pessoa_imagem__roberta {
    background-image: url('roberta.jpg');
    background-repeat: no-repeat;
    background-size: 150px 150px;
}

.pessoa_imagem__marcela {
    background-image: url('marcela.jpg');
    background-repeat: no-repeat;
    background-size: 150px 150px;
}

.pessoa_imagem__andreia {
    background-image: url('andreia.jpg');
    background-repeat: no-repeat;
    background-size: 150px 150px;
}

.rodape {
    background: #BFBFBF;
    color: #FDFDFD;
    padding: 1.5625rem 5rem;
    font-size: 1.5rem;
    display: flex;
}

.contato {
    padding-right: 10px;
}

.contato_img {
    height: 20px;
    width: 20px;
    border: none;
    padding: 10px;
}

.contato_img:hover {
    transform: scale(1.2, 1.2);
}

.contato_img__facebook {
    background-image: url('facebook.png');
    background-repeat: no-repeat;
}

.contato_img__instagram {
    background-image: url('instagram.png');
    background-repeat: no-repeat;
}

.contato_img__whatsapp {
    background-image: url('whatsapp.png');
    background-repeat: no-repeat;
}

.contato_img__youtube {
    background-image: url('youtube.png');
    background-repeat: no-repeat;
}