
    
   .containerCat {
    height: 200px; /* Altura do contêiner do gato */
    width: 350px; /* Largura do contêiner do gato */
    position: fixed; /* Muda de 'absolute' para 'fixed' para manter o gato sempre visível */
    right: 0; /* Posiciona o contêiner no canto direito */
    bottom: 0; /* Posiciona o contêiner na parte inferior */
    margin-right: 20px; /* Dá um pouco de espaço à direita */
    margin-bottom: -12px; /* Dá um pouco de espaço na parte inferior */
    transform: translate(0, 0); /* Remova a transformação anterior que estava centralizando */
}
    .cat {
        background-color: #B1B0B8;
        height: 65px;
        width: 80px;
        border-radius: 0 80px 80px 0;
        position: absolute;
        bottom: 60px;
        right: 50px;
    }
    .ear {
        height: 15px;
        width: 15px;
        background-color: #B1B0B8;
        position: absolute;
        bottom: 64px;
        left: 8px;
        border-radius: 20px 0 0 0;
        box-shadow: 25px 0 #B1B0B8;
    }
    .eye,
    .eye:before {
        height: 7px;
        width: 10px;
        border: 2px solid #2c2c2c;
        position: absolute;
        border-radius: 0 0 15px 15px;
        border-top: none;
    }
    .eye {
        position: absolute; /* Posicionamento absoluto dentro do contêiner do gato */
        top: 15px;
        left: 13px;
    }
    .eye:before {
        content: "";
        left: 30px;
    }

    .eyeClose {
        display: none; /* Oculta inicialmente */
        position: absolute;
        top: -3px;
        left: 13px;
        width: 47px;
        height: auto; /* Mantém a proporção da imagem */
    }


    .eyeClose.open {
        top: -1px;
        left: 10px;
        height: auto;
        width: 52px;
        border:none;
    }
    .nose {
        background-color: #ffffff;
        height: 12px;
        width: 12px;
        border-radius: 50%;
        position: absolute;
        top: 32px;
        left: 25px;
        box-shadow: 12px 0 #ffffff;
    }
    .nose:before {
        content: "";
        width: 12px;
        height: 8px;
        position: absolute;
        background-color: #ffffff;
        left: 6px;
    }
    .nose:after {
        content: "";
        position: absolute;
        height: 0;
        width: 0;
        border-top: 8px solid #ef926b;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        bottom: 7px;
        left: 6px;
    }
    .mouth {
        background-color: #2c2c2c;
        height: 15px;
        width: 17px;
        position: absolute;
        border-radius: 0 0 5px 5px;
        top: 38px;
        left: 27px;
        animation: mouth-move 2s infinite;
        transform-origin: top;
    }
    @keyframes mouth-move {
        50% {
            transform: scaleY(0.7);
        }
    }
    .body {
        background-color: #B1B0B8;
        height: 90px;
        width: 140px;
        position: absolute;
        right: 65px;
        bottom: 0;
        border-radius: 60px 60px 0 0;
        animation: sleep 2s infinite;
        transform-origin: bottom right;
    }
    @keyframes sleep {
        50% {
            transform: scale(0.9, 1.05);
        }
    }
    .tail {
        background-color: #989898;
        height: 20px;
        width: 100px;
        position: absolute;
        right: 150px;
        bottom: 0;
        border-radius: 20px 0 0 20px;
    }
    .body:before {
        content: "";
        position: absolute;
        background-color: #ffffff;
        height: 12px;
        width: 30px;
        border-radius: 6px;
        bottom: 0;
        left: 22px;
        box-shadow: 45px 0 #ffffff;
    }
    .bubble {
        height: 20px;
        width: 20px;
        background-color: rgba(255, 255, 255, 0.4);
        position: absolute;
        left: 65px;
        top: 20px;
        border-radius: 50px 50px 50px 5px;
        animation: bubble-scale 2s infinite;
    }
    @keyframes bubble-scale {
        50% {
            transform: scale(1.6);
        }
    }
    .shadow {
        height: 10px;
        width: 240px;
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        position: absolute;
        bottom: 52px;
        left: 70px;
        animation: shadow 2s infinite;
    }
    @keyframes shadow {
        50% {
            transform: scaleX(0.7);
        }
    }


.cat.active .mouth {
    animation: none; /* Pára a animação da boca quando os olhos estão abertos */
    transform: scaleY(1); /* Retorna a boca ao estado normal */
}
