/* =========================================
   CORAZONES FLOTANTES - SAN VALENTÍN
   ========================================= */

.hearts-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 50;
    overflow: hidden;
}

.heart {
    position: absolute;
    bottom: -40px;
    font-size: 18px;
    color: rgba(255, 70, 120, 0.55);
    animation: floatHeart linear forwards;
    filter: blur(0.2px);
    will-change: transform, opacity;
}

@keyframes floatHeart {
    0% {
        transform: translateY(0) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-110vh) scale(1.4);
        opacity: 0;
    }
}

/* Variantes suaves */
.heart.soft {
    color: rgba(255, 160, 190, 0.45);
    font-size: 14px;
}

.heart.glass {
    color: rgba(255, 255, 255, 0.35);
    text-shadow: 0 0 8px rgba(255, 100, 150, 0.35);
}
