/* CSS para Página em Construção (index.php) */
html, .em-construcao-body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.em-construcao-body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.construction-outer-wrapper {
    width: 100%;
    max-width: 700px;
    padding: 20px;
    box-sizing: border-box;
}

.construction-content-box {
    background-color: #111111; 
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1), 0 0 60px rgba(0, 123, 255, 0.1); 
    animation: floatEffect 6s ease-in-out infinite;
}

@keyframes floatEffect {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.construction-logo {
    max-width: 200px; 
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
}

.construction-content-box h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3em; 
    color: #00A9FF; 
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulsateText 2s ease-in-out infinite;
}

@keyframes pulsateText {
    0% { text-shadow: 0 0 5px #00A9FF, 0 0 10px #00A9FF, 0 0 15px #00A9FF; }
    50% { text-shadow: 0 0 10px #00A9FF, 0 0 20px #00A9FF, 0 0 30px #00A9FF, 0 0 40px #0077B3; }
    100% { text-shadow: 0 0 5px #00A9FF, 0 0 10px #00A9FF, 0 0 15px #00A9FF; }
}

.gear-animation {
    font-size: 3em;
    margin: 20px 0;
    color: #00A9FF; 
}

.gear-animation .fa-cog {
     margin: 0 10px;
}

.gear-animation .fa-music {
    font-size: 0.9em; 
    position: relative;
    top: -3px;
}

.fa-spin {
    animation-duration: 4s; 
}

.reverse-spin {
    animation-direction: reverse;
}

.construction-message {
    font-size: 1.2em;
    color: #dddddd;
    margin-bottom: 10px;
    line-height: 1.6;
}

.stay-tuned {
    font-size: 1em;
    color: #bbbbbb;
    margin-bottom: 30px;
}

.construction-social-links {
    margin-top: 25px;
}

.construction-social-links a {
    color: #ffffff;
    font-size: 1.8em;
    margin: 0 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.construction-social-links a:hover {
    color: #00A9FF; 
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .construction-content-box h1 {
        font-size: 2.5em;
    }
    
    .construction-message {
        font-size: 1.1em;
    }
    
    .gear-animation {
        font-size: 2.5em;
    }
}

@media (max-width: 480px) {
    .construction-content-box {
        padding: 30px 20px;
    }
    
    .construction-content-box h1 {
        font-size: 2em;
    }
    
    .construction-message {
        font-size: 1em;
    }
    
    .gear-animation {
        font-size: 2em;
    }
    
    .construction-social-links a {
        font-size: 1.6em;
        margin: 0 10px;
    }
}
