/* ===== Acesso à Informação / Portal da Transparência ===== */

.acesso-info-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 16px 64px;
}

/* ----- Box de busca ----- */
.acesso-info-busca-box {
    background: #f7f8fa;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
    margin: 24px 0 32px;
    text-align: center;
    clear: both;
}

.acesso-info-busca-box h1 {
    font-size: 26px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 6px;
}

.acesso-info-busca-box .subtitulo {
    color: #4b5563;
    font-size: 15px;
    margin: 0 0 24px;
}

.acesso-info-busca-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 720px;
    margin: 0 auto;
}

.acesso-info-busca-input {
    flex: 1 1 auto;
    min-width: 220px;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
}

.btn-buscar-acesso-info {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #16305c;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.btn-buscar-acesso-info:hover {
    background: #0f2246;
}

.btn-limpar {
    font-size: 14px !important;
    color: #16305c !important;
    border-color: #16305c !important;
    padding: 8px 16px !important;
    align-items: center;
    display: flex !important;
}

.btn-limpar:hover {
    background: #eef1f7 !important;
}

.campo {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.campo-acoes {
    flex-direction: row !important;
    gap: 10px !important;
}

/* ----- Lista agrupada ----- */
.acesso-info-lista.acesso-info-loading {
    opacity: .5;
    pointer-events: none;
}

.acesso-info-grupo {
    margin-bottom: 36px;
}

.acesso-info-grupo-titulo {
    font-size: 22px;
    font-weight: 700;
    color: #16305c;
    margin: 0 0 2px;
}

.acesso-info-grupo-subtitulo {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 16px;
}

.acesso-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    height: 100%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 22px 18px;
    text-decoration: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.acesso-info-item:hover {
    border-color: #16305c;
    box-shadow: 0 2px 8px rgba(22, 48, 92, .08);
}

.acesso-info-item-icone {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #eaf0fb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.acesso-info-item-icone i {
    color: #16305c;
    font-size: 18px;
}

.acesso-info-item-titulo {
    font-size: 14px;
    font-weight: 700;
    color: #16305c;
}

.acesso-info-item-descricao {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
}

.acesso-info-vazio {
    text-align: center;
    color: #6b7280;
    padding: 24px 0;
}

/* ----- Página interna ----- */
.acesso-info-single-header h1 {
    font-size: 22px;
    color: #16305c;
    margin-bottom: 6px;
}

.acesso-info-single-header .subtitulo {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 24px;
}

.acesso-info-single-conteudo {
    font-size: 15px;
    line-height: 1.7;
}

.acesso-info-voltar {
    margin-top: 24px;
}

.acesso-info-voltar a {
    color: #16305c;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 640px) {
    .acesso-info-busca-form {
        flex-direction: column;
    }

    .campo {
        width: 100%;
        justify-content: space-between;
    }
}