/* ============================================
   style-cliente.css
   Dark Luxury Nightlife — Consumer Site
   Bebas Neue + Barlow | Amber × Crimson
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #060606;
  --bg2:         #0e0e0e;
  --bg3:         #161616;
  --card:        #111111;
  --glass:       rgba(255,255,255,0.04);
  --border:      rgba(255,255,255,0.07);
  --border2:     rgba(255,255,255,0.12);
  --primary:     #f0a500;
  --primary-glow:rgba(240,165,0,0.25);
  --primary-dk:  #c88800;
  --danger:      #e63946;
  --danger-lt:   rgba(230,57,70,0.15);
  --success:     #2ecc71;
  --success-lt:  rgba(46,204,113,0.12);
  --text:        #f2f2f2;
  --text-dim:    #aaaaaa;
  --text-muted:  #555555;
  --nav-h:       68px;
  --top-h:       54px;
  --r:           16px;
  --r-sm:        10px;
  --font-h:      'Bebas Neue', sans-serif;
  --font-b:      'Barlow', sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

/* ── GRAIN OVERLAY ── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }

/* ─────────────────────────────────────────────
   TOP BAR
───────────────────────────────────────────── */
#top-bar {
    transition: opacity 0.3s ease-in-out; /* Efeito de fade suave */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    /* ... resto do seu estilo ... */
}

.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--top-h);
  background: rgba(6,6,6,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 300;
  gap: 0.75rem;
}

.top-logo-wrap {
  width: 32px; height: 32px;
  background: var(--primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #000;
  font-size: 0.95rem;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.top-logo-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.top-pub-name {
  font-family: var(--font-h);
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: var(--primary);
  text-shadow: 0 0 20px var(--primary-glow);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  white-space: nowrap;
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}
.status-badge.aberto { border-color: rgba(46,204,113,0.3); color: var(--success); }
.status-badge.aberto .status-dot { background: var(--success); box-shadow: 0 0 6px var(--success); animation: pulse-dot 2s infinite; }
.status-badge.fechado { border-color: rgba(230,57,70,0.3); color: var(--danger); }
.status-badge.fechado .status-dot { background: var(--danger); }

@keyframes pulse-dot {
  0%,100% { opacity: 1; } 50% { opacity: 0.4; }
}

/* ─────────────────────────────────────────────
   MAIN
───────────────────────────────────────────── */
#main {
  margin-top: var(--top-h);
  margin-bottom: var(--nav-h);
}

.section { display: none; }
.section.active { display: block; animation: fadeUp 0.3s ease; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.section-inner { padding: 1.25rem 1rem; }

.page-header { margin-bottom: 1.25rem; }
.page-title {
  font-family: var(--font-h);
  font-size: 1.8rem;
  letter-spacing: 3px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.page-title i { font-size: 1.4rem; }

/* ─────────────────────────────────────────────
   BOTTOM NAV
───────────────────────────────────────────── */
.bottom-nav-cl {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  display: flex;
  z-index: 300;
}

.nav-btn-cl {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font-b);
  position: relative;
  transition: color 0.2s;
}
.nav-btn-cl::after {
  content: '';
  position: absolute;
  top: 0; left: 25%; right: 25%;
  height: 2px;
  background: var(--primary);
  border-radius: 0 0 3px 3px;
  opacity: 0;
  transition: opacity 0.2s;
}
.nav-btn-cl i { font-size: 1.1rem; transition: transform 0.2s; }
.nav-btn-cl span { font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; }
.nav-btn-cl.active { color: var(--primary); }
.nav-btn-cl.active::after { opacity: 1; }
.nav-btn-cl.active i { transform: translateY(-2px); filter: drop-shadow(0 0 8px var(--primary)); }

/*SliderGaleria
/* Container do Slider na aba Fotos */
.galeria-showcase {
  position: relative;
  width: 100%;
  height: 250px; /* Garante a altura do bloco na tela */
  background-color: #0b0b0b;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 25px;
}

/* Container interno das fotos */
.galeria-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Cada slide individual injetado pelo JavaScript */
.galeria-slide-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

/* Estado ativo que faz a foto aparecer suavemente */
.galeria-slide-item.active {
  opacity: 1;
  z-index: 2;
}

/* Configuração da imagem vinda do Firebase */
.galeria-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Container dos pontinhos/indicadores */
.galeria-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

/* Estilo de cada bolinha */
.galeria-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Bolinha da foto que está aparecendo no momento */
.galeria-dot.active {
  background: #ff0055; /* Cor de destaque underground do Pub */
  transform: scale(1.1);
}

  /* HERO
───────────────────────────────────────────── */
.hero-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}

.hero-slide.active{
  opacity: 1;
  z-index: 1;
}

.hero-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero {
  position: relative;
  height: calc(100svh - var(--top-h) - var(--nav-h));
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
  filter: saturate(0.6);
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,6,6,0.4) 0%,
    rgba(6,6,6,0.2) 30%,
    rgba(6,6,6,0.6) 70%,
    rgba(6,6,6,0.98) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: heroReveal 1s ease forwards;
  opacity: 0;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo {
  width: 90px; height: 90px;
  border-radius: 20px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: #000;
  overflow: hidden;
  box-shadow: 0 0 50px var(--primary-glow), 0 20px 60px rgba(0,0,0,0.5);
  margin-bottom: 0.5rem;
}
.hero-logo img { width: 100%; height: 100%; object-fit: cover; }

.hero-name {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 12vw, 4.5rem);
  letter-spacing: 6px;
  color: var(--text);
  line-height: 1;
  text-shadow: 0 0 40px rgba(240,165,0,0.2);
}

