.fade-in {
    opacity: 0;
    transform: translateY(30px); 
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}
.animate-float {
    animation: float 5s ease-in-out infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(194, 109, 74, 0.6); } /* Cor Terracota */
    70% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(194, 109, 74, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(194, 109, 74, 0); }
}
.animate-heartbeat {
    animation: heartbeat 2.5s infinite;
}

@keyframes bg-slide {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}
.animate-bg-slide {
    animation: bg-slide 80s linear infinite; 
}

@media (hover: none) {
    [data-tilt-glare] {
        --tilt-glare-opacity: 0 !important;
    }
}