/* ==========================================================================
   RESET E CONFIGURAÇÕES GERAIS (INSPIRADO NA UNIVASF)
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    /* Fundo em gradiente institucional leve */
    background: linear-gradient(135deg, #f0f4f8 0%, #e1e8f0 100%);
    color: #1a202c;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 30px 20px;
}

/* ==========================================================================
   CABEÇALHO ACADÊMICO
   ========================================================================== */
header {
    text-align: center;
    margin-bottom: 45px;
    max-width: 500px;
}

header h1 {
    font-size: 2.3rem;
    color: #0d47a1; /* Azul Escuro Oficial Univasf */
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    text-transform: uppercase; /* Dá um tom mais formal de portal */
}

/* Traço sutil abaixo do título com o Amarelo Sol da Univasf */
header::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: #ffcc00; /* Amarelo Oficial Univasf */
    margin: 15px auto;
    border-radius: 3px;
}

header p {
    color: #4a5568;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

/* ==========================================================================
   CONTAINER DOS BOTÕES (RESPONSIVO PARA CELULARES)
   ========================================================================== */
.container-botoes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
    max-width: 450px; /* Largura perfeita para telas de celular via QR Code */
}

/* ==========================================================================
   ESTILIZAÇÃO DOS BOTÕES (PADRÃO PORTAL UNIVASF)
   ========================================================================== */
.btn-pdf {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0d47a1; /* Azul Base Univasf */
    color: #ffffff; /* Texto Branco para alto contraste */
    text-decoration: none;
    padding: 18px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px; /* Cantos limpos padrão institucional */
    border-bottom: 4px solid #0a357a; /* Borda inferior para efeito de clique profunda */
    
    /* Sombra sutil */
    box-shadow: 0 4px 6px rgba(13, 71, 161, 0.15);
    
    /* Transição suave */
    transition: all 0.2s ease-in-out;
}

/* Efeito Hover (Ao passar o mouse no PC / Toque estendido) */
@media (hover: hover) {
    .btn-pdf:hover {
        background-color: #0a357a; /* Escurece o azul levemente */
        border-color: #ffcc00; /* Destaca a borda inferior com o Amarelo Univasf */
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(13, 71, 161, 0.3);
    }
}

/* Efeito Tátil de Clique (No Celular) */
.btn-pdf:active {
    transform: translateY(2px);
    border-bottom-width: 1px; /* Achata o botão simulando um clique real */
}

/* Rodapé opcional identificando a instituição */
footer {
    margin-top: 40px;
    font-size: 0.8rem;
    color: #718096;
    text-align: center;
    font-weight: 500;
}