/* CSS Document */

:root {
    --vermelho: #B30000;
    --vermelho-escuro: #800000;
    --vermelho-claro: #e60000;
    --azul: #0f4c75;
    --azul-escuro: #0a3a5a;
    --azul-claro: #1b6ca8;
    --laranja: #ff6b35;
    --laranja-hover: #e85a2a;
    --branco: #ffffff;
    --cinza-claro: #f7f9fc;
    --cinza: #64748b;
    --texto: #1e293b;
    --verde: #10b981;
    --sombra: 0 10px 30px -10px rgba(179, 0, 0, 0.2);
    --sombra-lg: 0 20px 40px -15px rgba(179, 0, 0, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--texto);
    background: var(--branco);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bg-conselhos {
    background-color: #e9ffcd;


}

/* Bot�es */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--laranja);
    color: white;
    box-shadow: 0 8px 20px -8px var(--laranja);
}

.btn-primary:hover {
    background: var(--laranja-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -8px var(--laranja);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--vermelho);
}

.btn-outline {
    background: transparent;
    border-color: var(--vermelho);
    color: var(--vermelho);
}

.btn-outline:hover {
    background: var(--vermelho);
    color: white;
}

section {
    padding: 40px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--vermelho);
    font-weight: 400;
    margin-bottom: 12px;
}

.section-title p {
    color: var(--cinza);
    max-width: 600px;
    margin: 0 auto;
}

/* Header & Topbar */
.topbar {
    background: var(--vermelho);
    color: white;
    font-size: 13px;
    padding: 8px 0;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-contact {
    display: flex;
    gap: 20px;
}

.topbar-social {
    display: flex;
    gap: 14px;
}

.topbar-social a {
    opacity: 0.8;
    transition: 0.3s;
    color: white;
}

.topbar-social a:hover {
    opacity: 1;
    color: var(--laranja);
    transform: translateY(-1px);
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 1.6rem;
    color: var(--vermelho);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--vermelho), var(--vermelho-claro));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    font-weight: 500;
    color: var(--texto);
    position: relative;
    transition: color 0.3s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--laranja);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--vermelho);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--vermelho);
    cursor: pointer;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--vermelho) 0%, var(--vermelho-claro) 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--laranja);
}

.hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    opacity: 0.9;
}

.hero-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-media {
    position: relative;
}

.hero-img {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--sombra-lg);
    transform: rotate(2deg);
    transition: transform 0.5s;
    background: rgba(0, 0, 0, 0.1);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-img img {
    width: 576px;
    height: 324px;
    object-fit: cover;
}

.hero-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: white;
    color: var(--texto);
    padding: 18px 22px;
    border-radius: 16px;
    box-shadow: var(--sombra-lg);
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    background: var(--laranja);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

/* Contadores */
.counters {
    background: var(--cinza-claro);
    padding: 60px 0;
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.counter-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--sombra);
    border-top: 4px solid var(--laranja);
    transition: transform 0.3s;
}

.counter-card:hover {
    transform: translateY(-5px);
}

.counter-card i {
    font-size: 28px;
    color: var(--vermelho);
    margin-bottom: 10px;
}

.counter-title {
    font-size: 1.4rem;
    color: var(--texto);
    margin-bottom: 5px;
    font-weight: 700;
}

.counter-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--vermelho);
    line-height: 1;
}

.counter-label {
    color: var(--cinza);
    font-size: 14px;
    margin-top: 6px;
}

/* Projetos */
.projetos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.projeto-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--sombra);
    transition: all 0.3s;
    border: 1px solid #eef2f7;
    display: flex;
    flex-direction: column;
}

.projeto-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--sombra-lg);
}

.projeto-img {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
    /* background-color: #ddd; */
}

.projeto-img::after {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to top, rgba(179, 0, 0, 0.7), transparent);*/
}

.projeto-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.projeto-content h3 {
    color: var(--vermelho);
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.projeto-content p {
    font-size: 14px;
    color: var(--cinza);
    margin-bottom: 16px;
    flex-grow: 1;
}

.projeto-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.projeto-actions .btn {
    padding: 8px 12px;
    font-size: 13px;
    flex: 1;
    text-align: center;
}

/* Quem Somos */
#quem-somos {
    background: var(--cinza-claro);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-img {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--sombra-lg);
}

.sobre-content h3 {
    font-size: 1.8rem;
    color: var(--vermelho);
    margin-bottom: 16px;
}

.sobre-content p {
    margin-bottom: 16px;
    color: #475569;
}

.principios {
    margin-top: 24px;
    display: grid;
    gap: 14px;
}

.principio {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: white;
    padding: 14px 16px;
    border-radius: 12px;
    border-left: 4px solid var(--laranja);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.principio i {
    color: var(--laranja);
    margin-top: 3px;
}

/* Video */
.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--sombra-lg);
    background: black;
}

.video-ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Galeria & Lightbox */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.galeria-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--sombra);
    transition: all 0.3s;
    border: 1px solid #eef2f7;
    cursor: pointer;
    aspect-ratio: 1/1;
}

