:root {
    --primary: #556B2F;     /* Verde Oliva Profundo (Destaque) */
    --secondary: #2F4F4F;   /* Cinza Ardósia Escuro (Texto/Menu) */
    --accent: #8FBC8F;      /* Verde Sálvia (Acento/Suave) */
    --bg: #FFFDF5;          /* Creme Suave (Fundo) */
    --white: #FFFFFF;
    --text: #2F4F4F;
    --shadow: rgba(47, 79, 79, 0.1);
}

/* Configurações Gerais */
body { 
    font-family: 'Outfit', sans-serif; 
    margin: 0; 
    padding: 0; 
    background: var(--bg); 
    color: var(--text);
    line-height: 1.6;
}

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

/* Cabeçalho */
header { 
    background: var(--white); 
    color: var(--secondary); 
    padding: 60px 0; 
    text-align: center;
    border-bottom: 3px solid var(--accent);
}

header h1 { 
    font-family: 'Playfair Display', serif;
    margin: 0; 
    font-size: 4.5rem; 
    letter-spacing: -2px; 
    font-weight: 900;
    line-height: 1;
}

header span { 
    font-size: 1rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 6px;
    color: var(--primary);
    display: block;
    margin-top: 10px;
}

/* Menu */
nav { 
    background: var(--secondary); 
    text-align: center; 
    padding: 18px 0; 
    position: sticky; 
    top: 0; 
    z-index: 1000;
    box-shadow: 0 4px 15px var(--shadow);
}

nav a { 
    color: var(--white); 
    text-decoration: none; 
    margin: 0 25px; 
    font-weight: 700; 
    font-size: 0.95rem;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    display: inline-block;
}

nav a:hover { 
    color: var(--accent);
    transform: translateY(-2px);
}

/* Banner e Cards */
.banner { 
    background: linear-gradient(135deg, var(--secondary), #2a9d8f); 
    padding: 80px 40px; 
    border-radius: 40px; 
    text-align: center; 
    margin-bottom: 40px; 
    color: var(--white);
    box-shadow: 0 25px 50px -12px rgba(38, 70, 83, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.banner h2 { 
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.2;
}

.banner p { 
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
}

.adsense-top { 
    background: var(--white); 
    height: 120px; 
    margin: 30px 0; 
    display: flex; 
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    color: #bbb; 
    border: 2px dashed #eee; 
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.feed { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 30px; 
}

.receita-card { 
    background: var(--white); 
    padding: 0; 
    border-radius: 30px; 
    box-shadow: 0 15px 35px var(--shadow); 
    text-align: center; 
    overflow: hidden;
    transition: 0.4s;
    border: 1px solid rgba(0,0,0,0.03);
}

.receita-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.thumb { 
    height: 240px;
    background: #f0f0f0; 
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.receita-card:hover .thumb img {
    transform: scale(1.1);
}

.card-info {
    padding: 30px;
}

.receita-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--secondary);
    margin: 10px 0;
    font-weight: 900;
}

.receita-card p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 25px;
}

button { 
    background: var(--primary); 
    color: white; 
    border: none; 
    padding: 15px 35px; 
    border-radius: 15px; 
    cursor: pointer; 
    font-weight: 800; 
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: 0.3s;
    box-shadow: 0 8px 15px rgba(231, 111, 81, 0.2);
}

button:hover { 
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(38, 70, 83, 0.2);
}

/* Rodapé */
footer { 
    background: var(--secondary); 
    color: white; 
    padding: 60px 0; 
    text-align: center; 
    margin-top: 80px; 
}

footer p { opacity: 0.7; font-size: 0.9rem; margin-bottom: 15px; }

.links-legais a { 
    color: var(--accent); 
    text-decoration: none; 
    font-size: 0.9rem; 
    font-weight: 600;
    margin: 0 10px;
}

.links-legais a:hover { text-decoration: underline; }

/* Estilos para Páginas de Receitas (Post Completo) */
.post-completo { 
    background: var(--white); 
    padding: 60px; 
    border-radius: 40px; 
    box-shadow: 0 20px 50px var(--shadow); 
    margin-top: 30px; 
}

.post-completo h2 { 
    font-family: 'Playfair Display', serif; 
    font-size: 2.8rem; 
    color: var(--secondary); 
    margin-bottom: 25px; 
    font-weight: 900; 
}

.post-completo h3 { 
    font-family: 'Playfair Display', serif; 
    font-size: 2rem; 
    color: var(--primary); 
    margin: 40px 0 20px; 
    font-weight: 700; 
    border-bottom: 2px solid var(--accent);
    padding-bottom: 10px;
}

.recipe-hero { 
    width: 100%; 
    height: 500px; 
    border-radius: 30px; 
    object-fit: cover; 
    margin-bottom: 40px; 
    box-shadow: 0 10px 30px var(--shadow);
}

.info-rapida { 
    display: flex; 
    justify-content: space-around; 
    background: var(--bg); 
    padding: 25px; 
    border-radius: 20px; 
    margin: 30px 0; 
    font-weight: 700; 
    color: var(--secondary);
    border: 1px solid rgba(0,0,0,0.05);
}

.info-rapida span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ingredientes ul, .preparo ol { 
    padding-left: 25px; 
    margin-bottom: 30px; 
}

.ingredientes li, .preparo li { 
    margin-bottom: 15px; 
    font-size: 1.15rem; 
    color: var(--text);
}

.dica-mestre { 
    background: #FFFBCC; /* Fundo amarelinho para destaque de dica */
    border-left: 6px solid var(--accent); 
    padding: 30px; 
    font-style: italic; 
    border-radius: 15px; 
    margin: 40px 0;
}

.dica-mestre strong {
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

.adsense-area { 
    background: #f9f9f9; 
    border: 1px dashed #ddd; 
    padding: 30px; 
    text-align: center; 
    margin: 40px 0; 
    color: #999; 
    border-radius: 15px;
    font-size: 0.9rem;
}

.back-link { 
    display: inline-flex; 
    align-items: center;
    gap: 8px;
    margin-bottom: 30px; 
    color: var(--primary); 
    text-decoration: none; 
    font-weight: 800; 
    font-size: 1rem;
    transition: 0.3s;
}

.back-link:hover {
    color: var(--secondary);
    transform: translateX(-5px);
}

/* Responsivo para Receitas */
@media (max-width: 768px) {
    .post-completo { padding: 30px 20px; }
    .post-completo h2 { font-size: 2rem; }
    .recipe-hero { height: 300px; }
    .info-rapida { flex-direction: column; gap: 15px; align-items: center; }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 25px;
    left: 20px;
    right: 20px;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    padding: 25px 40px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    border: 1px solid rgba(0,0,0,0.05);
    transform: translateY(150%);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--secondary);
    font-weight: 500;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 700;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin-left: 30px;
}

.btn-cookie-accept {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.85rem;
    white-space: nowrap;
    box-shadow: 0 8px 15px rgba(85, 107, 47, 0.2);
}

.btn-cookie-accept:hover {
    background: var(--secondary);
    transform: scale(1.05);
    box-shadow: 0 12px 20px rgba(47, 79, 79, 0.2);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 25px;
    }
    .cookie-buttons {
        margin-top: 20px;
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}
