﻿#preload-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(80, 80, 80, 0.2);
    color: #333;
    display: flex;
    flex-direction: column; /* <<< coloca um embaixo do outro */
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

.loader {
    width: 60px;
    height: 60px;
    border: 6px solid #cccccc66;
    border-top-color: #4caf50;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.mensagem {
    font-size: 2rem;
    margin-top: 20px; /* espaço entre o spinner e o texto */
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}



/*#preload-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121212;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

.loader {
    width: 60px;
    height: 60px;
    border: 6px solid #ffffff33;
    border-top-color: #4caf50;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}*/
