        /* Contenedor de la imagen */
.dashboard-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
}

/* Imagen */
.dashboard-card img {
    width: 100%;
    transition: transform 0.5s ease, filter 0.5s ease;
    border-radius: 20px;
}

/* Efecto hover sobre la tarjeta */
.dashboard-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

/* Zoom suave */
.dashboard-card:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

/* Brillo animado */
.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.45),
        transparent
    );
    transition: all 0.8s ease;
    z-index: 2;
}

.dashboard-card:hover::before {
    left: 130%;
}
