/* Estilos base */
body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #1a1a1a;
    font-family: 'Arial', sans-serif;
}

.container {
    text-align: center;
}

/* Animação do logo */
.logo-animado {
    width: 200px;
    opacity: 0;
    animation: carregamento 2s ease-in-out forwards;
}

@keyframes carregamento {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Formulário de senha */
.senha-container {
    margin: 2rem 0;
}

.senha-container input {
    padding: 12px 20px;
    font-size: 1.1rem;
    border: 2px solid #444;
    border-radius: 25px;
    background: #333;
    color: #fff;
    outline: none;
    transition: border-color 0.3s;
}

.senha-container button {
    padding: 12px 25px;
    margin-left: 10px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

/* Botão de acesso */
.botao-desativado {
    opacity: 0.5;
    cursor: not-allowed;
    padding: 15px 40px;
    background: linear-gradient(135deg, #0066cc, #004799);
    color: white;
    text-decoration: none;
    border-radius: 35px;
    display: inline-block;
    font-weight: bold;
    border: 2px solid #004799;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.botao-ativo {
    opacity: 1;
    cursor: pointer;
    animation: pulsar 1.5s infinite;
    background: linear-gradient(135deg, #00cc66, #00994d);
    padding: 15px 40px;
    color: white;
    text-decoration: none;
    border-radius: 35px;
    display: inline-block;
    font-weight: bold;
    border: 2px solid #00994d;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.botao-ativo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.2);
}

@keyframes pulsar {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Container para múltiplos botões de relatório */
.botoes-relatorios {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Estilo para botões de relatório */
.botao-relatorio {
    opacity: 0.5;
    cursor: not-allowed;
    padding: 12px 30px;
    background: linear-gradient(135deg, #0066cc, #004799);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    display: inline-block;
    font-weight: bold;
    border: 2px solid #004799;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
}

.botao-relatorio.botao-ativo {
    opacity: 1;
    cursor: pointer;
    animation: pulsar 1.5s infinite;
    background: linear-gradient(135deg, #00cc66, #00994d);
    border: 2px solid #00994d;
}

.botao-relatorio.botao-ativo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.2);
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .botoes-relatorios {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 300px;
    }
    
    .botao-relatorio {
        min-width: 150px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
