body {
    background: linear-gradient(90deg,
            #082f49 0%,
            #0c4a6e 25%,
            #0369a1 55%,
            #38bdf8 100%);
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
}

.card {
    background: white;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(3, 105, 161, .25);
}

.filtro-box {
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 16px;
    padding: 20px;
    width: 100%;
    max-width: 100%;
}

.select-dashboard {
    border-radius: 10px;
    padding: 10px 14px;
    border: none;
    background: white;
    color: #082f49;
    font-weight: bold;
    width: 100%;
    min-width: 0;
}

.select-dashboard:focus {
    outline: 2px solid #38bdf8;
    outline-offset: 2px;
}

.label-dashboard {
    color: white;
    font-weight: bold;
}

.titulo-dashboard {
    color: white;
}

.subtitulo-dashboard {
    color: #dbeafe;
}

.chart-container {
    position: relative;
    height: 500px;
}

table {
    min-width: 1200px;
}

th,
td {
    word-break: break-word;
}

.logo-dashboard {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 16px;
    background: rgba(255, 255, 255, .255);
    padding: 8px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 18px rgb(255, 255, 255);
    transition: transform .3s ease;
}

.logo-dashboard:hover {
    transform: scale(1.05);
}

#btnTopo {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(238, 6, 6, 0);
    color: rgb(0, 0, 0);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease,
        background .2s ease;
    z-index: 9999;
}

#btnTopo.mostrar {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#btnTopo:hover {
    background: rgba(0, 0, 0, 0);
    transform: translateY(-3px);
}

@media(max-width:768px) {
    #btnTopo {
        width: 52px;
        height: 52px;
        right: 20px;
        bottom: 20px;
        font-size: 24px;
    }
}

.dashboard-navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom:
        1px solid rgba(255, 255, 255, .18);
}

.dashboard-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 52px;
    min-width: 240px;
    padding: 12px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    color: #082f49;
    background:
        linear-gradient(135deg,
            #f0f9ff 0%,
            #dbeafe 100%);
    border:
        1px solid rgba(255, 255, 255, .55);
    box-shadow:
        0 4px 14px rgba(0, 0, 0, .15);
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.dashboard-link:hover {
    transform:
        translateY(-3px);
    background:
        linear-gradient(135deg,
            #ffffff 0%,
            #e0f2fe 100%);
    box-shadow:
        0 8px 18px rgba(0, 0, 0, .20);
}

.dashboard-link.ativo {
    background:
        linear-gradient(135deg,
            #ffffff 0%,
            #bae6fd 100%);
    border:
        2px solid #38bdf8;
    color: #082f49;
}

@media(max-width:768px) {
    .dashboard-navbar {
        flex-direction: column;
        align-items: stretch;
    }

    .dashboard-link {
        width: 100%;
        min-width: 100%;
    }
}

.collapse-btn {
    background: #e0f2fe;
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: bold;
    color: #082f49;
    width: 100%;
    cursor: pointer;
    transition: .2s;
}

.collapse-btn:hover {

    background: #bae6fd;

}

.collapse-conteudo {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
        max-height .35s ease,
        opacity .25s ease;
}

.collapse-conteudo.aberto {
    opacity: 1;
}

#iconeCollapse {
    transition: transform .3s ease;
}

#iconeCollapse.girar {
    transform: rotate(180deg);
}