* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
                 Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue",
                 Arial, sans-serif;
    background-color: #0f172a;
    color: #e5e7eb;
}

.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

.logo {
    max-width: 220px;
    width: 100%;
    height: auto;
    margin-bottom: 24px;
    border-radius: 6px; /* opcional */
}

h1 {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
}

.description {
    font-size: 1.1rem;
    max-width: 520px;
    line-height: 1.6;
    color: #cbd5f5;
    margin-bottom: 24px;
}

.construction {
    font-size: 0.85rem;
    color: #94a3b8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
