/* =============================
   RESET E BASE GERAL
   ============================= */
body {
    background-color: #000;
    color: #FFF;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
}

/* Espaço entre conteúdo e rodapé */
.content-bottom-space {
    height: 60px;
    width: 100%;
}

/* =============================
   LOGO PULSANTE
   ============================= */
.logo-pulsante {
    height: 80px;
    vertical-align: middle;
    animation: pulsar 1.5s infinite ease-in-out;
    transition: transform 0.3s ease;
    cursor: pointer;
}

@keyframes pulsar {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* =============================
   CONTAINER DO RODAPÉ
   ============================= */
.footer-container {
    text-align: center;
    padding: 35px 15px 20px 15px;
    max-width: 1200px;
    margin: 0 auto;
}

/* LINKS DO RODAPÉ */
.footer-liens {
    margin-bottom: 30px;
}

.footer-liens a,
.footer-liens button {
    font-size: 20px;
    color: #FFF;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Segoe UI', sans-serif;
    transition: color 0.4s ease;
}

.footer-liens a:hover,
.footer-liens a:focus,
.footer-liens button:hover,
.footer-liens button:focus {
    color: #00FFFF; /* ciano elétrico */
    outline: none;
}

/* INFORMAÇÕES DO SERVIDOR */
.server-info1 {
    margin-top: 40px;
}

.server-info1 p {
    margin: 14px 0;
    color: #FFF;
    font-size: 22px;
    font-weight: 500;
}

/* DIVISOR ESTÉTICO */
.footer-divider {
    height: 1px;
    background: #333;
}

/* =============================
   COPYRIGHT E CRÉDITOS
   ============================= */
.copyright {
    font-size: 18px;
    font-weight: 600;
    color: #666;
    text-align: center;
    padding: 15px 0;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 2px #000;
}

.creditos-dev {
    margin-top: 12px;
    font-size: 16px;
    color: #bbb;
    background: #111;
    padding: 10px 18px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 0 8px rgba(205, 133, 63, 0.7); /* dourado queimado */
    user-select: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: box-shadow 0.6s ease-in-out;
}

/* =============================
   LOADER – SPINNER DE LAVA
   ============================= */
.spinner-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(28, 28, 28, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease;
}

.spinner-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(270deg, #9C4B00, #C66B28, #9C4B00, #C66B28);
    background-size: 400% 400%;
    animation: lavaFlow 3.5s ease infinite, pulseScale 2.5s ease-in-out infinite;
    box-shadow: 0 0 12px #C66B28, 0 0 24px #9C4B00;
    position: relative;
    overflow: hidden;
    filter: drop-shadow(0 0 6px #C66B28);
    cursor: wait;
}

.spinner::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36px;
    height: 36px;
    background: radial-gradient(circle at center, #E3A75A 0%, #9C4B00 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 9px #E3A75A, 0 0 18px #9C4B00;
}

.spinner::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08), transparent 70%);
    animation: waveMove 5s linear infinite;
    pointer-events: none;
}

/* =============================
   ANIMAÇÕES
   ============================= */
@keyframes lavaFlow {
    0%, 100% {
        background-position: 0% 50%;
        box-shadow: 0 0 12px #C66B28, 0 0 24px #9C4B00;
    }
    50% {
        background-position: 100% 50%;
        box-shadow: 0 0 18px #E3A75A, 0 0 30px #B88A51;
    }
}

@keyframes pulseScale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.10); }
}

@keyframes waveMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

/* =============================
   RESPONSIVIDADE
   ============================= */
@media (max-width: 600px) {
    .footer-liens a,
    .footer-liens button {
        display: inline-block;
        margin: 10px 8px;
        font-size: 16px;
    }

    .server-info1 p {
        font-size: 18px;
        margin: 10px 0;
    }

    .logo-pulsante {
        height: 60px;
    }
}