.hero-sub {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 300;
  letter-spacing: 0.5px;
  max-width: 260px;
}

.hero-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }

.hero-ctas {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-hero-primary {
  background: var(--primary);
  color: #000;
  border: none;
  border-radius: var(--r-sm);
  padding: 0.7rem 1.4rem;
  font-family: var(--font-b);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.btn-hero-primary:hover { background: var(--primary-dk); transform: translateY(-1px); }

.btn-hero-outline {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border: 1px solid var(--border2);
  border-radius: var(--r-sm);
  padding: 0.7rem 1.4rem;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  backdrop-filter: blur(8px);
  transition: all 0.2s;
}
.btn-hero-outline:hover { border-color: var(--primary); color: var(--primary); }

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }


/* ─────────────────────────────────────────────
   HOME SECTIONS
───────────────────────────────────────────── */
.home-section {
  padding: 1.5rem 1rem;
  border-top: 1px solid var(--border);
}

.home-section-header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.home-section-header h2 {
  font-family: var(--font-h);
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--text);
  flex: 1;
}
.see-all {
  background: none; border: none;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; gap: 0.3rem;
  font-family: var(--font-b);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.label-tag {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background: var(--primary-glow);
  padding: 2px 8px;
  border-radius: 12px;
  border: 1px solid rgba(240,165,0,0.3);
}

/* ─────────────────────────────────────────────
   EVENTOS
───────────────────────────────────────────── */
.eventos-list { display: flex; flex-direction: column; gap: 1rem; }

.evento-cl {
  border-radius: var(--r);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  position: relative;
}

.evento-cl-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  position: relative;
}
.evento-cl-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.evento-cl-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1a1a, #111);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--text-muted);
}
.evento-cl-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(6,6,6,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
}

.evento-cl-body { padding: 1rem; }
.evento-cl-name {
  font-family: var(--font-h);
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
  line-height: 1.1;
}
.evento-cl-desc {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 0.9rem;
  line-height: 1.5;
  font-weight: 300;
}
.evento-cl-prices {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
  flex-wrap: wrap;
}
.evt-price-item {
  flex: 1;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.6rem 0.75rem;
  min-width: 120px;
}
.evt-price-item .label { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); display: block; margin-bottom: 0.2rem; }
.evt-price-item .val { font-family: var(--font-h); font-size: 1.3rem; letter-spacing: 1px; }
.evt-price-item.pix .val { color: var(--success); }
.evt-price-item.porta .val { color: var(--danger); }
.evt-price-item .sub { font-size: 0.6rem; color: var(--text-muted); }

.btn-comprar {
  width: 100%;
  background: var(--primary);
  color: #000;
  border: none;
  border-radius: var(--r-sm);
  padding: 0.85rem;
  font-family: var(--font-b);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.btn-comprar:hover { background: var(--primary-dk); transform: translateY(-1px); }
.btn-comprar:active { transform: translateY(0); }

/* Home next event (mini card) */
.next-event-mini {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}
.next-event-mini:hover { border-color: var(--primary); }
.next-event-mini-img {
  width: 100px;
  flex-shrink: 0;
  height: 90px;
  background: var(--bg3);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--text-muted);
  overflow: hidden;
}
.next-event-mini-img img { width: 100%; height: 100%; object-fit: cover; }
.next-event-mini-body { flex: 1; padding: 0.75rem 0.75rem 0.75rem 0; }
.next-event-mini-name { font-weight: 800; font-size: 0.9rem; margin-bottom: 0.2rem; }
.next-event-mini-date { font-size: 0.72rem; color: var(--primary); font-weight: 600; margin-bottom: 0.3rem; }
.next-event-mini-price { font-size: 0.7rem; color: var(--text-muted); }
.next-event-mini .arrow { padding: 0 0.75rem; color: var(--text-muted); font-size: 0.85rem; }

