/* ========================= */
/* 🔵 HEADER */
/* ========================= */

.logo {
    margin-top: 10px;
    width: 60px;
}

/* ========================= */
/* 🔵 PORTAL */
/* ========================= */

.portal-concursos h2 {
    font-family: 'Poppins-Bold';
    font-size: 1.6rem;
    color: #1C2E5C;
    margin-bottom: 20px;
    position: relative;
}

.portal-concursos h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #1D89E4;
    display: block;
    margin: 8px auto 0;
    border-radius: 2px;
}

/* ========================= */
/* 🔥 CARD */
/* ========================= */

.box-round  {
    border-radius: 20px;
    background: #FFFFFF;
    border: 1px solid #E3E8EF;
    box-shadow: 0px 4px 16px rgba(0,0,0,0.08);

    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: hidden;

    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* FAIXA SUPERIOR */
.box-round::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #1D89E4, #364B84);
}

/* IMAGEM */
.box-round img {
    max-width: 95%;
    max-height: 220px;
    object-fit: contain;
    transition: transform 0.3s;
}

/* HOVER */
.box-round.ativo:hover {
    transform: translateY(-4px);
    box-shadow: 0px 12px 30px rgba(0,0,0,0.10);
}

/* ZOOM */
.box-round:hover img {
    transform: scale(1.05);
}

/* FUNDO */
body {
    background: #F4F7FB;
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu li {
    display: inline-block;
    margin-left: 15px;
}

.logo {
    max-width: 100%;
    height: auto;
}
.box-round {
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.box-round:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.box-round h6 {
    font-size: 14px;
    font-weight: 600;
}

.box-round {
    min-height: 160px;
}/* FIX GERAL */
.table-container {
    width: 100%;
    overflow-x: auto;
}

/* CARD PADRÃO */
.box-round {
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* TABELA */
table.dataTable {
    width: 100% !important;
}

/* NÃO ESTOURAR TEXTO */
td {
    max-width: 400px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* HEADER */
.dataTables_wrapper .dataTables_filter input {
    border-radius: 8px;
    padding: 5px 10px;
}

/* MOBILE */
@media (max-width: 768px) {
    td {
        max-width: 200px;
    }
}

.conv-link.bg-danger {
    background: linear-gradient(135deg, #dc3545, #b02a37);
    color: #fff !important;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(220,53,69,0.3);
}

.conv-link.bg-danger:hover {
    transform: scale(1.03);
    color: #fff !important;
}