/* Reset e Variáveis de Cores */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #475569;
    --primary-blue: #0284c7;
    --secondary-green: #22c55e;
    --accent-light: #e0f2fe;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1rem;
}

/* Container Centralizado */
.container {
    max-width: 650px;
    width: 100%;
    text-align: center;
    margin: auto;
}

/* Área da Logo */
.logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
}

.logo-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-green));
    border-radius: 16px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px -5px rgba(2, 132, 199, 0.3);
}

/* Representação visual temporária da nuvem */
.cloud-shape {
    width: 30px;
    height: 18px;
    background: white;
    border-radius: 10px;
    position: relative;
}
.cloud-shape::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    top: -8px;
    left: 6px;
}

.logo-area h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-area h1 span {
    color: var(--primary-blue);
    font-weight: 400;
}

/* Conteúdo */
.content .badge {
    background-color: var(--accent-light);
    color: var(--primary-blue);
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.content h2 {
    font-size: 2.25rem;
    line-height: 1.25;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

.content h2 strong {
    color: var(--primary-blue);
}

.content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Caixa de Status (Em Desenvolvimento) */
.status-box {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 1rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid var(--accent-light);
    border-top-color: var(--secondary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.status-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Formulário CTA */
.cta-form h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.cta-form form {
    display: flex;
    gap: 8px;
    background: white;
    padding: 6px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.cta-form input {
    flex: 1;
    border: none;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

.cta-form button {
    background-color: var(--text-main);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.cta-form button:hover {
    background-color: var(--primary-blue);
}

/* Footer */
footer {
    margin-top: 3rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

/* Responsividade Básica */
@media (max-width: 480px) {
    .content h2 { font-size: 1.75rem; }
    .cta-form form { flex-direction: column; background: transparent; border: none; padding: 0; box-shadow: none; }
    .cta-form input { border: 1px solid #cbd5e1; border-radius: 8px; margin-bottom: 8px; }
    .cta-form button { width: 100%; padding: 1rem; border-radius: 8px; }
}