/* ─────────────────────────────────────────────
   CARDÁPIO
───────────────────────────────────────────── */
.cat-filter-wrap {
  margin-bottom: 1rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0.2rem;
}
.cat-filter-wrap::-webkit-scrollbar { display: none; }
.cat-filters { display: flex; gap: 0.4rem; }

.cat-pill {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.35rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-b);
  transition: all 0.18s;
  flex-shrink: 0;
}
.cat-pill.active { background: var(--primary); color: #000; border-color: var(--primary); }

.cardapio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.card-item-cl {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.card-item-cl:hover { border-color: var(--border2); transform: translateY(-1px); }

.card-item-cl.sem-estoque { opacity: 0.45; }

.card-item-img {
  height: 110px;
  background: var(--bg3);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--text-muted);
  position: relative;
}
.card-item-img img { width: 100%; height: 100%; object-fit: cover; }

.card-item-promo {
  position: absolute;
  top: 6px; left: 6px;
  background: var(--danger);
  color: #fff;
  font-size: 0.6rem; font-weight: 800;
  padding: 2px 6px; border-radius: 10px;
}
.card-item-body { padding: 0.65rem; }
.card-item-name { font-weight: 700; font-size: 0.82rem; margin-bottom: 0.3rem; line-height: 1.2; }
.card-item-price { font-family: var(--font-h); font-size: 1rem; color: var(--primary); letter-spacing: 1px; }
.card-item-original { font-size: 0.7rem; color: var(--text-muted); text-decoration: line-through; margin-right: 0.25rem; }
.card-item-cat { font-size: 0.62rem; color: var(--text-muted); margin-top: 0.2rem; text-transform: uppercase; letter-spacing: 0.5px; }
.sem-estoque-badge {
  position: absolute; top: 6px; right: 6px;
  background: rgba(0,0,0,0.75);
  color: var(--danger);
  font-size: 0.58rem; font-weight: 800;
  padding: 2px 6px; border-radius: 10px;
}

/* Destaques (home) */
.destaques-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

/* ─────────────────────────────────────────────
   GALERIA
───────────────────────────────────────────── */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}

.galeria-item {
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--bg3);
  cursor: pointer;
  position: relative;
}
.galeria-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.galeria-item:hover img { transform: scale(1.05); }
.galeria-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(240,165,0,0);
  transition: background 0.2s;
}
.galeria-item:hover::after { background: rgba(240,165,0,0.1); }

/* ─────────────────────────────────────────────
   INFO
───────────────────────────────────────────── */
.info-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 0 1rem;
  text-align: center;
}

.info-logo {
  width: 80px; height: 80px;
  border-radius: 18px;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #000;
  box-shadow: 0 0 30px var(--primary-glow);
  overflow: hidden;
  position: relative;
}
.info-logo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.info-name {
  font-family: var(--font-h);
  font-size: 2rem;
  letter-spacing: 3px;
  color: var(--text);
}

.info-cards { display: flex; flex-direction: column; gap: 0.75rem; padding-bottom: 1rem; padding: 10px; }

.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.info-card-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  background: var(--primary-glow);
  border: 1px solid rgba(240,165,0,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.info-card-content { display: flex; flex-direction: column; gap: 0.2rem; flex: 1; }
.info-card-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-muted); }
.info-card-value { font-size: 0.88rem; font-weight: 500; color: var(--text); }

.info-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 0.2rem;
}
.info-link:hover { text-decoration: underline; }

.horarios-cl { display: flex; flex-direction: column; gap: 0.35rem; margin-top: 0.3rem; }
.horario-cl-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
}
.horario-cl-row:last-child { border-bottom: none; }
.horario-cl-row .dia { font-weight: 700; color: var(--text-dim); width: 36px; }
.horario-cl-row .horas { color: var(--text); }
.horario-cl-row .fechado-tag { color: var(--text-muted); font-size: 0.72rem; }
.horario-cl-row.hoje .dia { color: var(--primary); }
.horario-cl-row.hoje .horas { color: var(--primary); font-weight: 600; }

