/* ========================================================================
   ESTILOS CATÁLOGO - TRAÇO
   ======================================================================== */

:root {
    --dfc-cor-principal: #38c172;
    --dfc-cor-secundaria: #2d9e5f;
    --dfc-cor-terciaria: #1d5f3f;
    --dfc-cor-fundo-lateral: #f8faf9;
    --dfc-cor-texto: #1a1a1a;
    --dfc-cor-texto-inativo: #666666;
    --dfc-cor-borda: #e0e0e0;
    --dfc-cor-fundo-ativo: #f0f8f5;
    --dfc-cor-fundo-submenu: #f5f5f5;
    --dfc-cor-alerta: #dc3232;
    --dfc-cor-warning: #FF5224;
    --dfc-cor-sombra: rgba(0, 0, 0, 0.08);
    --dfc-cor-sombra-hover: rgba(56, 193, 114, 0.12);
}

/* ========================================================================
   LAYOUT GERAL E WRAPPER
   ======================================================================== */

.dfc-catalogo-wrapper {
    display: flex;
    gap: 30px;
    margin: 20px auto;
    position: relative;
    max-width: 1200px;
    padding: 0 15px;
}

.dfc-grid-produtos,
.dfc-grid-produtos-modular {
    flex-grow: 1;
    min-height: 500px;
    min-width: 0;
}

/* ========================================================================
   GRID DE PRODUTOS
   ======================================================================== */

.dfc-grid {
    display: grid !important;
    gap: 24px;
}

.dfc-colunas-3 {
    grid-template-columns: repeat(3, 1fr) !important;
}

.dfc-colunas-4 {
    grid-template-columns: repeat(4, 1fr) !important;
}

/* ========================================================================
   WIDGET DESTAQUES
   ======================================================================== */

.dfc-destaque-wrapper {
    margin-bottom: 40px;
}

.dfc-destaque-titulo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dfc-cor-principal);
}

.dfc-destaque-tabs {
    border-bottom: 2px solid #eee;
    margin-bottom: 25px;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* Scroll suave no iOS */
    padding-bottom: 2px;
    /* Evitar corte do border bottom active */
}

/* Esconder barra de rolagem em navegadores webkit mas manter funcionalidade */
.dfc-destaque-tabs::-webkit-scrollbar {
    height: 4px;
}

.dfc-destaque-tabs::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.dfc-destaque-tab {
    background: none;
    border: none;
    padding: 10px 5px;
    font-size: 16px;
    cursor: pointer;
    color: #555;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    white-space: nowrap;
}

.dfc-destaque-tab:hover {
    color: var(--dfc-cor-principal);
}

.dfc-destaque-tab.ativo {
    color: #333;
    border-bottom-color: var(--dfc-cor-principal);
    font-weight: 600;
}

@media (max-width: 480px) {
    .dfc-destaque-titulo {
        font-size: 20px;
        text-align: center;
    }

    .dfc-destaque-tabs {
        gap: 10px;
    }

    .dfc-destaque-tab {
        font-size: 14px;
        padding: 8px 4px;
    }
}

.dfc-produto-card {
    background: white;
    border-radius: 8px;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--dfc-cor-sombra);
}

.dfc-produto-card:hover {
    box-shadow: 0 8px 20px var(--dfc-cor-sombra-hover);
    transform: translateY(-2px);
}

.dfc-produto-thumbnail {
    height: 437px;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f8f8;
    padding: 0;
    border-radius: 0;
}

.dfc-produto-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.dfc-produto-card:hover .dfc-produto-thumbnail img {
    transform: scale(1.05);
}

.dfc-produto-titulo,
.dfc-produto-titulo a {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dfc-cor-texto);
    text-decoration: none;
    text-transform: capitalize;
    padding: 12px;
}

.dfc-produto-titulo a:hover {
    color: var(--dfc-cor-principal);
}

.dfc-produto-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    padding: 0;
}

/* ========================================================================
   BOTÕES
   ======================================================================== */

.dfc-botao-detalhes,
.dfc-load-more-btn {
    background-color: var(--dfc-cor-principal);
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: white !important;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--dfc-cor-principal);
    cursor: pointer;
    display: inline-block;
    margin: 12px auto;
    align-self: center;
    letter-spacing: 0.5px;
}

.dfc-botao-detalhes:hover,
.dfc-load-more-btn:hover {
    background-color: var(--dfc-cor-secundaria);
    border-color: var(--dfc-cor-secundaria);
    transform: translateY(-2px);
}

