/* =============================================================
   Tiqueteira — Card Pattern
   Design dos cards e da página interna clonado do facilita.vc,
   mantendo as cores da tiqueteira via tokens abaixo.
   ============================================================= */

:root {
  --brand:        #6f42c1;   /* roxo tiqueteira (bg-purple) */
  --brand-cta:    #fd7e14;   /* laranja CTA (bg-orange) */
  --brand-accent: #20c997;   /* teal destaque (bg-teal) */
  --muted:        #6c757d;
  --radius-card:  12px;
  --radius-pill:  999px;
}

/* ---- Fix sticky (Bootstrap 4 define overflow-x:hidden no body,
   tornando o body o scroll container do position:sticky — mas o body
   não scrolla, então o sticky nunca ativa. overflow-x:clip corta o
   overflow horizontal sem criar scroll container.) ---- */
body {
  overflow-x: clip !important;
}

.wrapper {
  overflow: visible !important;
}

/* ---- Home: section de apresentação (tipografia estilo cartaz de show,
   só texto + picote de ingresso como assinatura visual) ---- */
@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.home-hero {
  text-align: center;
  padding: 2.75rem 1rem 0.5rem;
  margin-bottom: 1.25rem;
}

/* Eyebrow: etiqueta pequena acima do nome */
.home-hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-accent);
  margin-bottom: 0.75rem;
  animation: heroRise 0.5s ease 0.05s backwards;
}

.home-hero-eyebrow::before,
.home-hero-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

/* Nome da marca: display condensada, metade ink / metade roxo com brilho */
.home-hero-title {
  font-family: 'Anton', 'Source Sans Pro', sans-serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 7vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1c1c24;
  margin-bottom: 0.6rem;
  animation: heroRise 0.5s ease 0.15s backwards;
}

.home-hero-title .titulo-roxo {
  background: linear-gradient(110deg,
      var(--brand) 42%,
      #a87fe8 50%,
      var(--brand) 58%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroShimmer 5s linear infinite;
}

.home-hero-desc {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto;
  animation: heroRise 0.5s ease 0.25s backwards;
}

/* Picote de ingresso: linha perfurada com o ticket no meio */
.home-hero-picote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  max-width: 300px;
  margin: 1.5rem auto 0;
  animation: heroRise 0.5s ease 0.35s backwards;
}

.home-hero-picote::before,
.home-hero-picote::after {
  content: "";
  flex: 1;
  border-top: 2px dashed #d8d2e8;
}

.home-hero-picote i {
  color: var(--brand-cta);
  font-size: 1.25rem;
  line-height: 1;
  transform: rotate(-8deg);
}

/* ---- Home: título da section de eventos ---- */
.home-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

/* ---- Card de evento (listagem) ---- */
.shadow-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shadow-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12) !important;
}

.card-img-container {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.card-img-container img {
  transition: transform 0.5s ease;
}

.shadow-hover:hover .card-img-container img {
  transform: scale(1.05);
}

/* Brilho que varre a imagem no hover */
.card-img-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.35) 100%);
  transform: skewX(-25deg);
  pointer-events: none;
}

.shadow-hover:hover .card-img-container::after {
  animation: card-shine 0.75s ease;
}

@keyframes card-shine {
  100% {
    left: 125%;
  }
}

/* Badge cresce levemente junto com o card */
.card-img-container .badge {
  transition: transform 0.3s ease;
}

.shadow-hover:hover .card-img-container .badge {
  transform: scale(1.08);
}

/* Título do card assume a cor da marca no hover */
.shadow-hover .card-body h5 a {
  transition: color 0.2s ease;
}

.shadow-hover:hover .card-body h5 a {
  color: var(--brand) !important;
}

