/* Tela de splash inicial */
#splash-screen {
    position: fixed;
    inset: 0;
    background: none; /* #ff7a00; /* cor primária */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
    transition: opacity 0.6s ease;
}

/* Conteúdo do splash */
.splash-content {
    text-align: center;
    padding: 1rem;
}

.splash-mascot {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    margin-bottom: 1rem;
    width: auto;
    height: auto;
    margin-bottom: 4rem;    
}

.splash-logo {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    margin-bottom: 1rem;
    width: auto;
    height: auto;
    margin-bottom: 4rem;
}
    
.splash-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Loader animado */
.splash-loader {
    border: 4px solid #666666ff;
    border-top: 4px solid #a6a6a6;;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsividade */
@media (max-width: 600px) {
    .splash-logo {
        width: 96px;
        height: 96px;
    }
    .splash-title {
        font-size: 1.4rem;
    }
}
