/* --- CONFIGURAÇÃO GLOBAL --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
    font-family: 'Lora', serif; 
    background-color: #000000 !important; /* Força o fundo escuro */
    color: #ffffff; 
    line-height: 1.8; 
}

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

/* --- NAVBAR --- */
.navbar { 
    background: #000000; 
    border-bottom: 1px solid #30363d; 
    padding: 15px 5%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
}

.nav-brand { color: #3cd054; font-weight: bold; font-size: 1.1rem; }
.nav-links { display: flex; list-style: none; gap: 25px; margin: 0; padding: 0; }
.nav-links a { color: #ffffff; text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: #3cd054; }
.menu-icon { display: none; cursor: pointer; color: #3cd054; font-size: 1.8rem; }

/* --- HEADER: LOGO E TITULO LADO A LADO --- */
.main-header { 
    display: flex; 
    align-items: center; 
    gap: 35px; 
    padding: 40px 0; 
}

.logo-box img { 
    width: 150px; 
    height: 150px; 
    border-radius: 50%; 
    border: 3px solid #30363d; 
    flex-shrink: 0;
    object-fit: cover;
}

.header-text h1 { 
    color: #3cd054; 
    font-size: 3rem; 
    margin: 0; 
    text-transform: uppercase;
    letter-spacing: -1px;
}

.tagline { 
    color: #ffffff; 
    font-style: italic; 
    font-size: 1.2rem; 
    margin-top: 5px; 
}

.divider { height: 1px; background: #30363d; margin-bottom: 40px; }

/* --- POST DESTAQUE --- */
.featured-post { border-left: 5px solid #3cd054; padding-left: 30px; margin-bottom: 50px; }
.label-ultima { color: #f1c40f; font-weight: bold; font-size: 0.8rem; text-transform: uppercase; }
.post-title { color: #3cd054; font-size: 2.5rem; margin: 15px 0; line-height: 1.2; }
.post-chamada { font-size: 1.4rem; color: #ffffff; margin-bottom: 25px; }
.post-body { text-align: justify; font-size: 1.1rem; }

/* --- GRID DE POSTS --- */
.section-title { color: #000000; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 20px; }
.grid-posts { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; margin-bottom: 60px; }
.card { background: #000000; padding: 25px; border: 1px solid #30363d; border-radius: 8px; transition: 0.3s; }
.card:hover { border-color: #3cd054; transform: translateY(-5px); }
.card h3 { color: #3cd054; margin-bottom: 12px; font-size: 1.4rem; }
.card-date { color: #f1c40f; font-size: 0.75rem; display: block; margin-bottom: 10px; }

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .menu-icon { display: block; }
    .nav-links { 
        display: none; 
        flex-direction: column; 
        width: 100%; 
        position: absolute; 
        top: 60px; 
        left: 0; 
        background: #161b22; 
        padding: 25px; 
    }
    .nav-links.active { display: flex; }
    .main-header { flex-direction: column; text-align: center; }
    .post-title { font-size: 2rem; }
}

footer { text-align: center; padding: 50px; color: #444; border-top: 1px solid #30363d; }