:root {
    --bg-blue: #003888; /* Azul solicitado */
    --accent-yellow: #fdd000; /* Amarelo da logo */
    --accent-green: #009540; /* Verde da logo */
    --white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-blue);
    color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.logo-box img {
    max-width: 280px;
    height: auto;
    margin-bottom: 30px;
    /* Adiciona um leve brilho se a logo for muito escura para o fundo */
    filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.2));
}

.status-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1.5px solid var(--accent-yellow);
    color: var(--accent-yellow);
    font-size: 0.75rem;
    letter-spacing: 3px;
    border-radius: 4px;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-green), transparent);
    width: 200px;
    margin: 0 auto 40px;
}

/* Informações de Contato */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.contact-item i {
    color: var(--accent-yellow);
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.contact-item a:hover {
    border-bottom-color: var(--accent-green);
    color: var(--accent-green);
}

/* Rodapé */
footer {
    background-color: rgba(0, 0, 0, 0.15); /* Escurece levemente o azul no rodapé */
    padding: 25px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
}

footer a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 600px) {
    h1 { font-size: 1.7rem; }
    .logo-box img { max-width: 220px; }
}