@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#lottie-container {
    width: 500px;
    height: 500px;
    display: flex;
    z-index: 0;
    justify-content: center;
    align-items: center;
}

#loading-text {
    user-select: none;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 16px;
    transform: translate(-40%, 250%);
    font-family: 'Poppins', sans-serif;
    z-index: 0;
    opacity: 0;
    animation: opacity 2s 2s infinite ease-in-out;
}

.fadeOut {
    animation: fadeOut 1s forwards;
    /* Adiciona uma animação de fade out */
}

@keyframes opacity {
    from {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* Container para os círculos animados */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Estilo para os círculos */
.circle {
    position: absolute;
    border-radius: 50%;
    background-color: #FE5900;
    opacity: 0.7;
    will-change: transform;
    animation: float 15s infinite ease-in-out;
}

/* Efeito glassmorphism */
.glassmorphism-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: -1;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
    /* Permite que os cliques passem através do overlay */
}

/* Definição da animação para os círculos */
@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(100px, 100px) rotate(90deg);
    }

    50% {
        transform: translate(0, 200px) rotate(180deg);
    }

    75% {
        transform: translate(-100px, 100px) rotate(270deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}