
body {
    background: url("../uploads/imagens/bg.png") no-repeat center center !important;
    background-size: cover !important;
}

/* 🔥 MOBILE AJUSTE */
@media (max-width: 600px) {
    body {
        background-position: 70% center !important;
    }
}

.box-manutencao {
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
    background: #ffffffe6;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
}

/* Centralização total */
.manutencao-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Conteúdo */
.conteudo {
    text-align: center;
}


/* Texto */
h1 {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 28px;
    color: #333;
}

/* Loader */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ddd;
    border-top: 4px solid #333;
    border-radius: 50%;
    animation: girar 1s linear infinite;
}

@keyframes girar {
    to {
        transform: rotate(360deg);
    }
}

/* Bloqueia scroll enquanto carrega */
html.loading {
    overflow: hidden;
}