.galeria-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-lg);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Transpar�ncia */
.transp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.transp-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--sombra);
    border: 1px solid #eef2f7;
    text-align: center;
    transition: all 0.3s;
}

.transp-card:hover {
    transform: translateY(-5px);
}

.transp-card i {
    font-size: 36px;
    color: var(--vermelho);
    margin-bottom: 16px;
}

.transp-card h4 {
    color: var(--vermelho);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.transp-card p {
    font-size: 14px;
    color: var(--cinza);
    margin-bottom: 18px;
    min-height: 42px;
}

/* Doa��es */
#doacoes {
    background: linear-gradient(180deg, white 0%, var(--cinza-claro) 100%);
}

.doacao-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

.form-card {
    background: white;
    padding: 36px;
    border-radius: 24px;
    box-shadow: var(--sombra-lg);
}

.form-card h3 {
    color: var(--vermelho);
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.doacao-info {
    position: sticky;
    top: 100px;
}

.info-card {
    background: var(--vermelho);
    color: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: var(--sombra-lg);
}

.info-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.info-list {
    list-style: none;
    margin: 20px 0;
    display: grid;
    gap: 12px;
}

.info-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    opacity: 0.95;
}

.info-list i {
    color: var(--laranja);
    margin-top: 3px;
}

.pix-qr {
    width: 160px;
    height: 160px;
    margin: 0 auto 12px;
    border-radius: 12px;
    background: white;
    padding: 8px;
    display: block;
}

/* Depoimentos */
.depoimentos {
    background: rgb(228, 204, 204);
    border-radius: 10px;
}

.depo-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.depo-card {
    background: var(--cinza-claro);
    padding: 28px;
    border-radius: 20px;
    position: relative;
}

.depo-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 60px;
    color: #b30000;
    /* var(--laranja); */
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.depo-text {
    font-style: italic;
    color: #334155;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.depo-autor {
    display: flex;
    align-items: center;
    gap: 12px;
}

.depo-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vermelho), var(--laranja));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    overflow: hidden;
}

.depo-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.depo-nome {
    font-weight: 600;
    color: var(--vermelho);
    font-size: 15px;
}

.depo-cargo {
    font-size: 12px;
    color: var(--cinza);
}

/* Footer */
footer {
    background: var(--vermelho);
    color: #cbd5e1;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: white;
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.85;
    color: white;
}

.footer-col h5 {
    color: white;
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.footer-col a {
    font-size: 14px;
    opacity: 0.85;
    transition: 0.3s;
    color: white;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--laranja);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 14px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--laranja);
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    opacity: 0.7;
    color: white;
}

/* Content Page specific */
.page-header {
    background: var(--vermelho);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-content {
    padding: 60px 0;
    min-height: 400px;
}

/* Responsivo */
@media (max-width: 1024px) {

    .hero-grid,
    .sobre-grid,
    .doacao-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .counters-grid,
    .projetos-grid,
    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .depo-grid,
    .transp-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        border-bottom: 1px solid #f1f5f9;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .depo-grid,
    .projetos-grid,
    .transp-grid,
    .counters-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Not�cias - Novo Layout */
.noticias-layout {
    display: grid;
    grid-template-columns: 4fr 1.2fr;
    background-color: bisque;
    gap: 24px;
    align-items: start;
}

.noticias-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.noticia-card-dark {
    background: var(--vermelho-escuro);
    padding: 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s;
    border-radius: 0;
}

.noticia-card-dark:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-lg);
}

.noticia-card-dark .noticia-img {
    height: 180px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    margin-bottom: 15px;
    background-color: #ddd;
}

.noticia-card-dark .noticia-data {
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 5px;
}

.noticia-card-dark h3 {
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 10px;
}

