/* src/css/style.css */

/* Custom Scrollbar for a premium feel */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0A0A0A; /* bg-brand-dark */
}

::-webkit-scrollbar-thumb {
    background: #1F2937; /* gray-800 */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #374151; /* gray-700 */
}

/* Base resets or specific animations that are too complex for inline tailwind configs */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animação para surgimento de elementos (Fade in up) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Utilitário para ocultar elementos antes da animação de scroll (Intersection Observer) */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