/* ─────────────────────────────────────────────
   MODAL INGRESSO
───────────────────────────────────────────── */
.modal-overlay-cl {
    display: none; /* Controlado pelo JS */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;     /* Centraliza vertical */
    justify-content: center;    /* Centraliza horizontal */
}
.modal-overlay-cl.open { display: flex;}

.modal-cl {
  width: 95%; /* Margemzinha nas laterais no mobile */
  max-width: 500px;
  max-height: 85vh; /* 🔥 CRÍTICO: Limita a altura do modal a 85% da tela do celular */
  margin: 0 auto;
  box-sizing: border-box; /* Garante que padding não aumente a largura */
  border-radius: 15px; /* Fechei o arredondamento embaixo também já que ele flutua na tela */
  overflow: hidden; /* Corta qualquer coisa que tente vazar */
  
  /* 🔥 NOVO: Força o modal a se organizar em coluna para que o topo fique fixo e o corpo role */
  display: flex;
  flex-direction: column; 
  background: #141414; /* Garante o fundo escuro de base atrás de tudo */
}

/* Ajuste no Footer para ele não ser maior que o modal */
.modal-cl-footer {
  width: 100%;
  padding: 15px;
  box-sizing: border-box; /* Fundamental para o padding não "empurrar" a borda */
  background: #1a1a1a;
  border-top: 1px solid #333;
}
@keyframes sheetUp { from { transform: translateY(100px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal-cl-img {
  position: relative;
  height: 180px;
  background: var(--bg3);
  flex-shrink: 0;
  overflow: hidden;
}
.modal-cl-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-cl-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(14,14,14,0.95) 100%);
}
.modal-cl-img-info {
  position: absolute;
  bottom: 0.75rem; left: 1rem; right: 3rem;
  z-index: 2;
}
.modal-cl-img-info h3 {
  font-family: var(--font-h);
  font-size: 1.3rem;
  letter-spacing: 1.5px;
  line-height: 1.1;
}
.modal-cl-img-info p { font-size: 0.72rem; color: var(--text-dim); margin-top: 0.2rem; }

.modal-cl-close {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  z-index: 3;
  background: rgba(0,0,0,0.6);
  border: none;
  color: var(--text);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
}

.modal-cl-body {
  padding: 1rem;
  overflow-y: auto;
  flex: 1;
}

/* Preços no modal */
.ing-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.ing-price-opt {
  background: var(--bg3);
  border: 2px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.ing-price-opt.pix-opt.active { border-color: var(--success); background: var(--success-lt); }
.ing-price-opt.porta-opt.active { border-color: var(--danger); background: var(--danger-lt); }
.ing-price-label { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 0.25rem; }
.ing-price-val { font-family: var(--font-h); font-size: 1.3rem; letter-spacing: 1px; }
.pix-opt.active .ing-price-val { color: var(--success); }
.porta-opt.active .ing-price-val { color: var(--danger); }
.ing-price-desc { font-size: 0.6rem; color: var(--text-muted); margin-top: 0.15rem; }

/* Form */
.form-group-cl { margin-bottom: 0.75rem; }
.form-group-cl label { display: block; font-size: 0.68rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.3rem; }
.form-row-cl { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }

.input-cl {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  padding: 0.6rem 0.8rem;
  font-family: var(--font-b);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.input-cl:focus { border-color: var(--primary); }
.input-cl::placeholder { color: var(--text-muted); }

/* Qty */
.qty-cl {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.2rem 0.5rem;
}
.qty-cl button {
  background: none; border: none;
  color: var(--primary); font-size: 1.3rem;
  cursor: pointer; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px; transition: background 0.15s;
}
.qty-cl button:hover { background: var(--border); }
.qty-cl span { font-family: var(--font-h); font-size: 1.2rem; min-width: 28px; text-align: center; }

/* Total */
.ing-total {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
  margin-bottom: 0.9rem;
}
.ing-total span { color: var(--text-muted); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; }
.ing-total strong { font-family: var(--font-h); font-size: 1.7rem; color: var(--primary); letter-spacing: 2px; }

/* Porta info */
.porta-info {
  background: var(--danger-lt);
  border: 1px solid rgba(230,57,70,0.25);
  border-radius: var(--r-sm);
  padding: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 0.9rem;
  line-height: 1.5;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.porta-info i { color: var(--danger); flex-shrink: 0; margin-top: 0.1rem; }
.porta-info strong { color: var(--danger); }

/* Buttons */
.btn-cl-primary {
  background: var(--primary);
  color: #000;
  border: none;
  border-radius: var(--r-sm);
  padding: 0.85rem;
  font-family: var(--font-b);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: all 0.2s;
  box-shadow: 0 4px 20px var(--primary-glow);
}
.btn-cl-primary:hover { background: var(--primary-dk); }
.btn-cl-outline {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border2);
  border-radius: var(--r-sm);
  padding: 0.75rem;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  transition: border-color 0.2s;
}
.btn-cl-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-cl-full { width: 100%; }

/* PIX Success */
.pix-success { text-align: center; padding: 0.5rem 0; }
.pix-icon { font-size: 3rem; color: var(--success); margin-bottom: 0.75rem; }
.pix-success h3 { font-family: var(--font-h); font-size: 1.5rem; letter-spacing: 2px; margin-bottom: 0.5rem; }
.pix-success p { font-size: 0.82rem; color: var(--text-dim); margin-bottom: 1rem; }
.pix-key-box {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--r-sm);
  padding: 1rem;
  margin-bottom: 0.75rem;
}
.pix-key-label { display: block; font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-muted); margin-bottom: 0.4rem; }
.pix-key-val { display: block; font-size: 0.95rem; font-weight: 700; color: var(--success); margin-bottom: 0.75rem; word-break: break-all; }
.btn-copy-pix {
  background: var(--success-lt);
  border: 1px solid rgba(46,204,113,0.3);
  color: var(--success);
  border-radius: 6px;
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-family: var(--font-b);
}
.pix-obs {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 0.6rem 0.75rem;
  margin-bottom: 0.75rem;
  text-align: left;
  display: flex; gap: 0.4rem;
  line-height: 1.4;
}
.pix-obs i { color: var(--primary); flex-shrink: 0; margin-top: 0.1rem; }
.pix-resumo { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.5rem; }

/* ─────────────────────────────────────────────
   LIGHTBOX
───────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 800;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: var(--r-sm); }
.lightbox-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.1);
  border: none; color: var(--text);
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}

/* ─────────────────────────────────────────────
   WHATSAPP FLOAT
───────────────────────────────────────────── */
.wpp-float {
  position: fixed;
  bottom: calc(var(--nav-h) + 1rem);
  right: 1rem;
  width: 50px; height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 250;
  transition: transform 0.2s;
}
.wpp-float:hover { transform: scale(1.08); }

/* ─────────────────────────────────────────────
   TOAST
───────────────────────────────────────────── */
.toast-cl {
  position: fixed;
  bottom: calc(var(--nav-h) + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--r-sm);
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34,1.4,0.64,1);
  z-index: 9999;
  white-space: nowrap;
  max-width: 88vw;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
}
.toast-cl.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast-cl.success { border-color: var(--success); color: var(--success); }
.toast-cl.error   { border-color: var(--danger);  color: var(--danger); }
.toast-cl.info    { border-color: var(--primary);  color: var(--primary); }

