/* Estilos Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1c1c1c;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.preloader-logo-container {
    display: inline-block;
    animation: fadeInOut 3s ease-in-out infinite; /* Animação de aparecimento/desaparecimento suave */
}

.preloader-logo {
    width: 120px;
    height: auto;
}

/* Animação de fade in/out */
@keyframes fadeInOut {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
