/* Confraria Timbeirão - Painel Administrativo */

.admin-body { background: #f2f2f2; }

.admin-wrapper { display: flex; min-height: 100vh; }

.admin-sidebar {
  width: 250px;
  background: var(--vermelho-escuro);
  color: #fff;
  flex-shrink: 0;
  padding: 20px 0;
}
.admin-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,.15);
  margin-bottom: 10px;
}
.admin-brand img { height: 40px; background: #fff; border-radius: 6px; padding: 3px; }
.admin-brand span { font-weight: 700; }

.admin-nav { display: flex; flex-direction: column; }
.admin-nav a {
  color: #f2d4d4;
  padding: 12px 20px;
  font-weight: 600;
  font-size: .92rem;
}
.admin-nav a:hover, .admin-nav a.active {
  background: rgba(255,255,255,.1);
  color: #fff;
}
.admin-nav a.admin-logout { margin-top: 14px; border-top: 1px solid rgba(255,255,255,.15); padding-top: 16px; color: #ffd6d6; }

.admin-content { flex: 1; padding: 30px; overflow-x: auto; }

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.admin-topbar h1 { margin: 0; font-size: 1.8rem; }

.admin-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--sombra);
  padding: 24px;
  margin-bottom: 24px;
}

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid #eee;
  font-size: .92rem;
  vertical-align: middle;
}
.admin-table th { background: #faf5f5; color: var(--vermelho-escuro); }
.admin-table img.thumb { width: 46px; height: 46px; object-fit: cover; border-radius: 6px; }

.admin-actions a, .admin-actions button {
  font-size: .82rem;
  margin-right: 8px;
  padding: 6px 12px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
}
.admin-actions .btn-editar { background: #e8f0fe; color: #1a56db; }
.admin-actions .btn-excluir { background: #fdecec; color: #a12020; }

.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 26px; }
.stat-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--sombra);
  padding: 20px;
  text-align: center;
}
.stat-box .num { font-size: 2rem; font-family: var(--fonte-titulo); color: var(--vermelho); }
.stat-box .label { color: #777; font-size: .85rem; }

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--vermelho) 0%, var(--vermelho-escuro) 100%);
  padding: 20px;
}
.login-box {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
  text-align: center;
}
.login-box img { height: 90px; margin: 0 auto 16px; }

@media (max-width: 900px) {
  .admin-wrapper { flex-direction: column; }
  .admin-sidebar { width: 100%; }
  .admin-nav { flex-direction: row; flex-wrap: wrap; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
}
