/* =====================================================
   NOTÍCIA / BLOG – INTERNA
===================================================== */

.blog-header {
    text-align: center;
    padding: 50px 20px 20px;
    background: linear-gradient(to bottom, #eaf7ec, #ffffff);
}

.blog-header h1 {
    font-size: 34px;
    font-weight: 700;
    color: #0b4214;
}

.blog-subtitle {
    margin-top: 8px;
    color: #2e5c32;
    font-size: 16px;
}

.blog-breadcrumbs {
    margin-top: 20px;
    font-size: 15px;
}

.blog-breadcrumbs a {
    color: #0b4214;
    text-decoration: none;
    font-weight: 600;
}

.blog-breadcrumbs a:hover {
    text-decoration: underline;
}

/* CONTEÚDO */
.content-wrapper {
    width: 90%;
    max-width: 1250px;
    margin: auto;
    padding: 40px 0;
    font-size: 17px;
    line-height: 1.7;
    color: #222;
}

.featured-img {
    float: left;
    width: 40%;
    max-width: 480px;
    margin: 0 25px 20px 0;
    border-radius: 8px;
}

@media(max-width: 900px){
    .featured-img {
        float: none;
        width: 100%;
        margin: 0 0 25px 0;
    }
}

/* GALERIA */
.noticia-galeria {
    padding: 60px 0;
}

.galeria-title {
    font-size: 26px;
    margin-bottom: 30px;
    color: #0b4214;
    text-align: center;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.galeria-item img {
    width: 100%;
    border-radius: 8px;
    transition: transform .2s ease;
}

.galeria-item:hover img {
    transform: scale(1.03);
}

/* CTA */
.cta-box {
    margin: 50px auto;
    background: #0b4214;
    padding: 35px;
    text-align: center;
    border-radius: 10px;
    color: white;
    max-width: 900px;
}

.cta-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.cta-btn {
    background: #22c55e;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
}

/* MAIS CONTEÚDOS */
.more-title {
    text-align: center;
    margin: 50px 0 25px;
    font-size: 24px;
    font-weight: 700;
    color: #064a1f;
}

.more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: auto;
}

.more-card {
    display: flex;
    gap: 15px;
    padding: 12px;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    color: #064a1f;
    border: 1px solid #e7e7e7;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: .2s;
}

.more-card:hover {
    transform: translateY(-4px);
}

.more-thumb img {
    width: 110px;
    height: 75px;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .more-grid {
        grid-template-columns: 1fr;
    }
}
#noticia-interna {
    background: #fff;
}

.noticia-header {
    padding: 60px 0 30px;
}

.noticia-header h1 {
    font-size: 42px;
    max-width: 900px;
    line-height: 1.2;
}

.noticia-subtitle {
    margin-top: 15px;
    font-size: 18px;
    color: #666;
    max-width: 720px;
}

.noticia-cover {
    padding: 40px 0;
}

.noticia-cover img {
    width: 100%;
    height: auto;
    display: block;
}

.noticia-body {
    padding: 60px 0;
}

.noticia-content {
    max-width: 820px;
    line-height: 1.8;
    font-size: 17px;
    color: #333;
}

.noticia-content h2,
.noticia-content h3 {
    margin-top: 40px;
}
