.doc-accordion {
    width: 100%;
}

/* =====================================================
   CATEGORIA
===================================================== */

.doc-categoria {
    margin-bottom: 25px;
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #E5E7EB;
    padding: 0;
}

/* =====================================================
   HEADER
===================================================== */

.doc-categoria-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.25s;

    border-bottom: 1px solid #E5E7EB;

    background: linear-gradient(90deg, #EFF6FF 0%, rgba(255, 255, 255, 0.00) 100%);


    padding: 24px;
    border-radius: 10px 10px 0 0;
}

.doc-categoria-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.doc-cat-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.doc-cat-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
}

.doc-cat-count {
    font-size: 14px;
    color: #6b7280;
    margin-top: 5px;
}

/* =====================================================
   TOGGLE
===================================================== */

.doc-toggle {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.doc-categoria.active .doc-toggle {
    transform: rotate(180deg);
}

/* =====================================================
   CONTEÚDO
===================================================== */

.doc-categoria-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #ffffff;
    padding: 0 24px;
}

.doc-categoria.active .doc-categoria-content {
    padding: 24px;
}

/* =====================================================
   GRID
===================================================== */

.doc-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

/* =====================================================
   CARD
===================================================== */

.doc-card {
    background: #F9FAFB;
    padding: 22px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    transition: 0.25s;
    border-radius: 10px;

    border: 1px solid #F1F5F9;
}

.doc-card:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

/* =====================================================
   ÁREA ESQUERDA
===================================================== */

.doc-left {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: flex-start !important;
    gap: 12px;
}

/* =====================================================
   ÍCONE DOCUMENTO
===================================================== */

.doc-icon-file {
    object-fit: contain;
    flex-shrink: 0;
}

/* =====================================================
   TÍTULO
===================================================== */

.doc-title {
    font-weight: 600;
    font-size: 15px;
    color: #111827;
}

/* =====================================================
   META INFO
===================================================== */

.doc-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;

    font-size: 13px;
    color: #6b7280;

    margin-top: 4px;
}

.doc-data {
    display: flex;
    align-items: center;
    gap: 5px;
}

.doc-icon-date {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

/* =====================================================
   BOTÃO DOWNLOAD
===================================================== */

.doc-download{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    background: #006DE2;
    color: #fff !important;

    padding: 10px 16px;
    border-radius: 10px;

    text-decoration: none;
    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.doc-download:hover{
    transform: translateY(-2px);
    opacity: .92;
}

.doc-download-text{
    color: #fff;
    line-height: 1;
}

.doc-icon-download{
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.doc-card:hover .doc-icon-download {
    transform: scale(1.1);
    transition: 0.2s ease;
}

/* =====================================================
   RESPONSIVO
===================================================== */

@media (max-width: 992px) {

    .doc-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .doc-categoria {
        margin-bottom: 18px;
    }

    .doc-categoria-header {
        padding: 18px;
        gap: 12px;
        align-items: flex-start;
    }

    .doc-categoria-left {
        align-items: flex-start;
        gap: 12px;
        flex: 1;
    }

    .doc-cat-icon {
        width: 38px;
        height: 38px;
    }

    .doc-cat-title {
        font-size: 15px;
    }

    .doc-cat-count {
        font-size: 13px;
    }

    .doc-arrow {
        width: 22px;
        height: 22px;
    }

    .doc-categoria-content {
        padding: 0 16px;
    }

    .doc-categoria.active .doc-categoria-content {
        padding: 16px;
    }

    .doc-card {
    padding: 14px;
    gap: 12px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    flex-wrap: wrap;
}

    .doc-title {
        font-size: 13px;
    }

    .doc-meta {
        font-size: 11px;
    }


    .doc-icon-download {
        width: 14px;
        height: 14px;
    }

    .doc-title,
    .doc-meta {
        word-break: break-word;
    }

    .doc-download{
    max-width: 100%;
    justify-content: center;

    padding: 10px 14px;
    font-size: 13px;

    box-sizing: border-box;
}

   .doc-sep{
       display: none;
   }
    
    

}