/* Linha de data em destaque no body do card */
.card-event-date {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* Slot da cidade/UF (aguardando dado no banco) */
.card-event-city {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Botão Ver detalhes */
.card-btn-details {
  display: block;
  width: 100%;
  text-align: center;
  border: 1px solid var(--brand);
  border-radius: var(--radius-pill);
  color: var(--brand) !important;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  text-decoration: none !important;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.card-btn-details:hover {
  background-color: var(--brand);
  color: #fff !important;
}

/* Badge "via [fonte]" dos eventos externos (parceiros). Cor distinta do
   "Vendas abertas" (teal) e do "Encerrado" (warning): tom da marca para
   sinalizar conteúdo agregado de fonte parceira. */
.card-badge-parceiro {
  background-color: var(--brand);
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Botão "Comprar no site oficial" dos eventos externos. Mesma anatomia do
   .card-btn-details, mas preenchido na cor de CTA (laranja) para reforçar
   que leva para fora (site da fonte), e não ao checkout interno. */
.card-btn-externo {
  display: block;
  width: 100%;
  text-align: center;
  border: 1px solid var(--brand-cta);
  border-radius: var(--radius-pill);
  background-color: var(--brand-cta);
  color: #fff !important;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  text-decoration: none !important;
  transition: background-color 0.2s ease, filter 0.2s ease;
}

.card-btn-externo:hover {
  filter: brightness(1.06);
  color: #fff !important;
}

.card-cta-link {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  white-space: nowrap;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.card-cta-link i {
  transition: transform 0.2s ease;
}

.card-cta-link:hover {
  color: var(--brand);
}

.card-cta-link:hover i {
  transform: translateX(3px);
}

/* =============================================================
   Home — Carrossel "Principais eventos" (destaque)
   Mesmo aesthetic "capa de show" do header do evento: arte do
   evento desfocada ao fundo + flyer + infos sobre overlay escuro.
   ============================================================= */
.carousel-principais {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(28, 20, 45, 0.12);
}

.principal-slide {
  position: relative;
  display: block;
  overflow: hidden;
  color: #fff;
  text-decoration: none !important;
}

.principal-slide-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  filter: blur(24px) brightness(0.4) saturate(1.3);
  transform: scale(1.25);
}

.principal-slide::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(28, 20, 45, 0.15) 0%, rgba(28, 20, 45, 0.7) 100%);
}

.principal-slide-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 1.85rem 2.5rem;
  min-height: clamp(240px, 22vw, 280px);
}

.principal-slide-flyer {
  flex-shrink: 0;
  max-height: clamp(200px, 19vw, 240px);
  max-width: clamp(200px, 19vw, 240px);
  width: auto;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.principal-slide-info {
  flex: 1;
  min-width: 0;
}

.principal-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  background: var(--brand-cta);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.principal-slide-title {
  font-family: 'Anton', 'Source Sans Pro', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0.85rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.principal-slide-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.principal-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

.principal-chip i {
  color: var(--brand-accent);
}

.principal-slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-pill);
  background: var(--brand);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.principal-slide:hover .principal-slide-cta {
  background: #59359c;
  transform: translateX(3px);
}

/* Setas: círculo escuro que vira roxo no hover, destacando do fundo */
.carousel-principais .carousel-control-prev,
.carousel-principais .carousel-control-next {
  width: 7%;
  opacity: 1;
}

.carousel-principais .carousel-control-prev-icon,
.carousel-principais .carousel-control-next-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(28, 20, 45, 0.55);
  background-size: 45% 45%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: background-color 0.2s ease;
}

.carousel-principais .carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-principais .carousel-control-next:hover .carousel-control-next-icon {
  background-color: var(--brand);
}

.carousel-principais .carousel-indicators li {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.55);
}

.carousel-principais .carousel-indicators li.active {
  background-color: var(--brand-cta);
}

@media (max-width: 767.98px) {
  .principal-slide-inner {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem 1rem 2.5rem;
    gap: 1.5rem;
    min-height: 0;
  }

  .principal-slide-flyer {
    max-height: clamp(170px, 50vw, 210px);
    max-width: clamp(170px, 50vw, 210px);
  }

  .principal-slide-chips {
    justify-content: center;
  }

  .carousel-principais .carousel-control-prev,
  .carousel-principais .carousel-control-next {
    width: 14%;
  }
}

/* =============================================================
   Página do evento — redesign "capa de show"
   Header imersivo com a arte do evento desfocada ao fundo +
   card de compra em formato de bilhete com picote
   ============================================================= */

/* ---- Header do evento ---- */
.event-header {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  margin-bottom: 1.25rem;
}

.event-header-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  filter: blur(22px) brightness(0.45) saturate(1.25);
  transform: scale(1.2);
}

.event-header::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(28, 20, 45, 0.15) 0%, rgba(28, 20, 45, 0.65) 100%);
}

.event-header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 2rem;
}

