/* WHATSAPP BUTTON */
.whatsapp-button {
  position: fixed;
  bottom: 120px;
  right: 6px;
  z-index: 25;
  width: 300px;
  height: 3px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.whatsapp-button img#desktop-image {
  width: 100%;
  height: auto;
}
.whatsapp-button img#mobile-image {
  width: 0;
  height: 0;
}

/* Ajustes para dispositivos móveis */
@media (max-width: 768px) {
  .whatsapp-button {
    bottom: 160px;
    right: -120px;
  }
  .whatsapp-button-mobile-not-event {
    bottom: 120px;
    right: -10px;
  }
  .whatsapp-hide-on-mobile-event {
    display: none !important;
  }
  .whatsapp-button img#mobile-image {
    width: 36px;
    height: 36px;
  }
}

/* ============================================================
 * CONFIGURAÇÃO GERAL DO MODAL (estrutura de altura e flex)
 * ============================================================ */
#modalFluxoCompra .modal-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Sticky header apenas para os botões de ação */
#modalFluxoCompra .ings-sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: url("https://backstagemirantehomologacao.com/wp-content/uploads/2025/08/header_checkout_v2.jpg");
  background-size: cover; /* Faz a imagem cobrir toda a div mantendo proporção */
  background-repeat: no-repeat; /* Impede repetição da imagem */
  background-position: center; /* Centraliza a imagem */
  flex-shrink: 0;
  min-height: 60px;
}

/* Header de conteúdo (imagem + título) */
#modalFluxoCompra .ings-header-content {
  flex-shrink: 0;
  padding: 20px 0px;
  background-color: #ffffff;
  box-shadow: 0 4px 16px rgb(2 100 140 / 15%);
}

.ings-modal-footer {
  border: none !important;
  box-shadow: 0 -4px 16px rgb(2 100 140 / 15%);
}

/* Remove o header antigo do fluxo normal e faz o corpo do modal crescer. */
#modalFluxoCompra #ings-modal-fluxo-compra {
  flex-grow: 1; /* Faz esta seção crescer e ocupar o espaço disponível */
  display: flex;
  flex-direction: column;
}

/* 3. Garante que os containers internos também se expandam. */
#modalFluxoCompra #ings-modal-fluxo-compra > .row,
#modalFluxoCompra #modal-body-fluxo-compra {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* 4. Garante que o container do passo 2 e o container do iframe se expandam. */
#modalFluxoCompra #step-2-container,
#modalFluxoCompra #container-auth {
  flex-grow: 1;
}

/* 5. Finalmente, força o iframe a ocupar 100% do seu container pai. */
#modalFluxoCompra .authing-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
 * BOTÃO DE COMPRA - ESTILO PADRÃO E DESATIVADO
 * ============================================================ */
.button-buy-container {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 998;
  background: radial-gradient(circle at center, #00000080 0%, #033b427d 100%);
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em 0;
  backdrop-filter: blur(10px);
  margin: 0; /* Remove margin para grudar no rodapé */
  border-top: 1px solid #383838b0; /* borda superior */
}

.button-buyVirrey {
  background: linear-gradient(180deg, #f36f00, #f2295b);
  border: none;
  border-radius: 30px;
  width: auto;
  padding: 0 54px;
  min-width: 224px;
  height: 45px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.button-buyVirrey.button-sold-out {
  background: #888888;
  cursor: not-allowed;
}

/* ============================================================
 * ESTILOS AUXILIARES DO MODAL (visuais e responsivos)
 * ============================================================ */
.disabled {
  pointer-events: none;
  opacity: 0.65;
}

.timer-ingresse {
  font-size: 34px;
  margin: 20px;
  text-align: center;
  margin-left: 40px;
  color: black;
}

@media (max-width: 768px) {
  .timer-ingresse {
    margin-left: 0;
    font-size: 24px;
  }
}

.my-swal {
  z-index: 99999;
}

.ingdispo {
  font-size: 14px;
}

.cupom-text {
  font-size: 14px;
  background-color: #03aeff;
  padding: 10px 20px;
  border-radius: 5px;
  align-self: center;
}

/* ============================================================
 * ESTILOS DO HEADER DO MODAL (novo layout responsivo)
 * ============================================================ */

/* Logo do modal - fix para problemas de dimensionamento mobile */
.ings-modal-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0; /* Impede que o logo seja comprimido */
}

.ings-modal-logo img {
  object-fit: contain; /* Mantém proporção sem distorção */
  width: auto !important; /* Força width auto */
  height: auto !important; /* Força height auto */
  max-width: none !important; /* Remove limitações de max-width */
}

/* Desktop: logo maior */
@media (min-width: 576px) {
  .ings-modal-logo img.d-none.d-sm-block {
    height: 32px !important;
    min-height: 32px;
    max-height: 32px !important;
  }
}

/* Mobile: logo menor */
@media (max-width: 575px) {
  .ings-modal-logo img.d-block.d-sm-none {
    height: 24px !important;
    min-height: 24px;
    max-height: 24px !important;
  }
}

/* Prevenção de zoom no modal - especialmente importante para mobile */
#modalFluxoCompra {
  touch-action: manipulation;
  user-select: none;
}

#modalFluxoCompra * {
  touch-action: manipulation;
}

