.elementor-136 .elementor-element.elementor-element-6e039c3{--display:flex;--padding-top:100px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-136 .elementor-element.elementor-element-6e039c3:not(.elementor-motion-effects-element-type-background), .elementor-136 .elementor-element.elementor-element-6e039c3 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-136 .elementor-element.elementor-element-3175da7 .elementor-heading-title{font-family:"Trebuchet MS", Sans-serif;font-size:35px;color:#9A4AAD;}.elementor-136 .elementor-element.elementor-element-f98f3ba{font-family:"Poppins", Sans-serif;color:#2E2E2E;}.elementor-136 .elementor-element.elementor-element-f98f3ba a{color:#464646;}.elementor-136 .elementor-element.elementor-element-00fab85{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:100px;--padding-bottom:100px;--padding-left:0px;--padding-right:0px;}.elementor-136 .elementor-element.elementor-element-00fab85:not(.elementor-motion-effects-element-type-background), .elementor-136 .elementor-element.elementor-element-00fab85 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-b499fb2 *//* =====================================================
   CSS PERSONALIZADO — NAVEGADOR DE PASTAS
   Estilo Blob v2: Amarelo #FFD322 e Roxo #9A4AAD alternados
   Nome fora do blob | Ícone traçado simples | Fonte Poppins
   Cole em: Elementor → CSS Personalizado da página
   ou em: Aparência → Personalizar → CSS Adicional
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&display=swap');

/* ── Breadcrumb ── */
.tp-bc {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 22px;
    font-size: 15px;
    padding: 10px 20px;
    list-style: none;
    background: #fdf8ff;
    border-radius: 999px;
    border: 1px solid #e4c9f0;
    font-family: 'Poppins', sans-serif;
}
.tp-bc-link {
    color: #9A4AAD;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
    transition: color .15s;
}
.tp-bc-link:hover { color: #7a3590; }
.tp-bc-sep { color: #d9b8e8; font-size: 13px; }
.tp-bc-curr { color: #1a2a3a; font-weight: 700; }

/* ── Filtro por ano ── */
.tp-filter {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    font-family: 'Poppins', sans-serif;
}
.tp-filter-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #b07cc4;
}
.tp-filter-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.tp-filter-btn {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 18px;
    border-radius: 999px;
    border: 1.5px solid #d9b8e8;
    background: #fff;
    color: #9A4AAD;
    cursor: pointer;
    transition: all .15s;
    font-family: 'Poppins', sans-serif;
}
.tp-filter-btn:hover,
.tp-filter-btn.active {
    background: #9A4AAD;
    color: #fff;
    border-color: #9A4AAD;
}

/* ── Rótulo de seção ── */
.tp-label {
    font-size: 17px;
    font-weight: 800;
    color: #3a1a47;
    margin: 0 0 20px;
    padding-bottom: 5px;
    border-bottom: 2.5px solid #9A4AAD;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -.01em;
}

/* ── Grade de pastas — BLOB GRID ── */
.tp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 20px;
    margin-bottom: 36px;
}

/* ── Card de pasta e subpasta — base ── */
.tp-folder,
.tp-subfolder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    transition: transform .28s cubic-bezier(.34, 1.56, .64, 1);
}
.tp-folder:hover,
.tp-subfolder:hover {
    transform: scale(1.09) rotate(-1.5deg);
    background: transparent;
    box-shadow: none;
}
.tp-folder:active,
.tp-subfolder:active {
    transform: scale(0.95);
}

/* ── Caixa do ícone = blob via clip-path ── */
.tp-folder-ico {
    width: 130px;
    height: 130px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    clip-path: path('M66,11 C90,7 114,24 120,48 C126,72 114,100 94,114 C74,128 44,124 26,108 C8,92 8,64 20,42 C32,20 42,15 66,11Z');
    transition: opacity .2s;
}
.tp-folder:hover .tp-folder-ico,
.tp-subfolder:hover .tp-folder-ico {
    opacity: .9;
}

/* Blob forma alternativa para subpastas */
.tp-subfolder .tp-folder-ico {
    clip-path: path('M64,9 C90,5 116,22 122,48 C128,74 114,104 92,118 C70,132 38,128 20,110 C2,92 4,60 16,38 C28,16 38,13 64,9Z');
}

/* Cor amarela — pastas ímpares */
.tp-folder:nth-child(odd) .tp-folder-ico,
.tp-subfolder:nth-child(odd) .tp-folder-ico {
    background-color: #FFD322;
}

/* Cor roxa — pastas pares */
.tp-folder:nth-child(even) .tp-folder-ico,
.tp-subfolder:nth-child(even) .tp-folder-ico {
    background-color: #9A4AAD;
}

/* ── Ícone SVG de pasta — traçado simples ── */
.tp-folder-ico svg {
    width: 40px;
    height: 40px;
    display: block;
    flex-shrink: 0;
}

/* Traço escuro no amarelo */
.tp-folder:nth-child(odd) .tp-folder-ico svg path,
.tp-folder:nth-child(odd) .tp-folder-ico svg line,
.tp-subfolder:nth-child(odd) .tp-folder-ico svg path,
.tp-subfolder:nth-child(odd) .tp-folder-ico svg line {
    stroke: #5a3a00 !important;
    fill: none !important;
}

/* Traço branco no roxo */
.tp-folder:nth-child(even) .tp-folder-ico svg path,
.tp-folder:nth-child(even) .tp-folder-ico svg line,
.tp-subfolder:nth-child(even) .tp-folder-ico svg path,
.tp-subfolder:nth-child(even) .tp-folder-ico svg line {
    stroke: #fff !important;
    fill: none !important;
}

/* ── Texto da pasta — FORA do blob ── */
.tp-folder-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: unset;
    width: 100%;
}

.tp-folder-name {
    font-size: 13px;
    font-weight: 700;
    color: #1a2a3a;
    line-height: 1.3;
    text-align: center;
    white-space: normal;
}

.tp-folder-qty {
    font-size: 11px;
    font-weight: 600;
    color: #b07cc4;
    margin-top: 3px;
    text-align: center;
}

/* Oculta seta */
.tp-folder-arrow { display: none; }

/* ── Lista de documentos ── */
.tp-docs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ── Card de documento ── */
.tp-doc {
    background: #fff;
    border: 1px solid #ead6f5;
    border-radius: 999px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all .15s;
    box-shadow: 0 1px 4px rgba(154, 74, 173, .06);
    font-family: 'Poppins', sans-serif;
}
.tp-doc:hover {
    border-color: #9A4AAD;
    box-shadow: 0 4px 14px rgba(154, 74, 173, .15);
}
.tp-doc-ico {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tp-doc-ico svg {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 2px;
}
.tp-doc-ico svg rect { fill: white !important; }
.tp-doc-ico svg path { stroke: #9A4AAD !important; fill: white !important; }
.tp-doc-ico svg line { stroke: #9A4AAD !important; }

.tp-doc-info { flex: 1; min-width: 0; }
.tp-doc-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a2a3a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tp-doc-meta {
    font-size: 11px;
    color: #b07cc4;
    margin-top: 4px;
    display: flex;
    gap: 6px;
    align-items: center;
}
.tp-doc-tag {
    background: #fdf0ff;
    color: #9A4AAD;
    border-radius: 999px;
    padding: 2px 10px;
    font-size: 11px;
    font-weight: 700;
}

/* ── Botão Baixar ── */
.tp-btn {
    font-size: 13px;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none !important;
    background: #9A4AAD;
    border-radius: 999px;
    padding: 10px 26px;
    flex-shrink: 0;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    letter-spacing: .02em;
    transition: background .15s, transform .15s;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}
.tp-btn:hover {
    background: #7a3590;
    color: #fff !important;
    transform: translateY(-1px);
}

/* ── Sem resultados ── */
.tp-no-results {
    text-align: center;
    color: #b07cc4;
    padding: 1.5rem;
    font-size: 14px;
    border: 1.5px dashed #ead6f5;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
}

/* ── Pasta vazia ── */
.tp-empty {
    text-align: center;
    color: #b07cc4;
    padding: 2.5rem;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

/* ── Responsivo mobile ── */
@media (max-width: 540px) {
    .tp-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 16px;
    }
    .tp-folder-ico,
    .tp-subfolder .tp-folder-ico {
        width: 110px;
        height: 110px;
    }
    .tp-folder-name { font-size: 12px; }
    .tp-doc { padding: 10px 16px; flex-wrap: wrap; border-radius: 20px; }
    .tp-doc-name { white-space: normal; }
    .tp-btn { width: 100%; text-align: center; }
    .tp-filter { gap: 8px; }
    .tp-bc { border-radius: 16px; font-size: 13px; }
}/* End custom CSS */