/* Reset básico para garantir consistência em todos os navegadores */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    /* Gradiente moderno e neutro */
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
    color: #334155;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 40px;
}

h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.2;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 32px;
}

.contact-info {
    border-top: 1px solid #e2e8f0;
    padding-top: 24px;
    margin-top: 20px;
}

.contact-info p {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: #94a3b8;
}

.contact-info a {
    display: inline-block;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #1d4ed8;
}

/* Ajustes para telas de celulares */
@media (max-width: 480px) {
    .container {
        padding: 40px 20px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .logo {
        max-width: 200px;
        margin-bottom: 30px;
    }
}