.noticia-card-dark p {
    color: #f1f1f1;
    font-size: 12px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.noticia-card-dark .btn-leiamais {
    background: white;
    color: var(--vermelho-escuro);
    border-radius: 25px;
    padding: 10px 15px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    text-align: center;
    margin: 0 auto;
    display: block;
    width: 80%;
    transition: 0.3s;
}

.noticia-card-dark .btn-leiamais:hover {
    background: var(--laranja);
    color: white;
}

/* Outras Publicações (Sidebar) */
.noticias-sidebar {
    background: transparent;
    display: flex;
    flex-direction: column;
}

.noticias-sidebar-title {
    background: var(--vermelho-escuro);
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: 300;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.outra-noticia-item {
    border-left: 4px solid var(--vermelho-escuro);
    padding: 10px 15px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 10px;
    transition: background 0.3s;
    display: block;
}

.outra-noticia-item:hover {
    background: var(--branco);
}

.outra-noticia-item .data-badge {
    background: #b30000;
    color: #fff;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 8px;
}

.outra-noticia-item h4 {
    color: var(--vermelho-escuro);
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .noticias-layout {
        grid-template-columns: 1fr;
    }

    .noticias-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .noticias-cards-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Parceiros */
#parceiros {
    background: var(--cinza-claro);
    padding: 60px 0;
}

.parceiros-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.parceiro-item {
    max-width: 180px;
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0.7;
    filter: grayscale(100%);
}

.parceiro-item:hover {
    transform: scale(1.05);
    opacity: 1;
    filter: grayscale(0%);
}

@media (max-width: 1024px) {
    .noticias-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .noticias-grid {
        grid-template-columns: 1fr;
    }
}


/* TRANSPARENCIA */

/* ===== Container e T�tulo Geral ===== */
.container-transparencia {
    background-color: #e6e6e6;
    /* Fundo cinza bem claro */
    padding: 30px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.titulo-transparencia {
    color: #b30000;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 2rem;
}

/* ===== Cabe�alho do Ano (2020) ===== */
.ano-header {
    background-color: #999999;
    color: #ffffff;
    display: inline-block;
    padding: 8px 20px;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-radius: 4px;
}

/* ===== Grid de 4 Colunas Responsivo ===== */
.post-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    .post-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .post-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Cartão (Card) ===== */
.post-card {
    background-color: #424242;
    /* Fundo do card cinza */
    border: 1px solid #cccccc;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Cabeçalho Vermelho com Título Branco */
.card-header {
    background-color: #b30000;
    color: #ffffff;
    padding: 15px;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 1rem;
    text-align: center;
}

/* Linha da Data */
.card-meta {
    background-color: #ffffff;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.card-meta .label {
    color: #b30000;
    font-weight: bold;
    font-size: 0.9rem;
}

.date-box {
    background-color: #008080;
    /* Fundo verde escuro */
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 200;
}

/* Área de Texto (Excerpt) */
.card-excerpt {
    background-color: #ffffff;
    padding: 15px;
    flex-grow: 1;
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.5;
    min-height: 80px;
    /* Garante altura m�nima para alinhamento */
}

.card-excerpt p {
    margin: 0;
}

/* Botão Visualizar Arquivo */
.card-footer {
    padding: 15px;
    background-color: #e0e0e0;
}

.btn-visualizar {
    background-color: #b30000;
    color: #ffffff;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 200;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.btn-visualizar:hover:not(:disabled) {
    background-color: #990000;
}

.btn-visualizar:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    color: #666666;
}

/* ===== Estilos da Lightbox arquivo PDF - Transparência (Mantida e ajustada) ===== */
.modal-lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-lightbox-overlay.active {
    display: flex;
}

.modal-lightbox-content {
    background-color: #ffffff;
    width: 100%;
    max-width: 1000px;
    height: 90vh;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-header-lightbox {
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header-lightbox span {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
}

.btn-close-lightbox {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #333;
    transition: color 0.2s;
}

.btn-close-lightbox:hover {
    color: #b30000;
}

.modal-body-lightbox {
    flex-grow: 1;
    position: relative;
    background-color: #f0f0f0;
}

.modal-body-lightbox iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* fim da lightbox da transparência */

/* ============================================================

   Card Forge · classe base .style-conselhos
       */

.style-conselhos-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 16px;
    margin: 0px;
    background-color: #f0f0f0;
    border: 1px solid #e3e7ec;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0px 10px 24px -8px rgba(15, 23, 42, 0.18);
    transition: transform .25s ease, box-shadow .25s ease;
}

.style-conselhos-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 18px 38px -8px rgba(15, 23, 42, 0.32);
}

.style-conselhos-thumb {
    display: block;
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 10px;
}

.style-conselhos-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    flex: 1;
}

.style-conselhos-title {
    font-family: 'Poppins', sans-serif;
    color: #16202b;
    text-align: left;
    margin: 0;
    line-height: 1.25;
}

.style-conselhos-title a {
    color: inherit;
    text-decoration: none;
}

.style-conselhos-title-1 {
    font-size: 20px;
    color: #b30000;
    font-weight: 400;
}

.style-conselhos-text {
    font-family: 'Inter', sans-serif;
    color: #5a6472;
    font-size: 13.5px;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

.style-conselhos-badge {
    align-self: flex-start;
    background: #16202b;
    color: #ffd66b;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 99px;
}

.style-conselhos-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ffd66b;
    color: #8a5a00;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}

.style-conselhos-icon svg {
    width: 55%;
    height: 55%;
    fill: currentColor;
}

.style-conselhos-icon--inline {
    position: static;
}

.style-conselhos-section {
    margin: 0 0 46px;
}

.style-conselhos-section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 30px;
    color: #b30000;
    margin: 0 0 18px;
    padding-left: 13px;
    border-left: 4px solid #e3e7ec;
}

.style-conselhos-grid {
    display: grid;
    gap: 20px;
}

.style-conselhos-grid--1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.style-conselhos-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.style-conselhos-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.style-conselhos-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 720px) {

    .style-conselhos-grid--1,
    .style-conselhos-grid--2,
    .style-conselhos-grid--3,
    .style-conselhos-grid--4 {
        grid-template-columns: 1fr;
    }
}

/*/novo estilos */