/*=============================================================================*/
/* SUMMARY DE MATRÍCULA */
/*=============================================================================*/
.card.summary-card {
  background: #2b2b2b;
  border-radius: 5px;
  padding: 16px;
  border: 1px solid #333;
  color: #eaeaea;
}

/* Header */
.card-header {
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid #3a3a3a;
}

.card-title {
  margin: 0;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: #ffffff;
}

/* Subtítulo */
.sub-title {
  margin: 16px 0 8px;
  text-align: center;
  font-weight: 600;
  color: #4fc3f7;
}

/* Listas */
.summary-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Item */
.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-radius: 4px;
  background: #262626;
}

/* Texto */
.summary-text {
  color: #bbbbbb;
}

.summary-text span {
  font-weight: 600;
  color: #eaeaea;
}

.summary-text small {
  color: #888888;
}

/* Valor */
.summary-price {
  font-weight: bold;
  color: #4fc3f7;
}

/* Destaque do total */
.stripe-total .summary-price {
  font-size: 1.15em;
}

/* Cupom aplicado */
.summary-text.cupom-ativo {
  color: #d9534f;
  font-weight: 700;
}

/* Oculta descrições vazias */
.summary-text small:empty {
  display: none;
}
