/* ============================================================
   Atak Cloud — style-dark.css
   Tema escuro | Logo: /images/logo/LOGO-ATAK-CLOUD-350.png
   Para usar: <link rel="stylesheet" href="style-dark.css">
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ── Tokens ── */
:root {
    --bg:        #0d0d0d;
    --surface:   #161616;
    --border:    rgba(255, 255, 255, 0.08);
    --red:       #CC1B1B;
    --red-glow:  rgba(204, 27, 27, 0.18);
    --red-ring:  rgba(204, 27, 27, 0.35);
    --text:      #f0f0f0;
    --muted:     #888888;
    --font:      'Plus Jakarta Sans', sans-serif;
}

/* ── Base ── */
body {
    font-family: var(--font);
    background-color: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 1rem;
}

/* ── Container ── */
.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    max-width: 640px;
    width: 100%;
    text-align: center;
}

/* ── Logo ── */
.logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 200px;
    height: 200px;
    background-image: url('./images/logo/LOGO-ATAK-CLOUD-VWHITE.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* ── Conteúdo ── */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.badge {
    display: inline-block;
    background: var(--red-glow);
    color: var(--red);
    border: 1px solid var(--red-ring);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
}

.content h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 500;
    line-height: 1.35;
    color: var(--text);
}

.content h2 strong {
    color: var(--red);
    font-weight: 700;
}

.content p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 480px;
}

/* ── Status box ── */
.status-box {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem 1.4rem;
    width: 100%;
    max-width: 480px;
}

.status-box p {
    font-size: 0.875rem;
    color: var(--muted);
}

/* ── Spinner ── */
.spinner {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(204, 27, 27, 0.25);
    border-top-color: var(--red);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ── Footer ── */
footer {
    padding: 1.5rem;
    font-size: 0.78rem;
    color: #444444;
    text-align: center;
}

/* ── Responsivo ── */
@media (max-width: 480px) {
    .container  { gap: 2rem; padding: 2.5rem 1.25rem; }
    .logo-img   { width: 160px; height: 160px; }
    .content h2 { font-size: 1.5rem; }
}
