  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

        body {
            font-family: 'Inter', sans-serif;
            background-image: url('../imagens/fundo_neutro.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .counter-animation {
            transition: all 0.3s ease-in-out;
        }

        .slide-up {
            animation: slideUp 0.8s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fit-text {
            font-size: clamp(1.5rem, 8vw, 9.3rem);
            line-height: 1.1;
            white-space: nowrap;
           
        }

        .bg-ha
        {
            background-color: #db2777
        }

        /* Quando for mobile (largura máxima 768px) */
        @media (max-width: 768px) {
            body {
                background-image: url('../imagens/fundo_mobile_neutro.png');
            }
        }