.dashboard-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transform: translateY(100%); /* Inicialmente oculto */
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 20px 20px 30px 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.dashboard-footer.activo {
    transform: translateY(0);
}

.btn-toggle-footer {
    position: absolute;
    top: -40px; 
    left: 50%;
    transform: translateX(-50%);
    background-color: #0077b6;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px 20px 0 0;
    font-weight: bold;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
    cursor: pointer;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.kpi-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px;
    flex: 1 1 180px; /* Responsive: mínimo 180px */
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #e9ecef;
}

.icon-box {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}