/* Geral para todas as tabelas */
table {
    background-color: #fff;
    overflow: hidden;
    border-radius: 10px;
}

table th {
    background-color: #D7AC8C !important;
    text-transform: uppercase;
}

table td {
    background-color: #faf3eb !important;
    vertical-align: middle;
    transition: background-color 0.3s;
    border-radius: 5px;
}

table td:hover {
    background-color: #ebddce !important;
}

table a {
    color: #001122;
    text-decoration: none;
    font-weight: 500;
    display: block;
}

table a:hover {
    text-decoration: underline;
    color: #aa1916;
}


h1 {
    color: #272727;
    font-size: 2.3rem;
}

.table.tabela-custom {
    border-collapse: separate;
    border-spacing: 0;
}

.table.tabela-custom th,
.table.tabela-custom td {
    border: 2px solid #ffffff;
}


.estado-card {
    text-decoration: none;
    color: inherit;
}

.estado-card-item {
    height: 140px;
    border-radius: 16px;
    border: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.estado-card-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .15);
}

.estado-img {
    max-height: 60px;
    margin-bottom: 10px;
    object-fit: contain;
}

.titulo-estados {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: .5px;
    color: #1f2937;
    /* cinza institucional */
}