html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
}

.construction {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
    padding: 20px;
}

/* LOGO RESPONSIVE */
.logo {
    width: 100%;
    max-width: 420px;   /* desktop ideal */
    height: auto;
}

/* TEXTO DISCRETO */
.message {
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #555;
}

/* Ajuste fino para pantallas grandes */
@media (min-width: 1024px) {
    .logo {
        max-width: 520px;
    }
}