/* ─────────────────────────────────────────────
   EMPTY STATE
───────────────────────────────────────────── */
.empty-cl {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}
.empty-cl i { font-size: 2.5rem; display: block; margin-bottom: 0.75rem; opacity: 0.2; }
.empty-cl p { font-size: 0.82rem; line-height: 1.6; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (min-width: 480px) {
  .cardapio-grid { grid-template-columns: repeat(3, 1fr); }
  .galeria-grid  { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 720px) {
  #main, .bottom-nav-cl, .top-bar {
    max-width: 720px;
    left: 50%; right: auto;
    transform: translateX(-50%);
  }
  .wpp-float { right: calc(50% - 720px/2 + 1rem); }
  .top-bar { width: 720px; }
}

/*BtnCarrinho*/
.btn-add-cart {
    width: 100%;
    background: #fbbf24; /* Amarelo principal */
    color: #1f2937;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-cart:hover {
    background: #f59e0b;
}

.btn-add-cart:disabled {
    background: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
}

/* Estilo do preço original riscado */
.card-item-original {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 0.85em;
    margin-right: 5px;
}

.card-item-price {
    color: #10b981; /* Verde para o preço atual */
    font-weight: bold;
}

/* Botão Flutuante */
.cart-float-btn {
    position: fixed;
    bottom: 85px; 
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffc107; /* Amarelo destaque para visibilidade */
    color: #000;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    /* Aumentamos para 10000 para ficar acima dos overlays normais */
    z-index: 10000 !important; 
    display: none; 
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Quando o botão estiver ativo */
.cart-float-btn.active {
    display: flex !important;
}

#cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff3b30;
    color: white;
    font-size: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid #000;
}


/* Melhorias no Modal */
.modal-cl {
    background: #121212; /* Fundo escuro mais elegante */
    color: #fff;
    border-top: 3px solid #fbbf24;
}

.modal-cl-header h3 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
    font-size: 1.5rem;
}

