/*:root {
    --bege-claro: #faf3e0;
    --bege-medio: #e6d2aa;
    --bege-escuro: #d4b896;
    --verde-pastel: #a7c4b5;
    --primary-dark: #8fb2a3;
    --cinza-escuro: #333;
    --cinza-medio: #666;
    --branco: #ffffff;
    --shadow: 0 4px 15px rgba(0,0,0,0.06);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background-color: var(--bege-claro);
    color: var(--cinza-escuro);
    margin: 0;
}

a {
    text-decoration: none;
    transition: var(--transition);
}*/

/* HEADER & NAVBAR (Sincronizado com seu _Layout) */
/*.header {
    background: var(--branco);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none !important;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--cinza-escuro) !important;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}

    .nav-links a {
        color: var(--cinza-medio);
        font-weight: 600;
        font-size: 0.95rem;
    }

        .nav-links a:hover, .nav-links a.active {
            color: var(--verde-pastel);
        }

.admin-link {
    background: var(--bege-claro);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid var(--bege-medio);
}

.btn-outline {
    border: 2px solid var(--verde-pastel);
    color: var(--cinza-escuro);
    padding: 6px 15px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

    .btn-outline:hover {
        background: var(--verde-pastel);
        color: white;
    }*/

/*DAQUI PARA CIMA COLOCADO NO OUTRO CSS*/

/* HERO (PÁGINA INICIAL) */
/*.hero-section {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-default-bg {
    background: linear-gradient(135deg, var(--verde-pastel), var(--bege-escuro));
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.hero-badge {
    background: var(--verde-pastel);
    color: var(--cinza-escuro);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn-hero-primary {
    background: var(--verde-pastel);
    color: var(--cinza-escuro);
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
}

.btn-hero-secondary {
    border: 2px solid white;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
}*/

/* MAIN CONTENT & CARDS */
/*.main-content {
    padding: 60px 0;
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 8px;
}

.title-underline {
    width: 60px;
    height: 5px;
    background: var(--verde-pastel);
    border-radius: 3px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

    .post-card:hover {
        transform: translateY(-8px);
    }

.post-card-img {
    height: 200px;
    position: relative;
}

    .post-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.post-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--verde-pastel);
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
}

.post-card-body {
    padding: 25px;
    flex-grow: 1;
}

.post-card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--cinza-escuro);
}

.post-excerpt {
    font-size: 0.95rem;
    color: var(--cinza-medio);
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: #bbb;
    border-top: 1px solid #f9f9f9;
    padding-top: 15px;
}

.post-link {
    color: var(--verde-pastel);
    font-weight: 700;
    font-size: 0.9rem;
}*/

/* FOOTER (Sincronizado com seu _Layout) */
/*.footer {
    background: #222;
    color: #eee;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: var(--verde-pastel);
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.footer-brand p {
    opacity: 0.7;
    font-size: 0.9rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

    .social-links a {
        color: white;
        font-size: 1.2rem;
        opacity: 0.6;
    }

        .social-links a:hover {
            opacity: 1;
            color: var(--verde-pastel);
        }

.footer-links h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
}

    .footer-links a:hover {
        color: var(--verde-pastel);
        padding-left: 5px;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}*/

/* RESPONSIVO */
/*@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        display: none;
    }*/
    /* Menu hamburguer seria necessário aqui */
/*}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}*/


/* --- ESTILOS DO POST (BANNER E CONTEÚDO) --- */

/*.post-banner-container {
    width: 100%;
    position: relative;
    background-color: var(--bege-medio);
}

.post-banner-image {
    width: 100%;
    height: 400px;*/ /* Altura do banner no topo */
    /*background-size: cover;
    background-position: center;
    position: relative;
}

.post-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
}*/

/* Ajuste para o Título ficar Profissional */
/*.post-header {
    padding: 40px 0;
    border-bottom: 1px solid var(--bege-medio);
    margin-bottom: 30px;
}

.post-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--cinza-escuro);
    line-height: 1.2;
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--cinza-medio);
    font-size: 0.9rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .meta-item i {
        color: var(--verde-pastel);
    }*/

/* Espaçamento do Conteúdo */
/*.post-content {
    line-height: 1.8;
    font-size: 1.15rem;
    color: #444;
}

.post-article p {
    margin-bottom: 1.5rem;
}*/