/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #050505; /* Fundo bem escuro, quase preto */
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: radial-gradient(circle at 50% 50%, #151515 0%, #000000 100%);
}

.construcao-container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.construcao-content {
    text-align: center;
    width: 100%;
}

.construcao-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #8dc63f 0%, #800080 100%); /* Verde e Roxo baseado na imagem */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 4px 15px rgba(141, 198, 63, 0.2);
}

.construcao-subtitle {
    font-size: 1.2rem;
    color: #aaaaaa;
    margin-bottom: 3rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.construcao-image-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(141, 198, 63, 0.3) 0%, rgba(128, 0, 128, 0.3) 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(141, 198, 63, 0.1);
}

.construcao-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}

/* Responsividade */
@media (max-width: 768px) {
    .construcao-title {
        font-size: 2rem;
    }
    
    .construcao-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .construcao-container {
        padding: 1rem;
    }
}