/* Previne zoom em botões específicos */
#modalFluxoCompra .ings-plus-bt,
#modalFluxoCompra .ings-minus-bt,
#modalFluxoCompra button,
#modalFluxoCompra .btn {
  touch-action: manipulation;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* Melhora a área de toque dos botões + e - - REMOVIDO - conflitava com novos estilos */
/* #modalFluxoCompra .ings-plus-bt,
#modalFluxoCompra .ings-minus-bt {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
} */

/* Estilo para o label de quantidade máxima - movido para seção principal */

/* Container da imagem do evento */
.ings-event-poster-container {
  width: 60px;
  height: 60px;
  max-width: 60px;
  max-height: 60px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Imagem do evento responsiva */
.ings-event-poster {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Container do título do evento */
.ings-event-title-container {
  min-width: 0; /* Permite que o texto seja truncado se necessário */
  max-width: fit-content; /* Não expande mais que o necessário */
}

/* Título do evento */
.ings-event-title-container .modal-title {
  font-size: 1.5rem;
  color: #07567b;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

/* Botões de ação no header */

.ings-help-btn:hover {
  background-color: #0b5ed7 !important;
  border-color: #0a58ca !important;
}

.ings-close-btn:hover {
  background-color: #c82333 !important;
  border-color: #bd2130 !important;
  color: white !important;
}

/* Responsividade para tablets */
@media (max-width: 768px) {
  .ings-event-poster-container {
    width: 50px;
    height: 50px;
    max-width: 50px;
    max-height: 50px;
  }

  .ings-event-title-container .modal-title {
    font-size: 1.2rem;
    text-align: center;
  }

  #modalFluxoCompra .ings-header-content {
    padding: 18px 0px;
  }
}

/* Responsividade para mobile */
@media (max-width: 576px) {
  .ings-event-poster-container {
    width: 40px;
    height: 40px;
    max-width: 40px;
    max-height: 40px;
  }

  .ings-event-title-container .modal-title {
    font-size: 1rem;
    line-height: 1.2;
    text-align: center;
  }

  #modalFluxoCompra .ings-sticky-header {
    min-height: 50px;
  }

  #modalFluxoCompra .ings-header-content {
    padding: 15px 0px;
  }
}

/* ============================================================
 * ESTILOS PARA CONTROLES DE QUANTIDADE DE INGRESSOS
 * ============================================================ */

/* Container principal dos controles de quantidade */
.ings-qtd-flex {
  display: flex;
  gap: 4px;
  width: 100%;
  overflow: hidden;
  align-items: flex-end;
  align-content: flex-start;
  flex-wrap: wrap;
}

