  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

        html, body {
            overflow-x: hidden;
        }

        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;
           
        }

        .person-icon {
            width: clamp(1.5rem, 7vw, 8rem);
            height: clamp(1.5rem, 7vw, 8rem);
            flex-shrink: 0;
        }

        .counter-wrapper {
            flex-wrap: wrap;
            max-width: 100%;
        }

        .content-container {
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 1.5rem;
            box-sizing: border-box;
            text-align: center;
        }

        .title-text {
            font-size: clamp(1.1rem, 3.2vw, 3.5rem);
            line-height: 1.3;
            overflow-wrap: break-word;
        }

        .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');
            }
        }

        /* Telas maiores: mantém o título em uma única linha */
        @media (min-width: 769px) {
            .title-text {
                white-space: nowrap;
            }
        }

        /* Ajustes de layout para telas de celular */
        @media (max-width: 480px) {
            .content-container {
                max-width: 82%;
                padding: 0 0.5rem;
            }

            .counter-wrapper {
                flex-direction: column;
                gap: 0.5rem;
            }

            .fit-text {
                font-size: clamp(2.5rem, 16vw, 5rem);
                white-space: normal;
                word-break: break-word;
                text-align: center;
            }

            .person-icon {
                width: clamp(2.5rem, 14vw, 4rem);
                height: clamp(2.5rem, 14vw, 4rem);
            }
        }