.elementor-562 .elementor-element.elementor-element-a5ccbec{--display:flex;}.elementor-562 .elementor-element.elementor-element-9d00f88 .dfc-grid{gap:25px;}.elementor-562 .elementor-element.elementor-element-9d00f88 .dfc-artigo-card{border-radius:8px;}.elementor-562 .elementor-element.elementor-element-9d00f88 .dfc-btn-ler-mais{background:#38c172;color:#ffffff;}:root{--page-title-display:none;}/* Start custom CSS for dfc-grid-artigos, class: .elementor-element-9d00f88 *//* 1. Container Principal do Grid */
.dfc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas iguais */
    gap: 30px; /* Espaço entre os cards */
    padding: 20px 0;
    font-family: 'Montserrat', sans-serif; /* Fonte padrão Dryfast */
}

/* 2. Estrutura do Card */
.dfc-artigo-card {
    display: flex;
    flex-direction: column;
    height: 100%; /* Garante que todos os cards tenham a mesma altura */
    background: transparent;
}

/* 3. Padronização das Imagens */
.dfc-artigo-img {
    margin-bottom: 15px;
}

.dfc-artigo-img a {
    display: block;
    width: 100%;
    height: 220px; /* Altura fixa para todas as imagens */
    overflow: hidden;
    border-radius: 15px; /* Bordas arredondadas conforme a imagem */
}

.dfc-artigo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Corta a imagem para preencher o espaço sem distorcer */
    object-position: center;
    transition: transform 0.5s ease;
}

.dfc-artigo-card:hover .dfc-artigo-img img {
    transform: scale(1.05); /* Efeito suave de zoom ao passar o mouse */
}

/* 4. Bloco de Informações e Títulos */
.dfc-artigo-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Faz o conteúdo ocupar o espaço para alinhar o botão no fundo */
}

.dfc-artigo-titulo {
    margin: 0 0 10px 0;
    min-height: 55px; /* Mantém o alinhamento mesmo com títulos curtos */
}

.dfc-artigo-titulo a {
    text-decoration: none;
    color: #004a80; /* Azul escuro da marca */
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.3;
    display: block;
}

/* 5. Remoção do Resumo (conforme a imagem) */
.dfc-artigo-resumo {
    display: none;
}

/* 6. Estilização do Link "Saiba Mais / Ler Artigo" */
.dfc-btn-ler-mais {
    background: none !important;
    padding: 0 !important;
    border: none !important;
    color: #26b67d !important; /* Verde da marca */
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    font-style: italic; /* Texto inclinado como na imagem */
    text-transform: uppercase;
    margin-top: auto; /* Empurra o link sempre para a base do card */
    display: inline-block;
    width: fit-content;
}

.dfc-btn-ler-mais:hover {
    color: #1e8e61 !important;
    text-decoration: underline;
}

/* 7. Responsividade para Mobile */
@media (max-width: 991px) {
    .dfc-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em tablets */
    }
}

@media (max-width: 767px) {
    .dfc-grid {
        grid-template-columns: 1fr; /* 1 coluna no celular */
        gap: 40px;
    }
    
    .dfc-artigo-img a {
        height: 200px; /* Ajuste de altura para telas menores */
    }
}/* End custom CSS */