/* Lista de Itens Estilizada */
.cart-item-row {
    background: #1e1e1e;
    margin-bottom: 10px;
    padding: 12px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #333;
}

.cart-item-info b { color: #fbbf24; margin-right: 5px; }

.btn-remove-item {
    background: rgba(255, 59, 48, 0.1);
    color: #ff3b30;
    border: none;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
}

/* Footer e Botões */
.cart-total-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    font-size: 1.2rem;
    border-top: 1px solid #333;
}

.cart-total-section strong { color: #10b981; font-size: 1.6rem; }

.cart-actions-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
/* Botão Principal: PIX */
.btn-pix {
    background: #10b981; /* Verde Sucesso */
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 18px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

/* Botões Secundários */
.secondary-actions {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Divide em duas colunas iguais */
  gap: 10px;
  width: 100%;
}

.btn-cart-secondary {
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.btn-wpp { background: #25d366; color: white; display:none;
  
}
.btn-cancel { 
  background: #333; 
  color: #ff3b30; 
  max-width:100%;
  
}
.header-title-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
    
}

.btn-back-menu {
    background: none;
    border: none;
    color: #fbbf24; /* Amarelo destaque */
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    cursor: pointer;
    text-align: left;
}

.btn-back-menu:active {
    transform: translateX(-3px);
    transition: 0.2s;
}

.modal-cl-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Alinha o X no topo enquanto o texto cresce para baixo */
    padding: 15px 20px;
}
.close-modal-btn {
    background: #333; /* Um fundinho ajuda a destacar */
    border: none;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.retirada-box {
    background: #222;
    border: 2px dashed #fbbf24;
    padding: 20px;
    margin: 15px 0;
    border-radius: 15px;
}

#display-cod-retirada {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: #fbbf24;
    letter-spacing: 5px;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
}

.pix-payment-box {
    background: #1a1a1a;
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
}

.btn-copy-pix {
    background: #fbbf24;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    margin-top: 10px;
    width: 100%;
}

/*bannerMeusIngressos*/
.meus-ingressos-banner {
    background: #111;
    border: 1px solid #27ae60;
    color: #27ae60;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    z-index:9999 !important;
}
.meus-ingressos-banner:active {
    transform: scale(0.98);
    background: #1a1a1a;
}

.meus-ingressos-banner:hover {
    background: #27ae60;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.meus-ingressos-banner i {
    font-size: 1.2rem;
}
.btn-cancelar-pix{

  width:100%;
  margin-top:10px;
  border:none;
  padding:14px;
  border-radius:10px;
  background:#2a2a2a;
  color:#ff4d4d;
  font-weight:700;
  cursor:pointer;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;

}
.confirm-modal{
  margin-bottom:0;
  max-width:350px;
  border-radius:20px;
  overflow:hidden;

}

.confirm-icon{

  width:70px;
  height:70px;
  border-radius:50%;
  background:#1f1f1f;

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

  margin:0 auto 20px;

}

.confirm-icon i{

  font-size:2rem;
  color:#ffc107;

}

.confirm-actions{

  display:flex;
  gap:10px;
  margin-top:25px;

}

.btn-confirm-cancel,
.btn-confirm-ok{

  flex:1;
  border:none;
  padding:14px;
  border-radius:12px;
  font-weight:700;
  cursor:pointer;

}

.btn-confirm-cancel{

  background:#2a2a2a;
  color:#fff;

}

.btn-confirm-ok{

  background:#ff3b30;
  color:#fff;

}

.loja-footer {
    background: #000;
    border-top: 1px solid #1a1a1a;
    padding: 30px 20px 110px 20px; /* Espaço para não cobrir a barra de navegação */
    margin-top: 50px;
    color: #888;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    z-index:2000000;
}

.footer-logo {
    font-weight: bold;
    color: #fff;
    font-size: 1.1rem;
}

.footer-logo .gold {
    color: #FFD700;
}

#footer-nome-loja {
    font-size: 0.8rem;
    color: #555;
    margin-top: 4px;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.pulse-icon {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn-suporte-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #111;
    border: 1px solid #222;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: 0.3s;
}

.btn-suporte-footer:hover {
    background: #1a1a1a;
    border-color: #FFD700;
}

.copyright {
    font-size: 0.65rem;
    color: #333;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

/*logoFooter*/
.footer-logo {
    margin-bottom: 10px;
}

.brand-logo {
    width: 50px; /* Ajuste conforme necessário */
    height: auto;
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    
}

.brand-logo:hover {
    opacity: 1;
}

/* Garante que o conteúdo do footer fique centralizado */
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/*OverlayRetirada*/
.overlay-retirada{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.93);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:999999;
}

.overlay-retirada.active{
    display:flex;
}

.overlay-box{
    text-align:center;
    color:#00ff88;
    padding:30px;
}

.overlay-icon{
    font-size:70px;
    margin-bottom:15px;
}

.overlay-title{
    font-size:28px;
    font-weight:bold;
}

.overlay-codigo{
    font-size:90px;
    font-weight:900;
    margin:20px 0;
}

.overlay-sub{
    font-size:18px;
    opacity:.9;
    margin-bottom:20px;
}

.overlay-btn{
    background:#00ff88;
    color:#000;
    border:none;
    padding:14px 30px;
    border-radius:12px;
    font-weight:bold;
    font-size:18px;
}
/* Garante que o banner se ajuste ao conteúdo sem esticar os botões */
#banner-permissao {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px 40px 15px 15px; /* Espaço extra na direita para o X não trombar no texto */
    display: none !important;
    flex-direction: column;
    gap: 10px;
}

