/* Reset e Tipografia Moderna */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Fontes que se usam mais hoje em dia: limpas e geométricas */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #f8fafc url('../images/background.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
}

.container {
    background: rgba(255, 255, 255, 0.97);
    max-width: 1100px;
    width: 100%;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.logo {
    max-width: 280px;
    margin-bottom: 30px;
}

.main-headline {
    font-size: 3rem;
    color: #0056b3;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.intro-text {
    font-size: 1.6rem;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 500;
}

.description {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 45px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.mission-statement {
    background: #f1f5f9;
    padding: 35px;
    border-radius: 20px;
    margin-bottom: 50px;
    border-left: 6px solid #7cb342;
}

.vision {
    margin-top: 15px;
    font-weight: 700;
    color: #0f172a;
}

/* CIRCULAR SOLUTIONS - Um pouco maior e verde */
.solutions-title {
    font-size: 1.1rem; /* Aumentado ligeiramente */
    letter-spacing: 0.15em;
    color: #7cb342;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
}

.services-grid {
    font-size: 1.35rem;
    font-weight: 600;
    color: #7cb342;
}

.divider {
    margin: 0 12px;
    color: #cbd5e1;
}

/* FOOTER e "BREVEMENTE" Moderno */
.footer {
    margin-top: 60px;
}

.status-text {
    font-size: 1.4rem; /* Reduzido para ser mais elegante */
    font-weight: 300; /* Mais fino, estilo moderno */
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 20px;
    opacity: 0.8;
}

.contact {
    font-size: 1rem;
    color: #64748b;
}

.contact a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
}

.contact a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .container { padding: 40px 25px; }
    .main-headline { font-size: 2.2rem; }
    .intro-text { font-size: 1.3rem; }
}