:root {
    --bg-color: #090809; /* Antes: #0b0b0b. */
    --text-color: #f2f2f2;
    --muted-color: #9a9a9a;
    --divider-color: #3a3a3a;
}

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

body {
    min-height: 100vh;
    background: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px;
}

.coming-soon {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted-color);
    font-weight: 400;
    opacity: 0;
    animation: fadeUp 0.7s ease-out 0.1s forwards;
}

.brand {
    display: flex;
    align-items: center;
    gap: 18px;
    opacity: 0;
    animation: fadeUp 0.7s ease-out 0.25s forwards;
}

.brand img {
    width: 56px;
    height: auto;
}

.divider {
    width: 1px;
    height: 32px; /* menor, como solicitado */
    background-color: var(--divider-color);
}

.brand h1 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .brand img {
        width: 48px;
    }

    .brand h1 {
        font-size: 1.6rem;
    }

    .divider {
        height: 26px;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}