/* Área dos ingressos disponíveis - flexível */
.ings-qtd-flex .ingdispo {
  flex: 1 1 auto; /* Cresce e encolhe conforme necessário */
  min-width: 0; /* Permite encolher */
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  padding: 8px 0;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Container dos botões e input - tamanho fixo baseado no conteúdo */
.ings-qtd-controls {
  flex: 0 0 auto; /* Não cresce nem encolhe, tamanho baseado no conteúdo */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Input de quantidade com altura e fonte sincronizadas */
.ings-qtd-input {
  width: 50px !important;
  height: 44px !important;
  text-align: center !important;
  border: 1px solid #ccc !important;
  border-radius: 8px !important;
  padding: 0 4px !important; /* Padding horizontal mínimo para garantir visibilidade */
  font-size: 18px !important;
  font-weight: bold !important;
  background-color: white !important;
  color: black !important;
  line-height: 44px !important; /* Line-height igual à altura para centralizar verticalmente */
  box-sizing: border-box !important; /* Para incluir padding no width */
  -webkit-appearance: none !important; /* Remove estilos do browser */
  -moz-appearance: none !important; /* Remove spinner do Firefox - mudança aqui */
  appearance: none !important; /* Propriedade padrão - mudança aqui */
  display: block !important; /* Garante que seja um bloco */
  position: relative !important; /* Garante posicionamento correto */
  z-index: 1 !important; /* Garante que fique acima de outros elementos */
  outline: none !important; /* Remove outline padrão */
  font-family: inherit !important; /* Usa a fonte padrão */
}

/* Garante que o input esteja visível ao focar */
.ings-qtd-input:focus {
  border-color: #007bff !important;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25) !important;
  z-index: 2 !important;
}

/* Remove spinners do input number */
.ings-qtd-input::-webkit-outer-spin-button,
.ings-qtd-input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
  display: none !important;
}

/* Remove qualquer pseudo-elemento que possa estar interferindo */
.ings-qtd-input::before,
.ings-qtd-input::after {
  display: none !important;
  content: none !important;
}

/* Garante que o input não tenha overlay ou máscaras */
.ings-qtd-input {
  background-image: none !important;
  background-clip: padding-box !important;
  text-shadow: none !important; /* Remove qualquer sombra de texto */
  letter-spacing: normal !important; /* Espaçamento normal entre letras */
}

/* Força a visibilidade do valor no input */
.ings-qtd-input[type="number"] {
  font-variant-numeric: normal !important;
  text-rendering: optimizeLegibility !important;
}

/* Garante que o container pai não interfira */
.ings-qtd-controls {
  position: relative !important;
  z-index: 0 !important;
}

/* Botões + e - limpos com apenas o SVG colorido */
.ings-plus-bt,
.ings-minus-bt {
  border: none !important;
  background: transparent !important;
  cursor: pointer !important;
  transition: transform 0.2s ease !important;
  min-width: 44px !important;
  min-height: 44px !important;
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  outline: none !important; /* Remove outline do foco */
}

/* Hover dos botões - leve escala */
.ings-plus-bt:hover,
.ings-minus-bt:hover {
  transform: scale(1.05) !important;
}

/* Focus dos botões para acessibilidade */
.ings-plus-bt:focus,
.ings-minus-bt:focus {
  outline: 2px solid #007bff !important;
  outline-offset: 2px !important;
}

/* Remove border and outline on click/focus for plus/minus buttons */
.ings-plus-bt:focus,
.ings-minus-bt:focus,
.ings-plus-bt:active,
.ings-minus-bt:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* SVGs dos botões */
.ings-plus-bt svg,
.ings-minus-bt svg {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}

.ings-plus-bt:hover svg,
.ings-minus-bt:hover svg {
  transform: scale(1.1);
}

/* Garante que os spans dentro dos botões sejam limpos */
.ings-plus-bt span,
.ings-minus-bt span {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
}

/* Label "QTD MÁX" - width auto para ajustar ao texto com background apenas no texto */
.ings-qtd-max-label {
  flex: 0 0 auto; /* Não cresce nem encolhe, tamanho baseado no conteúdo */
  width: auto; /* Largura automática */
  text-align: center;
  font-size: 18px; /* Mesmo tamanho do input */
  font-weight: bold; /* Mesmo peso do input */
  display: inline-flex; /* inline-flex para ajustar ao conteúdo */
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  background-color: red;
  color: white;
  text-transform: uppercase;
  padding: 8px 12px; /* Padding interno para espaçamento do texto */
  border-radius: 4px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0; /* Permite que o flex-item encolha se necessário */
  box-sizing: border-box; /* Inclui padding no cálculo do tamanho */
}

.ings-qtd-max-label.show {
  display: inline-flex;
  visibility: visible;
  opacity: 1;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
  .ings-qtd-max-label {
    display: none !important; /* Por padrão invisível no mobile */
  }

  .ings-qtd-max-label.show-mobile {
    display: block !important; /* Apenas quando .show-mobile */
    visibility: visible;
    opacity: 1;
    font-size: 12px !important;
  }

  /* Estilos específicos apenas para p.ingdispo */
  p.ingdispo {
    font-size: 12px !important;
  }

  /* Estilos específicos apenas para .ings-qtd-max-label */
  .ings-qtd-max-label {
    font-size: 12px !important;
  }

  .ings-qtd-input {
    width: 40px !important;
    height: 36px !important;
    font-size: 16px !important;
    line-height: 36px !important; /* Line-height igual à altura para mobile */
    padding: 0 2px !important; /* Padding reduzido para mobile */
  }

  /* Botões menores no mobile */
  .ings-plus-bt,
  .ings-minus-bt {
    min-width: 36px !important;
    min-height: 36px !important;
    width: 36px !important;
    height: 36px !important;
  }

  .ings-plus-bt svg,
  .ings-minus-bt svg {
    width: 28px;
    height: 28px;
  }
}

/* ============================================================
 * ESTILOS PARA FORMULÁRIO INLINE DE CÓDIGO PROMOCIONAL
 * ============================================================ */

/* Container do formulário de passkey - reduzido e puxado para baixo */
.ings-codigo {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #00000060;
}

.ings-passkey-container {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card do formulário inline - sem padding interno para aproveitar 100% da largura */
.ings-passkey-inline-card {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border: none; /* Remove todas as bordas */
  background-color: #ffffff;
  padding: 0; /* Remove padding interno para aproveitar 100% da largura */
}

/* Header do card - com padding próprio */
.ings-passkey-header {
  color: #333;
  text-align: left;
  padding: 16px 16px 12px 16px; /* Padding próprio do header */
  margin: 0; /* Remove margin */
}

/* Body do card - com padding próprio */
.ings-passkey-body {
  padding: 0 16px 16px 16px; /* Padding próprio do body */
  margin: 0; /* Remove margin */
}

.ings-passkey-title {
  margin: 0;
  font-size: 16px; /* Reduzido de 18px */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ings-passkey-label {
  display: block;
  font-weight: 600;
  color: #333;
  font-size: 13px; /* Reduzido de 14px */
  line-height: 1.4;
}

/* Input group - sem padding */
.ings-passkey-input-group {
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margin */
}

/* Container para input + botão unidos (input group style) */
.ings-passkey-input-row {
  display: flex;
  gap: 0; /* Sem gap - unidos */
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); /* Box-shadow mais sutil */
  transition: box-shadow 0.3s ease;
  border: none !important; /* Sem borda - a borda fica no container */
  background-color: #f8f9fa; /* Background do container */
}

.ings-passkey-input-row:focus-within {
  border-color: #f36f00; /* Borda laranja quando focado */
  box-shadow: 0 0 0 2px rgba(243, 111, 0, 0.1); /* Glow laranja sutil */
}

/* Input do código - estilo input group */
.ings-passkey-input {
  flex: 1; /* Ocupa o espaço disponível */
  border: 1px solid #e0e0e0 !important; /* Borda sutil */
  border-radius: 8px 0 0 8px !important; /* Arredondamento apenas na esquerda */
  padding: 0px !important; /* Padding reduzido */
  padding-left: 12px !important; /* Padding reduzido */
  background-color: #f8f9fa; /* Background mais claro */
  font-size: 15px; /* Reduzido de 16px */
  color: #333;
  transition: all 0.3s ease;
  font-family: "Courier New", monospace; /* Fonte monospace para códigos */
  letter-spacing: 1px;
  text-transform: uppercase; /* Garante uppercase */
  outline: none; /* Remove outline padrão */
}

.ings-passkey-input:focus {
  background-color: #ffffff;
  box-shadow: none; /* Remove box-shadow do input */
}

.ings-passkey-input::placeholder {
  color: #999;
  font-style: normal; /* Remove itálico */
  font-family: system-ui, -apple-system, sans-serif; /* Fonte normal para placeholder */
  letter-spacing: normal; /* Spacing normal para placeholder */
  text-transform: none; /* Placeholder em lowercase */
}

/* Container das mensagens - sem padding */
.ings-passkey-messages {
  margin: 0;
  padding: 0;
}

/* Mensagens - estilos comuns */
.ings-passkey-error,
.ings-passkey-success {
  display: block;
  margin-top: 6px;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
}

/* Mensagem de erro */
.ings-passkey-error {
  color: #dc3545;
  background-color: rgba(220, 53, 69, 0.1); /* Background vermelho claro */
  border-left: 3px solid #dc3545; /* Borda vermelha */
}

/* Mensagem de sucesso */
.ings-passkey-success {
  color: #28a745;
  background-color: rgba(40, 167, 69, 0.1);
  border-left: 3px solid #28a745;
}

/* Botão aplicar - estilo input group (grudado no input) */
.ings-passkey-apply {
  min-width: 80px; /* Reduzido ainda mais */
  height: 42px; /* Mesma altura do input reduzida */
  background: linear-gradient(120deg, #018ebd, #057ea7, #05abdc);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  border: none; /* Remove todas as bordas */
  border-radius: 0 8px 8px 0; /* Arredondamento apenas na direita */
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px; /* Reduzido ainda mais */
  letter-spacing: 0.5px;
  flex-shrink: 0; /* Não encolhe no layout flex */
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.2); /* Divisor sutil com box-shadow */
  padding: 0 12px; /* Padding horizontal reduzido */
}

.ings-passkey-apply:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(1, 142, 189, 0.4);
  background: linear-gradient(240deg, #018ebd, #057ea7, #05abdc);
}

.ings-passkey-apply:disabled {
  opacity: 0.7;
  transform: none;
  cursor: not-allowed;
  background: #888888;
}

/* Estados de loading para o input group */
.ings-passkey-loading .ings-passkey-input {
  opacity: 0.7;
  pointer-events: none;
}

.ings-passkey-loading .ings-passkey-apply {
  background: #888888;
  cursor: not-allowed;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Spinner para o botão do passkey */
.ings-passkey-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: passkey-spin 1s ease-in-out infinite;
}

@keyframes passkey-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Efeito de fade para o accordion durante reload */
#accordionListSessions {
  position: relative;
}

.accordion-loading {
  opacity: 0.5;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.accordion-loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 10;
}

/* Responsividade para tablets e mobile */
@media (max-width: 768px) {
  .ings-passkey-header {
    padding: 12px 12px 8px 12px; /* Reduz padding no mobile */
  }

  .ings-passkey-body {
    padding: 0 12px 12px 12px; /* Reduz padding no mobile */
  }

  .ings-passkey-input-row {
    /* Mantém flex horizontal - botão ao lado */
    flex-direction: row;
    border-radius: 8px;
  }

  .ings-passkey-input {
    font-size: 16px; /* Mantém 16px no mobile para evitar zoom */
    padding: 10px 12px; /* Reduz padding */
  }

  .ings-passkey-apply {
    min-width: 60px; /* Ainda menor no mobile */
    font-size: 11px; /* Menor fonte */
    padding: 0 8px; /* Menos padding horizontal */
  }
} /* Responsividade para mobile muito pequeno */
@media (max-width: 576px) {
  .ings-passkey-title {
    font-size: 14px; /* Reduzido */
  }

  .ings-passkey-input {
    font-size: 16px; /* Importante manter 16px para evitar zoom automático no iOS */
  }

  .ings-passkey-apply {
    min-width: 50px; /* Ainda menor em telas muito pequenas */
    font-size: 10px; /* Menor fonte */
  }
} /* Estados especiais */
.ings-passkey-input:invalid {
  border-color: #dc3545;
}

.ings-passkey-input:valid {
  border-color: #28a745;
}

/* Animação de shake para erro */
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

.ings-passkey-error-shake {
  animation: shake 0.5s ease-in-out;
}

/* CLASSES QUE ERAM DO custom.css */

.ings-modal-height-100 {
  overflow-y: auto;
}
.ings-modal-full-height {
  height: 100%;
}

.ings-payment-card-user {
  width: 100%;
  display: grid;
  grid-template-columns: 100px 1fr;
  column-gap: 15px;
  margin-bottom: 3em;
}
.ings-payment-card-user .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  grid-row: span 2;
  margin-right: 30px;
}
.ings-payment-card-user .avatar img {
  display: block;
  width: 100%;
  height: auto;
}
.ings-payment-card-user .name {
  font-weight: 300;
  font-size: 1.1em;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.ings-payment-card-user .mail {
  font-weight: 300;
  font-size: 0.9em;
}
.ings-payment-card-user .link {
  font-size: 0.9em;
  grid-column: span 2;
  text-transform: uppercase;
  margin-top: 10px;
  text-decoration: none;
  color: #651fff;
}

.step-style {
  margin: 0.9em 0 2em 0;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  font-family: "Encode Sans";
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.bradcrumb-space {
  margin-left: 20px;
  margin-right: 20px;
}

@media (min-width: 320px) and (max-width: 768px) {
  .step-style {
    font-size: 10px;
    gap: 3px;
  }
  .bradcrumb-space {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
}

.step-style .arrows {
  width: 10px;
}

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

input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.ings-card-event-data {
  color: black !important;
  font-weight: 500;
  font-size: 12px;
}

button.colorAccordion.accordion-button {
  background-color: #ffffff !important;
}

.accordion-header button {
  color: #000 !important;
  background-color: #ffffff !important;
}
.accordion-button::after {
  fill: red !important;
  color: red;
}
.ings-modal-compras .accordion-body {
  border-radius: 0 0 12px 12px; /* Apenas cantos inferiores arredondados */
  box-shadow: none; /* Remove sombra individual */
  border: none; /* Remove todas as bordas */
  background-color: #ffffff;
}

/* Accordion item como card unificado */
.ings-modal-compras .accordion-item {
  border: none !important;
  border-radius: 12px !important; /* Card arredondado */
  margin-bottom: 16px; /* Espaçamento entre itens */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important; /* Sombra no card inteiro */
  overflow: hidden !important; /* Garante que o conteúdo respeite o border-radius */
  background-color: #ffffff !important;
}

/* Remove bordas do accordion-header */
.ings-modal-compras .accordion-header {
  border: none;
  margin-bottom: 0;
}

/* Header do accordion como topo do card unificado */
.ings-modal-compras .accordion-button {
  border: none !important;
  border-radius: 12px 12px 0 0 !important; /* Apenas cantos superiores arredondados */
  margin-bottom: 0 !important; /* Remove margin para grudar no body */
  box-shadow: none !important; /* Remove sombra individual */
  background-color: #ffffff !important;
  border-bottom: 1px solid #e9ecef !important; /* Linha sutil separando header do body */
}

/* Fix para ícone do accordion - cor preta para contraste com fundo branco */
#accordionListSessions .accordion-button::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}

/* Fix para --bs-accordion-bg específico deste accordion */
#accordionListSessions {
  --bs-accordion-bg: #ffffff !important;
  --bs-accordion-border-color: transparent !important;
  --bs-accordion-border-width: 0 !important;
}

#accordionListSessions .accordion {
  background-color: #ffffff !important;
}

#accordionListSessions .accordion-item {
  background-color: #ffffff !important;
  --bs-accordion-bg: #ffffff !important;
}

