/* 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: 1px solid #374151;
    border-radius: 8px;
    background: #1f2937;
    color: #fff;
    outline: none;
    transition: border-color 0.3s;
}

.senha-container input:focus {
    border-color: #6b7280;
}

.senha-container button {
    padding: 12px 25px;
    margin-left: 10px;
    background: #ffffff;
    color: #000000;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.senha-container button:hover {
    background: #f3f4f6;
    transform: translateY(-1px);
}

/* Botão de acesso */
.botao-desativado {
    opacity: 0.6;
    cursor: not-allowed;
    padding: 14px 35px;
    background: #111827;
    color: #9ca3af;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
    border: 1px solid #374151;
    transition: all 0.3s ease;
}

.botao-ativo {
    opacity: 1;
    cursor: pointer;
    background: #ffffff;
    padding: 14px 35px;
    color: #000000;
    text-decoration: none;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
    border: 1px solid #ffffff;
    box-shadow: 0 4px 12px rgba(255,255,255,0.1);
    transition: all 0.2s ease;
}

.botao-ativo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255,255,255,0.15);
    background: #f9fafb;
}

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

/* Estilo para botões de relatório */
.botao-relatorio {
    opacity: 0.5;
    cursor: not-allowed;
    display: flex;
    align-items: center;
    padding: 16px 24px;
    background: #111827;
    color: #d1d5db;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    border: 1px solid #374151;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.botao-relatorio .icone {
    font-size: 1.5rem;
    margin-right: 18px;
    background: #1f2937;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.botao-relatorio .texto {
    font-size: 1.05rem;
    line-height: 1.3;
}

.botao-relatorio.botao-ativo {
    opacity: 1;
    cursor: pointer;
    background: #1f2937;
    color: #f9fafb;
    border: 1px solid #4b5563;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.botao-relatorio.botao-ativo:hover {
    transform: translateY(-2px);
    background: #374151;
    border-color: #6b7280;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.botao-relatorio.botao-ativo:hover .icone {
    transform: scale(1.1) rotate(-5deg);
}

/* Destaque para o Dashboard (Ocupa as duas colunas inteiras) */
.botao-relatorio.destaque {
    grid-column: 1 / -1;
    justify-content: center;
    background: linear-gradient(145deg, #1f2937 0%, #111827 100%);
}
.botao-relatorio.destaque .icone {
    background: rgba(99, 102, 241, 0.15); /* Fundo índigo translúcido */
}
.botao-relatorio.destaque.botao-ativo:hover {
    border-color: #6366f1;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.2);
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .botoes-relatorios {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .botao-relatorio {
        padding: 12px 16px;
    }
    
    .botao-relatorio.destaque {
        justify-content: flex-start;
    }
}
