@tailwind base;
@tailwind components;
@tailwind utilities;


.animate-wave-scroll {
    animation: waveScroll 4s linear infinite;
}

@keyframes waveScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

img.fi-logo.flex.mb-4 {
    height: 10.5rem !important; /* ajuste aqui como quiser */
}