.ings-modal-compras .accordion-body .row {
  padding: 1rem 0.5rem;
  border-bottom: none; /* Remove borda preta */
  margin: 0;
  display: flex;
  align-items: center;
}

.ings-modal-compras .accordion-body .row:last-child {
  border-bottom: 0;
}
.ings-modal-compras .accordion-body .row p {
  margin: 0;
}

.ings-avancar {
  width: 240px;
  height: 48px;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(180deg, #f36f00, #f2295b);
  color: #fff;
  border-radius: 36px;
  border: 0;
  text-transform: uppercase;
}
@media (min-width: 320px) and (max-width: 768px) {
  .ings-avancar {
    width: 160px;
  }
}

.bg-success {
  color: white;
}

.ings-modal-transfer-title {
  font-weight: 700;
  font-size: 1.625em;
}

.ings-modal-transfer-subtitle {
  font-weight: 600;
  font-size: 1.25em;
}

.ings-modal-transfer-group-name {
  font-weight: 600;
  font-size: 1.625em;
}

.ings-modal-transfer-ticket-name {
  font-weight: 500;
  font-size: 1.125em;
}

.ings-modal-transfer-ticket-date {
  padding: 0.25em;
  font-size: 1.125em;
  background-color: #163592;
}

.ings-modal-transfer-my-button {
  color: #163592 !important;
  font-size: 1em !important;
  font-weight: 700 !important;
  width: auto;
  height: 3.125em;
}

.ings-modal-transfer-other-button {
  background-color: #163592 !important;
  font-size: 1em !important;
  font-weight: 700 !important;
  color: white !important;
  width: auto;
  height: 3.125em;
}

.ings-modal-transfer-remove-button {
  width: 12.5rem;
  height: auto;
}

.ings-modal-transfer-continue-button {
  margin-top: 3rem;
  width: 300px;
  height: 59px;
  background: linear-gradient(180deg, #f36f00, #f2295b) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: white !important;
  text-decoration: none;
}
h3.ticket-group {
  font-size: 24px;
  font-weight: 600;
  color: black !important;
  margin: 0;
  white-space: initial;
}
.ings-ticket-select {
  color: black !important;
}
.ings-ticket-select .ticket-tyme-name {
  font-size: 24px;
  font-weight: 600;
  line-height: 20px;
  display: block;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .ings-ticket-select .ticket-tyme-name {
    font-size: 12px !important;
    font-weight: 600;
    line-height: 20px;
    display: block;
    margin-bottom: 6px !important;
    margin-top: 6px !important;
  }
  h3.ticket-group {
    font-size: 18px !important;
  }
  .ings-ticket-select {
    font-size: 18px !important;
  }
  .ings-qtd-flex {
    justify-content: normal !important;
  }
  h3.ings-transfer {
    font-size: 18px !important;
  }
  h4.ings-transfer {
    font-size: 12px !important;
    margin-bottom: 10px !important;
  }
  .ings-session-name {
    font-size: 15px !important;
  }
  .ings-transfer-type {
    font-size: 12px !important;
  }
  .ings-transfer-date {
    font-size: 15px !important;
  }
  .ings-meu-transfer-buttom {
    height: 45px !important;
  }
  .ings-meu-ingresso-buttom {
    height: 45px !important;
  }
  .ings-modal-transfer-continue-button {
    height: 45px !important;
    margin-top: 10px !important;
  }
}
.ings-ticket-select .ticket-price {
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}
.ings-ticket-select .ticket-price-coupon {
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  color: #50b83c;
}
.ings-ticket-select .ticket-tax {
  font-size: 16px;
  font-weight: 400;
}

.ings-ticket-select .ticket-tax-coupon {
  font-size: 16px;
  font-weight: 400;
  color: #50b83c;
}

.step-style .step-active {
  color: #651fff;
}
.bandeja-left .qtd-ingressos {
  font-size: 16px;
  font-weight: 600;
}
.bandeja-left .total {
  font-size: 24px;
  font-weight: 500;
}
.ings-transfer-text-content {
  text-align: initial;
}
@media (min-width: 320px) and (max-width: 768px) {
  .ings-transfer-text-content {
    text-align: center;
  }
}
h3.ings-transfer {
  font-family: "Encode Sans";
  font-size: 26px;
  font-weight: 700;
}
h4.ings-transfer {
  font-family: "Encode Sans";
  font-size: 20px;
  font-weight: 600;
  color: black;
  margin-bottom: 45px;
}
.ings-session-name {
  font-size: 26px;
  font-weight: 600;
  color: black !important;
}
.ings-transfer-type {
  font-size: 18px;
  font-weight: 500;
  color: black !important;
  margin: 0 0 10px 0;
}
.ings-transfer-date {
  font-size: 18px;
  font-weight: 500;
  color: white !important;
}
@media (min-width: 320px) and (max-width: 768px) {
  .ings-transfer-date {
    margin-bottom: 10px;
  }
}

.tag {
  background-color: #163592;
  padding: 5px 8px;
  margin-right: 5px;
  color: white;
}

.data-hora {
  padding: 5px 8px;
  margin-right: 5px;
  color: black;
}

.ings-transfer-date {
  padding: 5px 8px;
  margin-right: 5px;
  color: black;
}

.ings-transfer-action {
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 320px) and (max-width: 768px) {
  .ings-transfer-action {
    justify-content: center;
  }
}
.ings-meu-ingresso-buttom {
  background-color: #f25127;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  width: 300px;
  height: 59px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 30px;
  transition: all 0.3s;
}
.ings-meu-ingresso-buttom:hover {
  background-color: #000 !important;
  color: white !important;
}
.ings-meu-transfer-buttom {
  background-color: #163592;
  color: white !important;
  font-size: 16px;
  font-weight: 700;
  width: 300px;
  height: 59px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 30px;
  transition: all 0.3s;
}
.ings-meu-transfer-buttom:hover {
  background-color: black !important;
  color: white !important;
}
.ings-transfer-mail {
  font-size: 16px;
  font-weight: 500;
  color: black;
}
.ings-transfer-action-mail {
  display: flex;
  justify-content: flex-end;
}
.ings-meu-transfer-buttom-remove-container {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ings-meu-transfer-buttom-remove {
  background-color: red;
  color: white;
  font-size: 16px;
  font-weight: 700;
  width: 200px;
  height: 49px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 30px;
  transition: all 0.3s;
}
.ings-user-transfer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.ings-search-user-input {
  width: 100%;
  font-size: 16px;
  max-width: 500px;
  height: 48px;
  padding-left: 12px;
  border-radius: 5px;
  border: 1px solid #7a7a7a;
}
.ings-search-user-input::placeholder {
  letter-spacing: 0;
}
.ings-search-user-buttom {
  background: linear-gradient(180deg, #f36f00, #f2295b);
  color: black !important;
  font-size: 16px;
  font-weight: 700;
  width: 200px;
  height: 49px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 0;
  border-radius: 30px;
  transition: all 0.3s;
}

.ings-qtd-section {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.loop-ingress-box .date {
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-size: 16px !important;
  margin-top: 16px !important;
  margin-left: 10px !important;
}

/* Resets */
.modal-content {
  color: #130e00 !important;
  background-color: #ffffff !important;
}

.card-header {
  background-color: #f8f8f8 !important;
}
.card {
  background-color: white !important;
}

.accordion-body {
  background-color: white !important;
  padding: 0 !important; /* Remove default Bootstrap accordion-body padding */
}
.text-primary {
  --bs-text-opacity: 1;
  color: #651fff !important;
}
.border-top-0 {
  border-top: 0;
}
.accordion-button:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
}
.tab-content {
  padding: 0 !important;
  margin-top: 15px !important;
}
.authing-iframe {
  position: relative !important;
}

/* CORE EXTRA */

/* == Lista de eventos ==*/
/* As regras abaixo são únicas ou modificadas em relação à primeira parte do arquivo */

.button-buy {
  background: #f36f00;
  border: none;
  color: #ffffff;
  width: 350px;
  height: 50px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s;
  border: 1px solid #ffffff;
}
.button-buy:hover {
  background: #ffffff;
  color: #f36f00;
  border: 1px solid #f36f00;
}

.list {
  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px;
}

.ingdispo {
  color: black;
}
