
@import url(https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Irish+Grover&display=swap);
@import url("https://fonts.googleapis.com/css2?family=Inria+Serif&display=swap");

body {
    font-family: 'Roboto', sans-serif;
    background-color: #fdfdfd;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* --- Cabeçalho e Navegação --- */
header nav {
    display: flex;
    justify-content: space-between;
    padding: 2vw 8vw 2vw 8vw;
    align-items: center;
    box-shadow: 1px 1px 100px rgb(117, 109, 86);
    & div h1 {
        color: #809671;
        font-family: irish grover;
        font-size: 30px;
    }
    & div ul {
        display: flex;
        gap: 40px;
        & li a {
            font-family: inter;
            transition: text-shadow 0.1s ease;
        }
        & li a:hover {
            text-shadow: 10px 10px 10px black;
        }
    }
}


.receitas {
    background-color: #8F9779;
    color: #ffffff;
    padding: 60px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-image-wrapper {
    flex: 1;
    min-width: 400px; 
}


.hero-image-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    border: none;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-family: 'Lora', serif;
    font-size: 2.7rem; 
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.hero-text p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #FFFFFF;

}


.vejaTambem {
    padding: 60px 0;
}

.vejaTambem h2 {
    font-size: 2.5rem; 
    color:#809671;
    margin-bottom: 40px;
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.recipe-card {
    text-align: left;
}

.recipe-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.recipe-card h3 {
    font-size: 2.2rem; 
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
    font-family: Inria Serif;
}

.recipe-card p {
    font-size: 0.9rem;
    color:black;
    line-height: 1.5;
}



@media (max-width: 992px) {
    .recipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    header nav {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-image-wrapper {
        min-width: initial;
        width: 100%;
    }

    .hero-text h1 {
        font-size: 2.5rem; 
    }
    
    .recipe-grid {
        grid-template-columns: 1fr; 
    }

    .recipe-card img {
        height: auto;
    }

    header ul {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
}
#video-geral {
  
    background-color: #8A9A84; 
    padding: 40px 20px;
    color: #F5F5F5; 
    text-align: center;
}

.titulo-secao {
    font-family: 'Lora', serif; 
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.video-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px; 
    max-width: 1200px;
    margin: 0 auto; 
    text-align: left;
}

.video-texto {
    flex: 1; 
    max-width: 500px;
}

.video-texto h3 {
    font-size: 2.8rem; 
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
}

.video-texto p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
}

.video-thumbnail {
    flex: 1;
    max-width: 600px;
}

.video-thumbnail a {
    display: block;
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}


.video-thumbnail a:hover img {
    transform: scale(1.03);
}
footer {
    font-family: Inter;
    background: #526645;
    color: white;
    padding: 5vw 20vw 5vw 10vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .redes {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

footer h4 {
    font-size: 30px;
    color: white;
    font-family: Irish Grover;
    text-decoration: none;
    margin-bottom: 20px;
}

footer .redes img {
    width: 24px;
    height: 24px;
}


footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 100px;
}
footer li {
    margin-bottom: 8px;
}

footer a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: white;
}

footer .titulo-navegacao,
footer .titulo-duvidas,
footer .titulo-instucionais {
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #fff;
}