/* Deixa o botão de ativar no tamanho correto dele */
#banner-permissao button.btn-ativar-notif {
    background: #ffb703;
    color: #000;
    font-weight: bold;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    width: auto;
    align-self: flex-start; /* Impede o botão de esticar a tela toda */
}

.aviso-pedido-caixa {
    background: #111;
    border: 1px dashed #ff0055; /* Cor do tema do pub */
    color: #fff;
    padding: 8px;
    border-radius: 5px;
    font-size: 0.85rem;
    text-align: center;
    margin-top: 10px;
}
.aviso-pedido-caixa i {
    color: #ff0055;
    margin-right: 5px;
}

.grid-produtos-loja {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  width: 100%;
}
/* Garante que o grid de produtos fique em uma camada limpa e visível */
.loja-merch-container {
  position: relative;
  z-index: 10; /* Fica acima de fundos, mas abaixo de modais fixos reais */
}

/* Caso o banner de notificação esteja empurrando o topo do site, 
   podemos dar uma margem extra de segurança na seção inteira */
#section-info {
  scroll-margin-top: 100px; /* Ajuda se você usar links de âncora */
  position: relative;
}

/*ConfeteAniversario*/
@keyframes fadeOut {
    0%   { opacity: 1; transform: scale(1); }
    80%  { opacity: 1; transform: scale(1.3); }
    100% { opacity: 0; transform: scale(0.5); }
}
/* Garante que o botão do cartão ganhe a mesma borda/destaque visual quando ativo */
.ing-price-opt.active {
    border: 2px solid #ff0055 !important; /* Coloque aqui a cor padrão das suas bordas ativas (ex: o rosa/vermelho do Kaos Pub) */
    background: rgba(255, 255, 255, 0.05) !important;
}
/* Container para alinhar e dar espaçamento */
.container-tagline {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  margin: 20px 0;
  overflow: hidden;
}

/* O Texto Animado */
.tagline-animada {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  display: inline-block;
  
  /* Sombra de Neon de leve no fundo */
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2), 
               0 0 20px rgba(255, 255, 255, 0.1);
               
  /* Dispara a animação infinita */
  animation: pulsarAtitude 3s infinite ease-in-out;
}

/* Criando o efeito de pulso e brilho */
@keyframes pulsarAtitude {
  0% {
    transform: scale(1);
    opacity: 0.9;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  }
  50% {
    transform: scale(1.05); /* Dá um leve "zoom" heróico no texto */
    opacity: 1;
    color: #ffc107; /* O texto ganha uma cor de destaque (ex: o amarelo do seu sistema) */
    text-shadow: 0 0 15px rgba(255, 193, 7, 0.6), 
                 0 0 30px rgba(255, 193, 7, 0.3);
  }
  100% {
    transform: scale(1);
    opacity: 0.9;
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  }
}

