/* Custom animations for the new Premium Hero Background */
.hero-bg-photo {
    /* Set the new image as the background source and apply animations */
    content: url('/premium-bg.png');
    animation: floatingShape 8s ease-in-out infinite, gentleZoom 20s linear infinite alternate !important;
    transform-origin: center center;
}

@keyframes floatingShape {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-25px) scale(1.02); }
    100% { transform: translateY(0) scale(1); }
}

@keyframes gentleZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Let's add a glowing orb behind the image using the existing light layers */
.hero-bg-light {
    animation: neonPulse 4s ease-in-out infinite alternate !important;
    opacity: 0.6 !important;
    background: radial-gradient(circle, rgba(153, 255, 0, 0.4) 0%, rgba(0,0,0,0) 60%) !important;
    transform: scale(2) !important;
}

@keyframes neonPulse {
    0% { opacity: 0.3; transform: scale(1.8) translateY(10px); }
    100% { opacity: 0.8; transform: scale(2.2) translateY(-10px); }
}

/* Estilo do Preview do Cursor */
.cursor-preview {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    background: #18181b;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cursor-preview img {
    border-radius: 0.25rem;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}
