 <!-- ESTILOS DO TOPO + LAYOUT -->

        .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;
        }

        /* IMG + TEXTO */
        .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;
            }
        }

        /* CTA FINAL */
        .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;
            font-weight: 700;
        }
        .cta-btn {
            background: #22c55e;
            color: #fff;
            padding: 12px 28px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 17px;
            font-weight: 600;
            display: inline-block;
        }
        .cta-btn:hover {
            background: #1da851;
        }

        /* MAIS CONTEÚDOS */
        .more-posts-title {
            text-align: center;
            margin: 60px 0 30px;
            font-size: 20px;
            font-weight: 700;
            color: #0b4214;
        }

        .more-posts-grid {
            width: 90%;
            max-width: 1250px;
            margin: auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .post-card {
            background: #ffffff;
            border-radius: 10px;
            padding: 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }
        .post-card img {
            width: 100%;
            border-radius: 8px;
        }
        .post-card h4 {
            font-size: 18px;
            margin-top: 12px;
            color: #0b4214;
        }
        .post-card a {
            color: #0b4214;
            text-decoration: none;
        }


/* ===== TÍTULO DA PÁGINA ===== */
.blog-title-wrapper {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(to bottom, #e1f6e4, #ffffff00);
}
.blog-title-wrapper h1 {
    font-size: 36px;
    font-weight: 700;
    color: #0f4d23;
    margin-bottom: 10px;
}

/* ===== BREADCRUMB ===== */
.breadcrumbs {
    margin: 10px auto 30px;
    padding: 8px 15px;
    background: #e7f9e9;
    border-radius: 6px;
    font-size: 14px;
    width: fit-content;
}
.breadcrumbs a {
    color: #0f4d23;
    text-decoration: none;
    font-weight: 600;
}
.breadcrumbs span {
    opacity: .4; margin: 0 8px;
}

/* ===== GRID DO BLOG ===== */
.h-p-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0,0,0,.08);
    padding-bottom: 15px;
    transition: .25s ease;
    overflow: hidden;
}
.h-p-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
}
.h-p-box h3 {
    font-size: 19px;
    color: #0f4d23;
    font-weight: 700;
}
.h-p-box p {
    font-size: 15px;
    line-height: 1.5;
    color: #444;
}

/* IMAGENS */
.h-p-box .h320 img {
    width: 100%;
    border-radius: 0;
    height: 230px;
    object-fit: cover;
}

/* MOBILE */
@media(max-width: 768px){
    .h-p-box { margin-bottom: 25px; }
    .blog-title-wrapper h1 { font-size: 26px; }
}


/* Título */
.more-title {
    text-align: center;
    margin: 50px 0 25px;
    font-size: 24px;
    font-weight: 700;
    color: #064a1f;
}

/* GRID principal */
.more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.more-card {
    display: flex;
    align-items: center;
    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: transform .2s ease, box-shadow .2s ease;
}

.more-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

/* Miniatura */
.more-thumb img {
    width: 110px;
    height: 75px;
    object-fit: cover;
    border-radius: 10px;
}

/* Título */
.more-info h3 {
    font-size: 15px;
    line-height: 1.25;
    font-weight: 600;
    color: #064a1f;
}

/* MOBILE */
@media (max-width: 768px) {
    .more-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .more-card {
        padding: 10px;
    }

    .more-thumb img {
        width: 95px;
        height: 65px;
    }
}

