/* === MEUS TÍTULOS PAGE === */

.tickets-page {
  min-height: 100vh;
  padding-top: 64px;
  background: #f6f7fb;
}

.tickets-page__container {
  max-width: 600px;
  margin: 0 auto;
  padding: 36px 20px 64px;
}

/* ===== Header section ===== */

.tickets-page__header {
  margin-bottom: 28px;
}

.tickets-page__title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.tickets-page__subtitle {
  font-size: 14px;
  color: #888;
  margin-top: 6px;
  font-weight: 400;
  letter-spacing: 0.1px;
}

/* ===== Cards ===== */

.tickets-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ticket-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f4;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ticket-card:hover {
  box-shadow: 0 6px 28px rgba(255,45,120,0.1);
  transform: translateY(-1px);
}

.ticket-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.ticket-card__info {
  display: flex;
  flex-direction: column;
}

.ticket-card__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
}

.ticket-card__id {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-top: 3px;
  font-family: monospace;
}

.ticket-card__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e6faf0;
  color: #00a854;
  border: 1px solid #b7eacf;
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.ticket-card__status-dot {
  width: 7px;
  height: 7px;
  background: #00c853;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(0,200,83,0.25);
}

.ticket-card__count {
  font-size: 13px;
  color: #999;
  margin-bottom: 14px;
  font-weight: 500;
}

/* ===== Number badges ===== */

.ticket-card__numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ticket-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 34px;
  padding: 0 12px;
  background: #fff0f6;
  color: #ff2d78;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  font-family: monospace;
  letter-spacing: 0.5px;
  border: 1.5px solid rgba(255,45,120,0.15);
  transition: background 0.15s;
}

.ticket-number:hover {
  background: #ffe0ed;
}

/* ===== Empty state ===== */

.tickets-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 72px 20px 48px;
}

.tickets-empty__icon {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, #fff0f6 0%, #ffe4ef 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(255,45,120,0.12);
}

.tickets-empty__icon svg {
  width: 44px;
  height: 44px;
  stroke: #ff2d78;
  stroke-width: 1.5;
}

.tickets-empty__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.tickets-empty__text {
  font-size: 15px;
  color: #888;
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 300px;
}

.tickets-login-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff2d78 0%, #ff5fa0 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 36px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255,45,120,0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  letter-spacing: 0.2px;
}

.tickets-login-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(255,45,120,0.45);
  filter: brightness(1.05);
}

.tickets-login-btn:active {
  transform: scale(0.97);
  box-shadow: 0 2px 12px rgba(255,45,120,0.3);
}

/* ===== Loading ===== */

.tickets-loading {
  text-align: center;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: #999;
  font-size: 14px;
}

/* ===== Realtime badge ===== */

.tickets-realtime-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: #bbb;
  margin-top: 24px;
  letter-spacing: 0.2px;
}

/* ===== Sidebar active link ===== */

.sidebar__link--active {
  color: var(--pink-primary) !important;
  background: var(--pink-light);
  border-radius: 8px;
}

/* ===== Campanha Cards ===== */

.campanha-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f4;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.campanha-card:hover {
  box-shadow: 0 6px 28px rgba(255,45,120,0.1);
  transform: translateY(-2px);
}

.campanha-card__header {
  margin-bottom: 14px;
}

.campanha-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e6faf0;
  color: #00a854;
  border: 1px solid #b7eacf;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.campanha-card__dot {
  width: 7px;
  height: 7px;
  background: #00c853;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(0,200,83,0.25);
}

.campanha-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.campanha-card__desc {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 18px;
}

.campanha-card__progress {
  margin-bottom: 20px;
}

.campanha-card__progress-bar {
  width: 100%;
  height: 8px;
  background: #f0f0f4;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}

.campanha-card__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff2d78, #ff5fa0);
  border-radius: 999px;
  transition: width 0.4s ease;
}

.campanha-card__progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #aaa;
  font-weight: 500;
}

.campanha-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.campanha-card__price {
  display: flex;
  flex-direction: column;
}

.campanha-card__price-label {
  font-size: 11px;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.campanha-card__price-value {
  font-size: 22px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #ff2d78;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.campanha-card__cta {
  flex-shrink: 0;
  padding: 13px 28px;
  font-size: 15px;
}

/* ===== Responsive ===== */

@media (max-width: 480px) {
  .tickets-page__container {
    padding: 24px 16px 48px;
  }

  .tickets-page__title {
    font-size: 24px;
  }

  .tickets-login-btn {
    width: 100%;
    font-size: 15px;
    padding: 14px 24px;
  }
}
