/* ============================================================
   GPPSD Sistema — Estilos personalizados
   ============================================================ */

:root {
  --verde:       #1a6e2e;
  --verde-light: #e8f5ec;
  --verde-dark:  #145424;
}

/* Barra superior */
.navbar-gppsd {
  background: var(--verde) !important;
}
.navbar-gppsd .navbar-brand,
.navbar-gppsd .nav-link,
.navbar-gppsd .navbar-text {
  color: #fff !important;
}
.navbar-gppsd .nav-link:hover,
.navbar-gppsd .nav-link.active {
  color: #fff !important;
  background: rgba(255,255,255,.15);
  border-radius: 6px;
}

/* Corpo */
body {
  background: #f5f7f5;
  font-size: .93rem;
}

/* Cards de estatística */
.stat-card {
  border-radius: 12px;
  border: none;
  padding: 1.2rem 1.4rem;
}
.stat-card .stat-num {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
.stat-card .stat-label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: .25rem;
}

/* Badges de status */
.badge-pago     { background: #d4edda; color: #155724; }
.badge-pendente { background: #f8d7da; color: #721c24; }

/* Botão principal */
.btn-gppsd {
  background: var(--verde);
  color: #fff;
  border: none;
}
.btn-gppsd:hover {
  background: var(--verde-dark);
  color: #fff;
}

/* Tabelas */
.table thead th {
  background: var(--verde-light);
  color: var(--verde-dark);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-top: none;
}
.table tbody tr:hover {
  background: #f8fbf8;
}

/* Recibo */
.recibo-container {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 2rem;
}
.recibo-header {
  border-bottom: 3px solid var(--verde);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
.recibo-header .nome-clube {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--verde);
}
.recibo-numero {
  font-size: .85rem;
  color: #666;
}
.recibo-campo {
  display: flex;
  justify-content: space-between;
  padding: .4rem 0;
  border-bottom: 1px dashed #eee;
}
.recibo-campo:last-child { border-bottom: none; }
.recibo-campo .label { color: #666; font-size: .88rem; }
.recibo-campo .valor { font-weight: 500; }
.recibo-footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
  font-size: .8rem;
  color: #888;
  text-align: center;
}

/* Impressão */
@media print {
  .navbar-gppsd, .no-print, .btn, form { display: none !important; }
  body { background: #fff; }
  .recibo-container { border: none; padding: 0; box-shadow: none; }
}

/* Formulários */
.form-label { font-weight: 500; font-size: .88rem; }
.card { border-radius: 12px; border: 1px solid #e0e8e0; }
.card-header { background: var(--verde-light); border-bottom: 1px solid #c8ddc8; }