/* ========================================================================
   SIDEBAR / FILTROS
   ======================================================================== */

.dfc-sidebar-filtros,
.dfc-sidebar-filtros-modular {
    flex: 0 0 250px;
    background-color: var(--dfc-cor-fundo-lateral);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.dfc-busca-wrapper {
    padding: 15px;
    background: #fff;
    border-bottom: 1px solid #eee;
}

#dfc-busca-produto,
.dfc-busca-produto,
.dfc-busca-produto-modular {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 14px;
}

.dfc-lista-categorias,
.dfc-lista-categorias-modular {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dfc-filter-item,
.dfc-filter-item-modular {
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
}

.dfc-filter-link-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
}

.dfc-filter-link,
.dfc-filter-link-modular {
    text-decoration: none;
    color: var(--dfc-cor-texto-inativo);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    flex-grow: 1;
}

.dfc-filter-item.ativo>.dfc-filter-link-wrapper,
.dfc-filter-item-modular.ativo>.dfc-filter-link-wrapper {
    background-color: var(--dfc-cor-fundo-ativo);
}

.dfc-filter-item.ativo .dfc-filter-link,
.dfc-filter-item-modular.ativo .dfc-filter-link-modular {
    color: var(--dfc-cor-principal);
}

.dfc-sub-menu,
.dfc-sub-menu-modular {
    list-style: none;
    padding: 0;
    display: none;
    background: var(--dfc-cor-fundo-submenu);
}

.dfc-sub-menu .dfc-filter-link-wrapper,
.dfc-sub-menu-modular .dfc-filter-link-wrapper {
    padding-left: 35px;
}

.dfc-filter-item.ativo>.dfc-sub-menu,
.dfc-filter-item-modular.ativo>.dfc-sub-menu-modular {
    display: block;
}

/* ========================================================================
   TAGS E MENSAGENS
   ======================================================================== */

.dfc-categoria-tag {
    background: var(--dfc-cor-warning) !important;
    border-radius: 5px !important;
    color: #FFFFFF !important;
    padding: 4px 12px !important;
    font-weight: 600 !important;
    display: inline-block !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    border: 0 !important;
    text-decoration: none;
}

.dfc-no-content {
    padding: 25px;
    background: #f9f9f9;
    border: 2px dashed #ddd;
    border-radius: 12px;
    text-align: center;
    color: #777;
    font-style: italic;
    width: 100%;
    box-sizing: border-box;
    margin: 10px 0;
    font-size: 13px;
}

.dfc-no-content i {
    display: block;
    font-size: 24px;
    margin-bottom: 8px;
    color: #ccc;
}

/* ========================================================================
   GALERIA MOBILE
   ======================================================================== */

.dfc-ml-gallery {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.dfc-ml-thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 65px;
    flex-shrink: 0;
}

.dfc-ml-thumb-item {
    width: 60px;
    height: 60px;
    border: 1px solid #ddd;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
}

.dfc-ml-thumb-item.active {
    border: 2px solid var(--dfc-cor-principal);
}

.dfc-ml-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dfc-ml-main {
    flex: 1;
    border: 1px solid #eee;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    background: #fff;
    padding: 10px;
}

.dfc-ml-main img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

/* ========================================================================
   PRODUTOS RELACIONADOS
   ======================================================================== */

.dfc-relacionados-wrapper {
    margin-top: 40px;
    clear: both;
    width: 100%;
}

.dfc-relacionados-titulo {
    margin-bottom: 20px;
    border-bottom: 2px solid var(--dfc-cor-principal);
    padding-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

/* ========================================================================
   DOCUMENTOS
   ======================================================================== */

.dfc-docs-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dfc-doc-item {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none !important;
    transition: 0.2s;
}

.dfc-doc-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dfc-doc-icon {
    width: 40px;
    height: 40px;
    background: #FDECEA;
    color: var(--dfc-cor-alerta);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 12px;
    font-size: 18px;
    flex-shrink: 0;
}

.dfc-doc-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
}

.dfc-doc-label {
    font-size: 11px;
    color: #999;
    font-weight: 500;
    text-transform: uppercase;
}

.dfc-doc-filename {
    font-size: 13px;
    color: #333;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ========================================================================
   PAGINAÇÃO
   ======================================================================== */

.dfc-pagination-area {
    text-align: center;
    padding: 40px 0;
    width: 100%;
    clear: both;
}

/* ========================================================================
   RESPONSIVO
   ======================================================================== */

@media (max-width: 768px) {
    .dfc-catalogo-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .dfc-sidebar-filtros {
        flex: none;
        width: 100%;
    }

    .dfc-colunas-3 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }

    .dfc-colunas-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }

    .dfc-ml-gallery {
        flex-direction: column-reverse;
    }

    .dfc-ml-thumbs {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .dfc-ml-thumb-item {
        flex-shrink: 0;
    }

    .dfc-ml-main {
        min-height: 280px;
    }
}

@media (max-width: 480px) {

    .dfc-colunas-3,
    .dfc-colunas-4 {
        grid-template-columns: 1fr !important;
        /* 1 coluna em celulares */
    }

    .dfc-produto-titulo,
    .dfc-produto-titulo a {
        font-size: 13px;
        min-height: auto;
        padding: 10px;
    }

    .dfc-produto-thumbnail {
        height: 180px;
    }
}

/* ========================================================================
   VARIAÇÕES
   ======================================================================== */

.dfc-vars-wrapper {
    margin: 20px 0;
}

.dfc-vars-wrapper label {
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

.dfc-select-variacao {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 14px;
}

.dfc-select-variacao.attention {
    border: 2px solid var(--dfc-cor-warning);
    box-shadow: 0 0 5px rgba(255, 82, 36, 0.5);
}

/* ========================================================================
   CARREGAMENTO
   ======================================================================== */

.dfc-grid-produtos.dfc-loading {
    opacity: 0.8;
    pointer-events: none;
    position: relative;
}

.dfc-grid-produtos.dfc-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.8);
}

