:root {
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.custom-div {
  border: 2px solid #add8e6; /* Cor da borda levemente azul */
  border-radius: 3px; /* Bordas arredondadas */
  margin-top: 20px; /* Espaço acima da div */
  align-items: center; /* Alinhamento vertical dos itens */
}

.dc-head {
  display: flex;
  background-color: #add8e6;
  padding: 20px;
  padding-bottom: 10px;
  gap: 10px;
}

.dc-list {
  padding: 20px;
}

.dc-item {
  margin-bottom: 20px;
}

.dc-title-item {
  font-weight: 700;
  font-size: 18px;
  color: #777777;
}

.dc-img {
  width: 60px;
  height: 60px;
}


.custom-button {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.stack {
  display: flex;
  gap: 10px; /* Espaçamento entre os itens */
}

.flex {
  display: flex;
}

.space-between {
  justify-content: space-between;
}

.al-center {
  align-items: center;
}

.price-text {
  font-size: 14px;
  font-weight: 700;
}

.line-clamp {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.backdrop {
  z-index: 999999999 !important;
}









/* =============================================
   SETORES DE INGRESSOS — CSS (MOBILE FIRST)
   ============================================= */

* {
  box-sizing: border-box;
}

.setor-box {
  background: #fff;
  border-radius: 6px;
  margin-bottom: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  width: 100%;
}

/* ---------- CABEÇALHO ---------- */
.setor-header {
  background: #555960 !important;
  padding: 14px 16px !important;
  cursor: pointer;
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 8px;
  transition: background 0.2s;
  user-select: none;
  text-align: left !important;
  width: 100%;
}

.setor-header:hover {
  background: #48494e !important;
}

.setor-titulo {
  display: block !important;
  flex: 1;
  min-width: 0;
  color: #fff;
  text-align: left !important;
}

.badge-setor {
  width: 15px !important;
  height: 15px !important;
  border-radius: 3px;
  display: inline-block !important;
  vertical-align: middle;
  margin-right: 7px;
  flex-shrink: 0;
  position: relative;
  top: -1px;
}

.setor-titulo b {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #fff !important;
  vertical-align: middle;
  line-height: 1.3;
  white-space: normal;
  word-break: break-word;
}

.setor-titulo span {
  display: block !important;
  font-size: 15px !important;
  color: #c5cacc !important;
  font-weight: 400 !important;
  line-height: 1.35;
  margin-top: 3px;
  white-space: normal;
  word-break: break-word;
}

.setor-preco {
  font-size: 14px !important;
  color: #a8adb3 !important;
  display: block !important;
  margin-top: 3px !important;
}

/* Seta */
.setor-seta {
  color: #fff !important;
  font-size: 16px !important;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.25s;
}

.setor-header.aberto .setor-seta {
  transform: rotate(180deg);
}

/* ---------- CORPO ---------- */
.setor-ingressos {
  display: none;
  background: #fff;
  width: 100%;
}

.setor-ingressos.visivel {
  display: block;
}

/* ---------- ITEM DE INGRESSO ---------- */
.ingresso-item {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px;
  padding: 13px 16px !important;
  border-bottom: 1px solid #e8eaec;
  transition: background 0.12s;
  width: 100%;
}

.ingresso-item:last-child {
  border-bottom: none;
}

.ingresso-item:hover {
  background: #f7f8f9;
}

/* ---------- TEXTO DO INGRESSO ---------- */
.ingresso-info {
  font-size: 15px !important;
  color: #444 !important;
  line-height: 1.65 !important;
  flex: 1;
  min-width: 0;
  text-align: left !important;
  word-break: break-word;
}

.ingresso-info b {
  font-size: 15px !important;
  color: #111 !important;
  font-weight: 600 !important;
}

/* ---------- CONTADOR ---------- */
.contador {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px;
  flex-shrink: 0;
}

.contador button {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  border-radius: 50% !important;
  border: none !important;
  background: #555960 !important;
  color: #fff !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  cursor: pointer;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1;
  transition: background 0.2s, transform 0.1s;
  box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
}

.contador button:hover {
  background: #3c3f44 !important;
  transform: scale(1.08);
}

.contador button:active {
  transform: scale(0.94);
}

.contador span {
  min-width: 20px !important;
  text-align: center !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #111 !important;
}






/* Badge de carrinho — pequeno e inline ao lado do título */
.badge-carrinho {
  display: none;
  align-items: center;
  gap: 4px;
  background: #1a73e8;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 2px 7px;
  border-radius: 20px;
  white-space: nowrap;
  margin-left: 6px;
  vertical-align: middle;
  line-height: 1.4;
  position: relative;
  top: -1px;
}
 
.badge-carrinho.visivel {
  display: inline-flex;
}
 
.badge-carrinho i {
  font-size: 11px;
}
 


/* Linha do título: badge colorido + nome + badge carrinho lado a lado */
.setor-titulo-linha {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 6px;
  flex-wrap: nowrap;
  width: 100%;
}

.setor-titulo-linha b {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #fff !important;
  line-height: 1.3;
  flex-shrink: 1;
  min-width: 0;
  word-break: break-word;
}

/* Badge carrinho: oculto por padrão, pequeno quando visível */
.badge-carrinho {
  display: none;
  align-items: center;
  gap: 3px;
  background: #1a73e8;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
  line-height: 1.4;
  flex-shrink: 0;
  width: auto !important;
  max-width: none !important;
}

.badge-carrinho.visivel {
  display: inline-flex !important;
}

.badge-carrinho i {
  font-size: 11px;
}

.badge-carrinho .badge-num {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #fff !important;
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: inline !important;
}




.gw-header{
background:#000;
width:100%;
padding:10px 0;
position:relative;
z-index:10;
}

.gw-header-container{
width:95%;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
}

.gw-logo{
height:28px;
}

.gw-menu{
color:white;
font-size:22px;
cursor:pointer;
}

.gw-dropdown{
position:absolute;
top:55px;
right:20px;
background:#fff;
border-radius:6px;
box-shadow:0 6px 15px rgba(0,0,0,0.2);
display:none;
flex-direction:column;
min-width:150px;
z-index:999;
}

.gw-item{
display:block;
padding:12px 16px;
text-decoration:none;
color:#333;
font-size:14px;
border-bottom:1px solid #eee;
}

.gw-item:hover{
background:#f2f2f2;
}

.gw-item:last-child{
border-bottom:none;
}






.gw-lines{
display:flex;
justify-content:center;
gap:8px;
margin-top:-15px;
position:relative;
z-index:5;
}

.gw-lines span{
width:40px;
height:4px;
background:#fff;
border-radius:3px;
}






.gw-modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
align-items:center;
justify-content:center;
z-index:9999;
}

.gw-modal-box{
background:white;
width:260px;
border-radius:8px;
box-shadow:0 10px 30px rgba(0,0,0,0.3);
overflow:hidden;
}

.gw-modal-header{
display:flex;
justify-content:space-between;
padding:12px 15px;
font-weight:bold;
border-bottom:1px solid #eee;
}

.gw-close{
cursor:pointer;
font-size:16px;
}

.gw-modal-body{
padding:10px;
display:flex;
flex-direction:column;
gap:8px;
}

.gw-btn{
padding:10px;
background:#f3f3f3;
border:none;
border-radius:5px;
text-align:left;
cursor:pointer;
font-size:14px;
}

.gw-btn:hover{
background:#e8e8e8;
}

.gw-login-btn{
background:#1a73e8;
color:white;
border:none;
padding:10px;
border-radius:5px;
cursor:pointer;
font-size:14px;
}


.btn-login{
padding:8px 18px;
border:1px solid #ffffff;
background:transparent;
color:#000000;
font-size:13px;
border-radius:4px;
cursor:pointer;
font-weight:500;
letter-spacing:0.5px;
transition:0.2s;
}

.btn-login:hover{
background:#ffffff;
color:#000000;
}





.btn-login-box{

display:inline-flex;
align-items:center;
justify-content:center;

padding:14px 60px;

background:#e6e6e6;

border:2px solid #000;

border-radius:8px;

font-size:15px;
font-weight:600;

cursor:pointer;

box-shadow:0 4px 10px rgba(0,0,0,0.35);

transition:all .2s ease;

}

.btn-login-box:hover{

background:#ffffff;

transform:scale(1.04);

box-shadow:0 6px 18px rgba(0,0,0,0.45);

}








.footer-gw{
background:#0b6e17;
color:white;
display:none;
padding:10px 15px;
z-index:9999;
width:100%;
max-width:430px;
margin:auto;
left:0;
right:0;
}

.footer-gw .btn{
background:rgb(0, 0, 0);
color:black;
font-weight:bold;
border-radius:6px;
}






.video-container{
  position: relative;
  width: 100%;
}

.video-thumb{
  position: relative;
  cursor: pointer;
}

.video-thumb img{
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
}

.play-btn{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ff0000;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
  transition: 0.3s;
}

.play-btn:hover{
  transform: translate(-50%, -50%) scale(1.1);
}

