/* ==========================================================================
   Estilo Minimalista e Limpo - Team Seals Manutenção
   ========================================================================== */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #111827;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1.5rem;
    -webkit-font-smoothing: antialiased;
}

.container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 580px;
}

.content {
    text-align: center;
}

.status-tag {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #4b5563;
    background-color: #f3f4f6;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.025em;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.message {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 2rem;
}

.divider {
    width: 40px;
    height: 2px;
    background-color: #e5e7eb;
    margin: 0 auto 2rem auto;
}

.contact {
    font-size: 0.9375rem;
    color: #6b7280;
}

.contact a {
    color: #111827;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.contact a:hover {
    color: #2563eb;
}

.footer {
    font-size: 0.85rem;
    color: #9ca3af;
    text-align: center;
    padding-top: 2rem;
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }

    .message {
        font-size: 1rem;
    }
}
