/* =========================================
   PAINEL ADMIN FLLUMEN
   ========================================= */
* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Montserrat', sans-serif; }
body { background-color: #f4f6f8; color: #333; }

/* =========================================
   CABEÇALHO SUPERIOR FIXO
   ========================================= */
.header-admin-topo {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.container-header-admin {
    max-width: 1400px; margin: 0 auto; padding: 0 30px;
    display: flex; justify-content: space-between; align-items: center; height: 70px;
}

.logo-admin-topo {
    font-weight: 800; font-size: 18px; color: #e30613;
    display: flex; align-items: center; gap: 10px;
}

.nav-admin-topo { display: flex; gap: 10px; height: 100%; }

.item-nav-topo {
    display: flex; align-items: center; gap: 8px;
    padding: 0 20px; color: #555555; text-decoration: none;
    font-size: 14px; font-weight: 600;
    border-bottom: 3px solid transparent; transition: 0.2s;
}

.item-nav-topo:hover { color: #e30613; background-color: #fcfcfc; }
.item-nav-topo.ativo { color: #e30613; border-bottom: 3px solid #e30613; }

.perfil-admin-topo { display: flex; align-items: center; gap: 20px; font-size: 13px; color: #555; }
.btn-sair-admin { color: #888; font-size: 18px; transition: 0.2s; text-decoration: none; }
.btn-sair-admin:hover { color: #e30613; }

/* =========================================
   ÁREA CENTRAL (BOTÕES GIGANTES)
   ========================================= */
.workspace-admin { 
    max-width: 1000px; 
    /* A mágica acontece aqui: 150px empurra bem para baixo */
    margin: 150px auto 60px auto; 
    padding: 0 20px; 
}

.cabecalho-workspace-centro {
    text-align: center;
    margin-bottom: 40px;
}

.cabecalho-workspace-centro h1 {
    font-size: 28px;
    font-weight: 800;
    color: #222;
    margin-bottom: 10px;
}

.cabecalho-workspace-centro p {
    font-size: 15px;
    color: #666;
}

/* O Grid que alinha os 4 botões lado a lado */
.grid-botoes-dashboard {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* O Botão Card em si */
.btn-card-dashboard {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 50px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.icone-card {
    width: 70px;
    height: 70px;
    background-color: #fcfcfc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #e30613;
    transition: all 0.3s ease;
}

.btn-card-dashboard span {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

/* Efeito Hover (Quando passa o mouse) */
.btn-card-dashboard:hover {
    border-color: #e30613;
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(227, 6, 19, 0.1);
}

.btn-card-dashboard:hover .icone-card {
    background-color: #e30613;
    color: #ffffff;
}