/* Container centralizado */
.container {
    max-width: 1200px;
    /* largura máxima */
    margin: 0 auto;
    /* centraliza */
    padding: 20px;
    /* espaçamento interno */
}

.content {
    margin-top: 120px;
    /* ajuste o valor conforme a altura do header */
}

.team .cont h6 {
    font-size: 10px !important;
}
.team .cont span {
    font-size: 12px !important;
    font-weight: bold;
}


/* Texto dentro da área institucional */
.txt {
    font-size: 16px;
    line-height: 1.8;
    /* melhora a leitura */
    color: #333;
    text-align: justify;
    /* justifica os parágrafos */
    margin-bottom: 20px;
}

/* Títulos */
.tit-topo h2 {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #004080;
    margin-bottom: 20px;
}

/* Caixas de conteúdo */
.box {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.links a {
    display: inline-block;
    /* garante que respeite o espaçamento */
    margin-right: 20px;
    /* espaço entre os itens */
    text-decoration: none;
    /* tira o sublinhado */
    color: #004080;
    /* cor do texto */
    font-weight: bold;
}

.links a:last-child {
    margin-right: 0;
    /* remove o espaço do último */
}

.hidden {
    display: none;
}

.fade-in {
    animation: fadeIn .5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 5px;
    flex-wrap: wrap;
}

.page-link,
.dots {
    padding: 6px 12px;
    border: 1px solid #ddd;
    cursor: pointer;
    border-radius: 4px;
}

.page-link.active {
    background: #31437c;
    color: white;
    border-color: #31437c;
    font-weight: bold;
}

.page-link:hover {
    background: #f0f0f0;
}

.dots {
    cursor: default;
}

.summary {
    margin: 10px 0px;
    font-size: 14px;
    color: #555;
}


#searchInput {
    max-width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 20px;
}