
/* BOLHAS DA FENDA REFORMULADAS */
.bolha {
    position: absolute;
    bottom: -100px; /* Começa abaixo da tela */
    background: radial-gradient(circle at 30% 30%,
            rgba(255, 255, 255, 0.4) 0%,
            rgba(255, 255, 255, 0.1) 40%,
            rgba(255, 255, 255, 0.2) 60%,
            rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 45%;
    animation: subirEBalancar 8s infinite ease-in;
    pointer-events: none;
}

.bubbles-container {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 5000; /* Fica a frente do conteúdo porém atrás dos menus e notificações */
    pointer-events: none;
    overflow: hidden; 
}




@keyframes subirEBalancar {
    0% {
        transform: translateY(0) translateX(0) scale(0.5);
        opacity: 0;
    }

    20% {
        opacity: 0.6;
    }

    50% {
        transform: translateY(-60vh) translateX(50px) scale(1.2);
        opacity: 0.4;
    }

    80% {
        transform: translateY(-100vh) translateX(-10px) scale(1.5);
        opacity: 0.2;
    }

    100% {
        transform: translateY(-120vh) translateX(-30px) scale(1.8);
        opacity: 0;
    }
}



@keyframes deslizar {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

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


@keyframes surgimentoModal {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}



@keyframes slideIn {
    from {
        transform: translateX(-110%);
    }

    to {
        transform: translateX(0);
    }
}


.toast-fenda {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: rgba(40, 167, 69, 0.9);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: white;
    padding:15px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideDown 0.5s ease-out;
    transition: opacity 0.6s ease-in-out;
    z-index: 10005;
    /* 5 níveis acima da navbar*/

}

@keyframes slideDown {
    from {
        transform: translate(-50%, -150px);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}