.dfc-grid-produtos.dfc-loading::after {
    content: '\f110';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3em;
    color: var(--dfc-cor-principal);
    z-index: 11;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ========================================================================
   ESPECIFICAÇÕES TÉCNICAS
   ======================================================================== */

.dfc-especificacoes-wrapper {
    margin: 20px 0;
    width: 100%;
}

.dfc-especificacoes-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.dfc-especificacoes-table tbody {
    display: table-row-group;
}

.dfc-spec-row {
    display: table-row;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.dfc-spec-row:hover {
    background-color: #f9f9f9;
}

.dfc-spec-row:last-child {
    border-bottom: none;
}

.dfc-spec-titulo {
    padding: 14px 16px;
    background: #f5f5f5;
    color: #333;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    width: 30%;
    min-width: 150px;
    text-align: left;
    display: table-cell;
    vertical-align: middle;
}

.dfc-spec-valor {
    padding: 14px 16px;
    color: #555;
    font-size: 13px;
    text-align: left;
    display: table-cell;
    vertical-align: middle;
}

/* ========================================================================
   ESPECIFICAÇÕES - RESPONSIVO
   ======================================================================== */

@media (max-width: 768px) {
    .dfc-especificacoes-table {
        border: none;
        border-spacing: 0;
    }

    .dfc-spec-row {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 6px;
        overflow: hidden;
    }

    .dfc-spec-titulo,
    .dfc-spec-valor {
        display: block;
        width: 100%;
        padding: 12px;
        border: none;
    }

    .dfc-spec-titulo {
        background: var(--dfc-cor-principal);
        color: #fff;
        font-size: 12px;
        padding: 10px 12px;
    }

    .dfc-spec-valor {
        background: #fff;
        color: #666;
    }
}

/* ========================================================================
   CARROSSEL DE GALERIA
   ======================================================================== */

.dfc-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dfc-carousel-slides {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dfc-carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.dfc-carousel-slide.active {
    opacity: 1;
    z-index: 10;
}

.dfc-carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* Setas de Navegação */
.dfc-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dfc-carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

/* ========================================================================
   NOVO DESIGN - GRID 3 COLUNAS (SOLICITAÇÃO)
   ======================================================================== */

/* Container Geral e Fundo da Área de Produtos */
.dfc-catalogo-novo-wrapper {
    background-color: #f0f2f5 !important;
    /* Cor de fundo cinza clara da imagem */
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
}

/* Busca Area Nova (Centralizada e Arredondada) */
.dfc-busca-area-novo {
    max-width: 600px;
    margin: 0 auto 40px auto;
    position: relative;
    z-index: 5;
}

.dfc-busca-form-novo {
    display: flex;
    background: #fff;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.dfc-busca-input-novo {
    flex: 1;
    border: none;
    background: transparent;
    padding: 15px 25px;
    font-size: 16px;
    outline: none;
    border-radius: 50px;
    color: #333;
}

.dfc-busca-btn-novo {
    background: var(--dfc-cor-principal, #38c172);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.dfc-busca-btn-novo:hover {
    background: var(--dfc-cor-secundaria, #2d9e5f);
    transform: scale(1.05);
}

/* Grid de Produtos - 3 colunas */
.dfc-grid.dfc-colunas-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    background: transparent !important;
}

/* Card do Produto (Branco com Sombra) */
.dfc-produto-card-novo {
    background: #ffffff !important;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    /* Sombra suave idêntica à imagem */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Centraliza o conteúdo horizontalmente */
    border: none !important;
}

/* Container da Imagem - Tamanho Exato e Preencher */
.dfc-produto-img-novo {
    width: 297px !important;
    height: 248px !important;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 8px;
    /* Leve arredondamento na imagem se desejar */
}

.dfc-produto-img-novo img {
    width: 297px !important;
    height: 248px !important;
    object-fit: cover !important;
    /* Faz a imagem PREENCHER o espaço cortando sobras */
    display: block;
}

/* Informações do Produto (Textos) */
.dfc-produto-info-novo {
    width: 100%;
}

.dfc-produto-nome-novo {
    margin: 10px 0 5px 0 !important;
}

.dfc-produto-nome-novo a {
    color: #003356 !important;
    /* Azul marinho escuro */
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
}

.dfc-produto-desc-novo {
    color: #666 !important;
    font-size: 0.9rem !important;
    margin-bottom: 25px !important;
    line-height: 1.4;
}

/* Botão VER MAIS (Verde Arredondado) */
.dfc-btn-ver-mais-novo {
    background-color: #38b03d !important;
    /* Verde vivo da imagem */
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: bold !important;
    padding: 12px 0 !important;
    border-radius: 12px !important;
    /* Bordas bem arredondadas */
    display: block;
    width: 100%;
    /* Botão ocupa a largura interna do card */
    max-width: 240px;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
    transition: filter 0.2s ease;
}

.dfc-btn-ver-mais-novo:hover {
    filter: brightness(0.9);
}

/* Paginação Estilizada */
.dfc-paginacao-nova {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.dfc-paginas-lista-nova {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
}

.dfc-pag-item-nova a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #555;
    /* Cor cinza escuro dos botões de página */
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.dfc-pag-item-nova.ativo-nova a {
    background: #38b03d;
    /* Destaque verde na página atual */
}

/* Responsividade */
@media (max-width: 1024px) {
    .dfc-grid.dfc-colunas-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .dfc-produto-img-novo,
    .dfc-produto-img-novo img {
        width: 100% !important;
        max-width: 297px;
    }
}

@media (max-width: 650px) {
    .dfc-grid.dfc-colunas-3 {
        grid-template-columns: 1fr;
    }
}

/* ========================================================================
   DESCRIÇÃO DA CATEGORIA (MODULAR)
   ======================================================================== */

.dfc-descricao-container {
    display: flex;
    gap: 40px;
    background: var(--dfc-cor-principal);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    color: #fff;
    align-items: center;
    box-shadow: 0 10px 30px rgba(56, 193, 114, 0.2);
    position: relative;
    overflow: hidden;
}

.dfc-descricao-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30%;
    background: rgba(255, 255, 255, 0.1);
    transform: skewX(-20deg) translateX(50%);
    pointer-events: none;
}

.dfc-descricao-lado-esquerdo {
    flex: 1;
    z-index: 1;
}

.dfc-categoria-titulo {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.dfc-categoria-descricao-texto {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 90%;
}

.dfc-descricao-lado-direito {
    flex: 0 0 350px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
}

/* Pontos Fortes */
.dfc-pontos-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dfc-ponto-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 600;
}

.dfc-ponto-item:last-child {
    margin-bottom: 0;
}

.dfc-ponto-item i {
    color: #fff;
    /* Ícone branco para contraste no fundo verde */
    font-size: 1.2rem;
    margin-right: 12px;
    background: rgba(255, 255, 255, 0.2);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Placeholder */
.dfc-descricao-placeholder {
    font-size: 1.5rem;
    opacity: 0.8;
    text-align: center;
    font-weight: 300;
}

/* Responsivo Descrição */
@media (max-width: 900px) {
    .dfc-descricao-container {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }

    .dfc-categoria-titulo {
        font-size: 2rem;
    }

    .dfc-categoria-descricao-texto {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .dfc-descricao-lado-direito {
        width: 100%;
        flex: none;
    }

    .dfc-ponto-item {
        justify-content: center;
        text-align: left;
    }
}