/* =================================================================== */
/* ESTILO - PÁGINA DE ENCERRAMENTO (IDENTITY MATCH)                    */
/* =================================================================== */

:root {
    /* Cores Oficiais do Colégio */
    --color-green: #78B1A2; 
    --color-orange: #E2822B; 
    --color-red: #D42D20;
    --color-dark: #1d1d1b; 
    --color-bg: #f5f6f8;
    --color-white: #ffffff;
    
    --font-primary: 'Nunito', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-dark);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.closed-container {
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.closed-card {
    background-color: var(--color-white);
    max-width: 500px;
    width: 100%;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    border-top: 6px solid var(--color-red); /* Vermelho indica "Fechado/Atenção" */
}

/* Logo */
.logo {
    max-width: 180px;
    margin-bottom: 2rem;
}

/* Badge de Status */
.status-badge {
    display: inline-block;
    background-color: #fee2e2; /* Vermelho bem claro */
    color: var(--color-red);
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge i { margin-right: 5px; }

/* Tipografia */
h1 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.main-text {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.sub-text {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

/* Botão WhatsApp */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366; /* Verde oficial do WhatsApp */
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn:hover {
    background-color: #1da851;
    transform: translateY(-2px);
}

/* Rodapé Simples */
.simple-footer {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #999;
}