:root {
    --cor-header: #F4F4F4;
    --cor-fundo: #A5A5A5;
}

body {
    background-color: var(--cor-fundo);
    font-family: 'Inter', sans-serif;

}

.cabecalho {
    background-color: var(--cor-header);
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0px;
    top: 0px;
}

.logo {
    width: 90px;
    height: auto;
    padding: 0 20px;
}

.menu__lista {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.menu__item {
    list-style: none;
}

.a__header {
    color: #000000;
    margin-left: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    padding: 100px;
    margin-top: 1rem;
    font-size: 16px;

}

.a__header:hover {
    color: #30A124;
    font-weight: bold;
}

.banner {
    left: 0px;
    top: 60px;
}

.banner__img {
    width: 100%;
}

.receitas {
    display: flex;
    flex-wrap: wrap;
    padding: 5rem 0 0 5rem;
}

.receita {
    border-radius: 15px;
    align-items: center;
    background: #FDFDFD;
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
    margin-right: 2rem;
    width: calc(20% - 2.8rem);
    box-shadow: 10px 10px 30px #2E2D2C;
}

.receita__img {
    padding-top: 10px;
    width:205px;
    height: auto;
}

.receita__titulo {
    font-size: 16px;
}

.receita__descricao {
    font-size: 14px;
    line-height: 1.2;
    text-align: justify;
}

.receita__conteudo {
   padding: 1rem; 
}

.receita__botao {
    display: block;
    background: #102B15;
    border: none;
    border-radius: 5px;
    color: #FDFDFD;
    padding: 1rem;
    transition: all .1s ease-in-out;
    float: inline-end;
}

.receita__botao:hover {
    cursor: pointer;
    background: #085457;
}

.contato {
    position: relative;
    display: grid;
    text-align: center;
    height: 280px;
}

.contato__img {
    width: 100%;
}

.contato__titulo {
    color: black;
    top: 50%;
    text-align: center;
    transform: translate(0%, -550%);
    font-size: 30px;
    font-weight: 700;
}

.contato__texto {
    color: black;
    top: 50%;
    text-align: center;
    transform: translate(0%, -950%);
    font-size: 18px;
    font-weight: 300;
}

.contato__email {
    margin-left: 40%;
    padding: 0.5em;
    background-color: transparent;
    top: 50%;
    text-align: center;
    transform: translate(0%, -500%);
    border: 1px solid black;
    border-radius: 24px;
    width: 20%;
}

.contato__email::placeholder {
    font-weight: 300;
    font-size: 16px;
    text-align: center;
    color: black;
    background-image: url('../img/mail.png');
    background-repeat: no-repeat;
    background-position: 2em;
}

.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%;
}

.slider_area h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.2%;
}

.wrapper {
    height: 50px;
    align-items: center;
    margin: 0 auto;
    display: flex;
    overflow: hidden;
    padding: 1.5rem;
    background: white;
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
}

.item {
    padding: 0 30px;
    animation: animate 25s alternate linear infinite;
}

.wrapper:hover .item {
    animation-play-state: paused;
}

@keyframes animate {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-500px, 0, 0);
    }
}

.rodape {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.gif {
    width: 80px;
    height: auto;
}

.rodape__titulo {
    margin-top: 1.2%;
    padding-left: 5px;
    font-size: 18px;
    font-weight: 200;
    color: black;
}