/* Ajuste para telas menores (Celular) */
@media (max-width: 480px) {
  .tagline-animada {
    font-size: 1.3rem; /* Diminui um pouco para não quebrar linha no mobile */
    letter-spacing: 1px;
  }
}
/* Container que cobre a tela toda com fundo escuro semi-transparente */

/* Lista de Vantagens */
.vantagens-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.vantagens-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  background: #1a1a1a;
  padding: 10px 12px;
  border-radius: 6px;
  border-left: 3px solid #ff3333;
}

.vantagens-list .emoji {
  font-size: 1.2rem;
}

.vantagens-list p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Bloco de regras/observações */
.popup-regras {
  background: #0a0a0a;
  padding: 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  color: #bbb;
  line-height: 1.5;
}

.popup-regras ul {
  padding-left: 15px;
  margin-top: 5px;
}

.popup-regras li {
  margin-bottom: 6px;
}

/* Rodapé e Botão de Ação */
.popup-footer {
  margin-top: 20px;
  text-align: center;
}

.popup-action-btn {
  background: #ff3333;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s ease;
}

.popup-action-btn:hover {
  background: #cc2222;
}

/* Customização da barra de rolagem interna no mobile */
.popup-card::-webkit-scrollbar {
  width: 6px;
}
.popup-card::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}

/*BannerAniver*/

.banner-aniversario-container {
  background: #09090b; /* Fundo mais escuro para destacar as caixas internas */
  padding: 30px 15px;
  margin: 30px 10px 80px 10px; /* Margem inferior de 80px para não encostar no menu do app */
  border: 1px solid #27272a;
  border-radius: 12px;
  font-family: sans-serif;
}

.banner-header { 
  text-align: center; 
  margin-bottom: 25px; 
}

.banner-header h2 { 
  color: #fff; 
  font-size: 1.3rem; 
  line-height: 1.3; 
  margin-bottom: 8px; 
}

.sub-titulo { 
  color: #ff3333; 
  font-weight: bold; 
  font-size: 0.85rem; 
  text-transform: uppercase; 
  letter-spacing: 1px;
}

.banner-grid { 
  display: flex; 
  flex-direction: column; 
  gap: 20px; 
}

/* Estilo das caixas de Vantagens e Regras */
.bloco-info {
  background: #18181b; /* Cinza escuro para dar contraste */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.card-vantagens { border-left: 4px solid #10b981; } /* Linha verde lateral */
.card-regras { border-left: 4px solid #f59e0b; } /* Linha amarela lateral */

.bloco-info h3 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: #fff;
}

/* Ajuste fino dos itens de Vantagem (ícone do lado esquerdo, texto do direito) */
.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  background: #27272a; /* Fundo interno para separar cada item */
  padding: 12px;
  border-radius: 8px;
}
.info-item:last-child { margin-bottom: 0; }
.info-icon { font-size: 1.6rem; margin-right: 12px; line-height: 1; }
.info-item strong { color: #ff3333; display: block; margin-bottom: 4px; font-size: 0.95rem; }
.info-item div { font-size: 0.85rem; line-height: 1.4; color: #a1a1aa; }

/* Ajuste fino das Regras */
.regras-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}
.regras-lista li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #a1a1aa;
}
.regras-lista li::before {
  content: "•";
  color: #ff3333;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}
.regras-lista li strong { color: #e4e4e7; } /* Destaque no meio do texto */

/* Área Extras (Karaokê) */
.banner-extras {
  text-align: center;
  margin-top: 25px;
  padding: 20px;
  background: #18181b;
  border-radius: 10px;
  border: 1px dashed #3f3f46;
}

.destaque-karaoke { color: #ff3333; font-size: 1.2rem; margin-bottom: 12px; }
.banner-extras p { font-size: 0.85rem; margin-bottom: 8px; color: #a1a1aa; }
.hashtag { color: #ff3333 !important; font-weight: bold; font-size: 1.2rem !important; margin: 15px 0 !important; }
.aviso-rodape { font-size: 0.75rem; color: #666; margin-top: 15px; border-top: 1px solid #27272a; padding-top: 12px; line-height: 1.4; }