.event-header-flyer {
  max-height: 240px;
  max-width: 240px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.event-header-title {
  font-family: 'Anton', 'Source Sans Pro', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0.85rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.event-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.event-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.event-chip i {
  color: var(--brand-accent);
}

a.event-chip {
  text-decoration: none;
  transition: background-color 0.2s ease;
}

a.event-chip:hover {
  background: rgba(255, 255, 255, 0.28);
  color: #fff;
}

@media (max-width: 767.98px) {
  .event-header-inner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
    gap: 1.25rem;
  }

  .event-header-flyer {
    max-height: 200px;
  }

  .event-chips {
    justify-content: center;
  }
}

/* ---- Card de compra (estilo bilhete) ---- */
.event-buy-card {
  border: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(28, 20, 45, 0.08);
}

.event-buy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.9rem 1.25rem;
  background: linear-gradient(135deg, var(--brand) 0%, #59359c 100%);
  color: #fff;
}

.event-buy-header-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.event-status-pill {
  background: var(--brand-accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.4em 0.9em;
}

.event-status-pill.encerrado {
  background: #ffc107;
  color: #1c1c24;
}

.event-buy-subtitle {
  font-weight: 700;
  color: #1c1c24;
  margin: 1rem 0 0.75rem;
}

/* ---- Tabela de lotes (distribuição/espaçamento) ---- */
.event-buy-card .table.table-lotes {
  margin-bottom: 0;
}

.event-buy-card .table-lotes th,
.event-buy-card .table-lotes td {
  vertical-align: middle;
  padding: 0.6rem 0.5rem;
  border-top-color: #eef0f4;
}

.event-buy-card .table-lotes thead th {
  border-bottom: 1px solid #eef0f4;
  border-top: 0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.event-buy-card .table-lotes th:first-child,
.event-buy-card .table-lotes td:first-child {
  padding-left: 0;
}

.lote-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #1c1c24;
  line-height: 1.25;
}

.lote-price {
  font-weight: 700;
  color: var(--brand);
  font-size: 0.92rem;
}

/* Coluna da quantidade: encolhe ao conteúdo e alinha o stepper à direita */
.lote-qty-cell {
  width: 1%;
  white-space: nowrap;
  text-align: right;
  padding-right: 0 !important;
}

/* ---- Seletor de quantidade (stepper - / número / +) ---- */
.qty-native {
  display: none;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  height: 38px;
  border: 1px solid #e0dcef;
  border-radius: var(--radius-pill);
  background: #fff;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.qty-stepper:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 0.18rem rgba(111, 66, 193, 0.15);
}

.qty-btn {
  width: 34px;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand);
  font-size: 0.85rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.qty-btn:hover:not(:disabled) {
  background: rgba(111, 66, 193, 0.1);
}

.qty-btn:active:not(:disabled) {
  background: rgba(111, 66, 193, 0.2);
}

.qty-btn:disabled {
  color: #c9c4d8;
  cursor: default;
}

.qty-input {
  width: 40px;
  height: 100%;
  padding: 0;
  border: 0;
  border-left: 1px solid #efedf6;
  border-right: 1px solid #efedf6;
  background: transparent;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1c1c24;
  -moz-appearance: textfield;
  appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-input:focus {
  outline: none;
  background: rgba(111, 66, 193, 0.06);
}

/* Estado de erro (calculaTotal marca o select com .border-danger) */
.qty-native.border-danger + .qty-stepper:not([data-sold-out="true"]) {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.15rem rgba(220, 53, 69, 0.15);
}

/* Lote esgotado: substitui o stepper por um selo */
.qty-soldout {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 0.85rem;
  border-radius: var(--radius-pill);
  background: #f1f1f4;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Banner do Pix: forma de pagamento principal, sempre visível */
.pix-banner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(50, 188, 173, 0.35);
  background: rgba(50, 188, 173, 0.07);
  border-radius: 10px;
  margin-bottom: 1rem;
}

.pix-banner-logo {
  height: 32px;
  width: auto;
  flex-shrink: 0;
}

.pix-banner-text strong {
  display: block;
  font-size: 0.85rem;
  color: #1c1c24;
}

.pix-banner-text small {
  color: var(--muted);
  font-size: 0.76rem;
}

/* Picote do bilhete antes do total */
.ticket-divider {
  position: relative;
  border-top: 2px dashed #e0dcef;
  margin: 1.25rem -1.25rem 1rem;
}

.ticket-divider::before,
.ticket-divider::after {
  content: "";
  position: absolute;
  top: -10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f4f6f9; /* mesma cor do fundo da página (AdminLTE) */
}

.ticket-divider::before {
  left: -9px;
}

.ticket-divider::after {
  right: -9px;
}

.event-total {
  color: var(--brand);
  font-weight: 700;
}

/* ---- Coluna de conteúdo: cards "Como funciona" e FAQ ---- */
.event-content-card {
  border: 0;
  border-radius: var(--radius-card);
  box-shadow: 0 4px 16px rgba(28, 20, 45, 0.08);
  margin-bottom: 1.25rem;
}

.event-section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #1c1c24;
  margin-bottom: 1.25rem;
}

/* Passo a passo da compra */
.event-step {
  text-align: center;
  padding: 0 0.75rem;
  margin-bottom: 1rem;
}

.event-step-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(111, 66, 193, 0.08);
  color: var(--brand);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.event-step-num {
  position: absolute;
  top: -4px;
  right: -4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--brand-cta);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}

.event-step h6 {
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.3rem;
}

.event-step p {
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 0;
}

/* FAQ em accordion */
.event-faq-item + .event-faq-item {
  border-top: 1px solid #eef0f4;
}

.event-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 0.25rem;
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  color: #1c1c24;
  cursor: pointer;
}

.event-faq-q:focus {
  outline: none;
  color: var(--brand);
}

.event-faq-q i {
  color: var(--brand);
  transition: transform 0.2s ease;
}

.event-faq-q[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.event-faq-a {
  padding: 0 0.25rem 0.85rem;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ---- Página de suporte: canais de contato ---- */
.suport-channel {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border: 1px solid #eef0f4;
  border-radius: 10px;
  margin-bottom: 0.75rem;
  color: #1c1c24;
  text-align: left;
  text-decoration: none !important;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.suport-channel:hover {
  border-color: var(--brand);
  background: rgba(111, 66, 193, 0.04);
  transform: translateY(-2px);
  color: #1c1c24;
}

.suport-channel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(111, 66, 193, 0.08);
  color: var(--brand);
  font-size: 1.2rem;
}

.suport-channel strong {
  display: block;
  font-size: 0.9rem;
}

.suport-channel small {
  color: var(--muted);
}

/* ---- Descrição / instruções expansível (clone do facilita) ---- */
.card-property-description {
  position: relative;
  overflow: hidden;
}

.card-body-description {
  max-height: 180px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.card-body-description-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.5rem;
  height: 60px;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 1));
  pointer-events: none;
  transition: opacity 0.3s ease;
  opacity: 1;
}

.card-body-description-fade.oculto {
  opacity: 0;
}

.card-body-description-toggle-wrapper {
  padding-top: 0.25rem;
  padding-bottom: 0.5rem;
  text-align: center;
}

.card-body-description-toggle {
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  color: var(--brand);
  border: 1px solid var(--brand);
  background: transparent;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.card-body-description-toggle:hover {
  background-color: var(--brand);
  color: #fff;
}

/* ---- Paginação na cor da marca ---- */
.page-link {
  color: var(--brand);
}

.page-link:hover {
  color: #59359c;
}

.page-link:focus {
  box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.25);
}

.page-item.active .page-link {
  background-color: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* ---- Sidebar sticky de compra ---- */
.event-buy-sticky {
  position: sticky;
  top: 10px;
}

/* Botão Gerar Pix com elevação no hover */
#geraPix {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

#geraPix:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(253, 126, 20, 0.4);
  filter: brightness(1.05);
}

/* Estado "apagado": enquanto nenhum ingresso foi escolhido (total R$ 0,00).
   Continua clicável de propósito — o clique dispara o aviso "escolha ingressos". */
#geraPix.geraPix-off {
  opacity: 0.5;
  filter: grayscale(0.45);
}

#geraPix.geraPix-off:hover {
  transform: none;
  box-shadow: none;
  filter: grayscale(0.45);
}

#card-pix .card {
  width: 100% !important;
}

/* Nota: sem bloco prefers-reduced-motion aqui de propósito — o Windows com
   "Efeitos de animação" desativado ativa essa media query e mataria todos
   os hovers (mesmo comportamento do facilita.vc, que também não usa). */
