/* =========================================================
   SINUCA TICKETS — Tema público
   Design system "Aurora Noturna": base escura premium com
   gradiente violeta/ciano moderno + acento dourado de destaque.
   ========================================================= */

:root {
  /* Superfícies */
  --bg-dark: #05050a;
  --bg-darker: #020204;
  --bg-panel: #0b0c14;
  --bg-panel-alt: #10121c;

  /* Marca / acentos */
  --primary: #7c5cff;
  --primary-light: #a78bfa;
  --accent: #22d3ee;
  --accent-light: #67e8f9;
  --table-green: #0b6b3a;
  --table-green-light: #17a862;
  --gold: #f2b705;
  --gold-light: #ffd766;

  /* Texto */
  --white: #f6f6fb;
  --muted: #9aa0b4;
  --muted-dim: #6b7086;

  /* Estado */
  --danger: #f2495c;
  --warning: #f0b23a;
  --success: #2fd884;
  --neon: #34e89e;

  /* Bordas / sombras */
  --border: rgba(255, 255, 255, 0.09);
  --border-accent: rgba(124, 92, 255, 0.35);
  --shadow-primary: 0 0 28px rgba(124, 92, 255, 0.28);
  --shadow-gold: 0 0 24px rgba(242, 183, 5, 0.25);

  --radius-xl: 16px;
  --radius-lg: 12px;
  --radius-md: 8px;
  --radius-sm: 6px;

  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  --gradient-gold: linear-gradient(135deg, var(--gold-light), var(--gold));

  --font-display: 'Sora', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 12% -10%, rgba(124, 92, 255, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 88% 10%, rgba(34, 211, 238, 0.14) 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(11, 107, 58, 0.16) 0%, transparent 55%),
    var(--bg-dark);
  background-attachment: fixed;
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 0%, rgba(0,0,0,.9), transparent 75%);
}

.site-header, .hero, main, .site-footer { position: relative; z-index: 1; }

h1, h2, h3, h4, .section-title, .brand, .hero-title {
  font-family: var(--font-display);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-light);
  font-size: 12.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: inline-block;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--white);
  letter-spacing: -0.5px;
}

.section-subtitle {
  color: var(--muted);
  font-size: 17px;
  max-width: 640px;
  margin: 0 0 48px;
}

/* ===================== BOTÕES ===================== */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  white-space: nowrap;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 0 36px rgba(124, 92, 255, 0.5); }

.btn-gold {
  background: var(--gradient-gold);
  color: #201a05;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 0 32px rgba(242, 183, 5, 0.45); }

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.btn-outline:hover { border-color: var(--accent); color: var(--accent-light); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1.5px solid transparent;
  padding: 10px 18px;
}

.btn-ghost:hover { color: var(--white); }

.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; font-size: 14px; }

.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }

/* ===================== HEADER (nav flutuante) ===================== */

.site-header {
  position: fixed;
  top: 18px; left: 0; right: 0;
  z-index: 100;
  padding: 0 20px;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1180px;
  padding: 0 12px 0 24px;
  background: rgba(11, 12, 20, 0.65);
  backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transition: background .3s ease, border-color .3s ease, height .3s ease, box-shadow .3s ease;
}

.site-header.scrolled .container {
  height: 58px;
  background: rgba(8, 9, 16, 0.86);
  border-color: var(--border-accent);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(124, 92, 255, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .3px;
}

.brand img { height: 36px; width: 36px; border-radius: 50%; object-fit: cover; }

.brand .brand-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s;
}

.nav-menu a:hover { color: var(--white); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.header-actions .btn { padding: 12px 24px; font-size: 14px; }

.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 24px; cursor: pointer; }

/* ===================== HERO ===================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,10,.6) 0%, rgba(5,5,10,.88) 65%, var(--bg-dark) 100%),
    radial-gradient(circle at 82% 15%, rgba(124,92,255,.35), transparent 55%),
    radial-gradient(circle at 15% 85%, rgba(34,211,238,.2), transparent 50%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  opacity: .35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content { position: relative; z-index: 2; max-width: 720px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 92, 255, 0.14);
  border: 1px solid var(--border-accent);
  color: var(--accent-light);
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(34px, 6vw, 66px);
  font-weight: 800;
  line-height: 1.06;
  margin: 0 0 20px;
  letter-spacing: -1px;
}

.hero-title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 19px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 56px; }

.hero-balls {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.floating-ball {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(0,0,0,.5);
  opacity: .9;
}

/* ===================== CONTADOR ===================== */

.countdown {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.countdown-item {
  background: linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 22px;
  min-width: 88px;
  text-align: center;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.06);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.countdown-item:hover {
  border-color: rgba(242, 183, 5, 0.4);
  box-shadow: 0 12px 30px rgba(0,0,0,.3), 0 0 22px rgba(242, 183, 5, 0.18);
  transform: translateY(-2px);
}

.countdown-item strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  font-family: var(--font-display);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.countdown-item span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
}

/* ===================== CARDS GLASSMORPHISM ===================== */

.glass-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  padding: 32px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-accent);
  box-shadow: 0 24px 48px rgba(0,0,0,.4);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-icon {
  width: 56px; height: 56px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-primary);
  font-size: 26px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-primary);
}

.feature-title { font-size: 19px; font-weight: 800; margin-bottom: 8px; font-family: var(--font-display); }
.feature-text { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ===================== CARROSSEL ===================== */

.carousel {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.carousel-track {
  display: flex;
  transition: transform .6s cubic-bezier(.65,0,.35,1);
}

.carousel-slide { min-width: 100%; aspect-ratio: 16/8; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }

.carousel-dots {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
}

.carousel-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}

.carousel-dots button.active { background: var(--accent); transform: scale(1.3); }

/* ===================== SOBRE ===================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
}

.about-text p { color: var(--muted); margin-bottom: 16px; }

/* ===================== LOTES ===================== */

.event-day-heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin: 40px 0 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.event-day-heading:first-of-type { margin-top: 8px; padding-top: 0; border-top: none; }

.event-day-heading span {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-light);
}

.batches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 8px;
}

.batch-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
}

.batch-card::before {
  content: '';
  position: absolute;
  top: -60%; right: -30%;
  width: 200px; height: 200px;
  background: var(--gradient-primary);
  filter: blur(70px);
  opacity: .25;
  pointer-events: none;
}

.batch-card.sold-out { opacity: .55; filter: grayscale(.4); }
.batch-card.sold-out::before { display: none; }

.batch-card.featured {
  border-color: rgba(242, 183, 5, 0.45);
  box-shadow: 0 24px 55px rgba(0,0,0,.45), 0 0 0 1px rgba(242, 183, 5, 0.2);
}

.batch-card.featured::before { background: var(--gradient-gold); opacity: .3; }

.batch-ribbon {
  align-self: flex-start;
  background: var(--gradient-gold);
  color: #201a05;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 6px 16px;
  border-radius: 10px;
  box-shadow: var(--shadow-gold);
  position: relative;
  z-index: 2;
}

.batch-name { font-size: 20px; font-weight: 800; font-family: var(--font-display); position: relative; }
.batch-desc { color: var(--muted); font-size: 14px; min-height: 40px; position: relative; }

/* Divisória estilo "picote de ingresso", com entalhes nas bordas do card */
.batch-divider {
  position: relative;
  border-top: 2px dashed rgba(255,255,255,.16);
  margin: 2px -32px;
}

.batch-divider::before,
.batch-divider::after {
  content: '';
  position: absolute;
  top: -11px;
  width: 22px; height: 22px;
  border-radius: 10px;
  background: var(--bg-dark);
  box-shadow: inset 0 0 0 1px var(--border);
}

.batch-divider::before { left: -11px; }
.batch-divider::after { right: -11px; }

.batch-price {
  font-size: 34px;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--gold);
  position: relative;
}

.batch-price small { font-size: 14px; color: var(--muted); font-weight: 600; }

.batch-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
  position: relative;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 10px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.badge-success { background: rgba(47,216,132,.15); color: var(--success); }
.badge-warning { background: rgba(240,178,58,.15); color: var(--warning); }
.badge-danger { background: rgba(242,73,92,.15); color: var(--danger); }
.badge-muted { background: rgba(255,255,255,.08); color: var(--muted); }
.badge-primary { background: rgba(124,92,255,.15); color: var(--primary-light); }

/* ===================== LOCALIZAÇÃO ===================== */

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.location-map {
  border-radius: 10px;
  border: 1px solid var(--border);
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.02);
}

.info-row { display: flex; gap: 14px; margin-bottom: 18px; }
.info-row .icon { color: var(--accent-light); font-size: 20px; }

/* ===================== FAQ ===================== */

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.02);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
}

.faq-question .plus { transition: transform .25s; color: var(--accent-light); font-size: 20px; }

.faq-item.open .plus { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  color: var(--muted);
  padding: 0 24px;
  font-size: 14.5px;
}

.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* ===================== FOOTER ===================== */

.site-footer {
  position: relative;
  background: var(--bg-darker);
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
  margin-top: 40px;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: min(520px, 70%);
  height: 1px;
  background: var(--gradient-primary);
  filter: blur(1px);
  opacity: .8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-title { font-weight: 800; margin-bottom: 16px; color: var(--white); font-family: var(--font-display); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--muted); font-size: 14px; }
.footer-links a:hover { color: var(--accent-light); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted-dim);
  font-size: 13px;
}

/* ===================== FORMULÁRIOS ===================== */

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--muted);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,.045);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
  font-family: inherit;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124,92,255,.16);
}

.form-input.is-invalid { border-color: var(--danger); }
.field-error { color: var(--danger); font-size: 12.5px; margin-top: 6px; display: block; }

.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted); }
.form-check input { margin-top: 4px; }

.rules-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--accent-light);
  font-weight: 700;
  font-size: inherit;
  font-family: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.rules-link:hover { color: var(--accent); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ===================== PÁGINAS INTERNAS (checkout/payment/etc) ===================== */

.page-wrap {
  min-height: 100vh;
  padding: 150px 0 80px;
}

.page-header { text-align: center; margin-bottom: 40px; }

.two-col {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}

.summary-box { position: sticky; top: 110px; }

.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14.5px;
  color: var(--muted);
  border-bottom: 1px dashed rgba(255,255,255,.08);
}

.summary-line.total {
  font-size: 19px;
  font-weight: 800;
  color: var(--gold);
  border-bottom: none;
  padding-top: 18px;
}

/* ---------- Stepper (funil de compra) ---------- */

.checkout-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  max-width: 520px;
  margin: 0 auto 44px;
  flex-wrap: wrap;
}

.checkout-stepper .step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border-radius: 10px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  color: var(--muted-dim);
}

.checkout-stepper .step .num {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06);
  color: var(--muted);
  font-size: 12.5px;
}

.checkout-stepper .step.active {
  color: var(--white);
  border-color: var(--border-accent);
  background: rgba(124,92,255,.1);
}

.checkout-stepper .step.active .num { background: var(--gradient-primary); color: #fff; }

.checkout-stepper .step.done .num { background: var(--success); color: #06210f; }
.checkout-stepper .step.done { color: var(--muted); }

.checkout-stepper .divider {
  width: 26px; height: 1px;
  background: var(--border);
  flex-shrink: 0;
}

/* ---------- Status / gateway de pagamento ---------- */

.status-banner {
  border-radius: 10px;
  padding: 18px 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.status-banner.pending { background: rgba(240,178,58,.12); color: var(--warning); border: 1px solid rgba(240,178,58,.3); }
.status-banner.paid { background: rgba(47,216,132,.12); color: var(--success); border: 1px solid rgba(47,216,132,.3); }
.status-banner.cancelled { background: rgba(242,73,92,.12); color: var(--danger); border: 1px solid rgba(242,73,92,.3); }

.gateway-card { margin-bottom: 24px; }

.gateway-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 10px;
}

.gateway-card-title h3 { margin: 0; font-size: 19px; }

.pix-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
}

.pix-box {
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}

.pix-box img { margin: 0 auto; border-radius: 10px; display: block; }

.pix-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }

.pix-steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--muted);
}

.pix-steps .step-num {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(124,92,255,.15);
  color: var(--accent-light);
  font-size: 12.5px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

.copy-field {
  display: flex;
  gap: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 12px;
  word-break: break-all;
  color: var(--muted);
  align-items: center;
  margin-top: 18px;
}

.copy-field button {
  flex-shrink: 0;
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  padding: 9px 16px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  font-size: 13px;
  transition: opacity .2s, transform .2s;
}

.copy-field button:hover { transform: translateY(-1px); }
.copy-field button.copied { background: var(--success); color: #06210f; }

.buyer-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.buyer-info-grid .item span { display: block; }
.buyer-info-grid .label { font-size: 11.5px; text-transform: uppercase; letter-spacing: .6px; color: var(--muted-dim); margin-bottom: 4px; }
.buyer-info-grid .value { font-size: 14.5px; font-weight: 600; color: var(--white); }

/* ---------- Promo banner (GetBet) ---------- */

.promo-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  border-radius: 10px;
  background: linear-gradient(120deg, rgba(124,92,255,.18), rgba(34,211,238,.12));
  border: 1px solid var(--border-accent);
  margin-bottom: 24px;
  overflow: hidden;
  flex-wrap: wrap;
}

.promo-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% -20%, rgba(242,183,5,.25), transparent 60%);
  pointer-events: none;
}

.promo-banner .promo-badge {
  flex-shrink: 0;
  width: 58px; height: 58px;
  border-radius: 10px;
  background: var(--gradient-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: #201a05;
  box-shadow: var(--shadow-gold);
}

.promo-banner .promo-copy { flex: 1; min-width: 200px; position: relative; z-index: 1; }
.promo-banner .promo-copy strong { display: block; font-size: 15.5px; margin-bottom: 3px; }
.promo-banner .promo-copy span { color: var(--muted); font-size: 13.5px; }

.promo-banner .btn { position: relative; z-index: 1; flex-shrink: 0; }

/* ---------- Modal (pop-up GetBet) ---------- */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(2, 2, 6, 0.78);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.modal-overlay.is-open { opacity: 1; pointer-events: auto; }

.modal-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: linear-gradient(165deg, #14152a, var(--bg-panel));
  border: 1px solid var(--border-accent);
  border-radius: 10px;
  padding: 40px 32px 32px;
  text-align: center;
  box-shadow: 0 40px 90px rgba(0,0,0,.55), 0 0 0 1px rgba(124,92,255,.08);
  transform: translateY(24px) scale(.96);
  transition: transform .35s cubic-bezier(.2,.9,.3,1.2);
}

.modal-overlay.is-open .modal-card { transform: translateY(0) scale(1); }

.modal-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 10px;
  padding: 1px;
  background: var(--gradient-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .5;
  pointer-events: none;
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}

.modal-close:hover { background: rgba(255,255,255,.12); color: var(--white); }

.modal-emoji {
  font-size: 40px;
  margin-bottom: 6px;
}

.modal-discount {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  margin: 4px 0 12px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.modal-card h2 {
  font-family: var(--font-display);
  font-size: 21px;
  margin: 0 0 12px;
}

.modal-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0 0 26px;
}

.modal-card .btn { width: 100%; margin-bottom: 12px; }

.modal-skip {
  display: inline-block;
  color: var(--muted-dim);
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.modal-skip:hover { color: var(--muted); }

.ticket-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 20px;
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
}

.ticket-code {
  font-family: 'Courier New', monospace;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--gold);
}

.ticket-qr { background: #fff; padding: 10px; border-radius: 10px; }
.ticket-qr img { width: 150px; height: 150px; }

.validate-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.validate-result {
  margin-top: 32px;
  border-radius: 10px;
  padding: 32px;
  font-weight: 700;
}

.validate-result.success { background: rgba(47,216,132,.12); border: 1px solid var(--success); color: var(--success); }
.validate-result.warning { background: rgba(240,178,58,.12); border: 1px solid var(--warning); color: var(--warning); }
.validate-result.danger { background: rgba(242,73,92,.12); border: 1px solid var(--danger); color: var(--danger); }

.validate-result .result-icon { font-size: 48px; margin-bottom: 12px; }

/* ===================== JOGO DE SINUCA ===================== */

.game-wrap { padding: 28px; }

.game-hud {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.hud-item { display: flex; flex-direction: column; gap: 2px; }

.hud-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--muted-dim);
  font-weight: 700;
}

.hud-value {
  font-size: 24px;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--gold);
}

.game-hud .btn { margin-left: auto; }

.game-table-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

#sinuca-canvas {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
  cursor: crosshair;
  touch-action: none;
}

.game-message {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2, 2, 6, .78);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  text-align: center;
  padding: 20px;
}

.game-message[hidden] { display: none; }

.game-message h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin: 0 0 8px;
}

.game-message p { color: var(--muted); margin: 0 0 22px; max-width: 340px; }

.game-toast {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(11, 12, 20, .88);
  border: 1px solid var(--border-accent);
  color: var(--white);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .4);
}

.game-toast[hidden] { display: none; }

.game-hint {
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
  margin: 20px 0 0;
}

@media (max-width: 720px) {
  .game-hud { justify-content: center; text-align: center; }
  .game-hud .btn { margin-left: 0; width: 100%; }
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
}

/* ===================== RESPONSIVO ===================== */

@media (max-width: 900px) {
  .about-grid, .location-grid, .two-col { grid-template-columns: 1fr; }
  .summary-box { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pix-layout { grid-template-columns: 1fr; }
  .pix-box { max-width: 220px; margin: 0 auto; }
}

@media (max-width: 720px) {
  .site-header { top: 0; padding: 0; }
  .site-header .container { border-radius: 10px; height: 64px; padding: 0 8px 0 14px; }
  .nav-menu { display: none; }
  .nav-toggle { display: block; font-size: 20px; }
  .brand { font-size: 15px; gap: 6px; white-space: nowrap; }
  .brand img { height: 28px; width: 28px; }
  .header-actions { gap: 6px; }
  .header-actions .btn { padding: 8px 10px; font-size: 11.5px; white-space: nowrap; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--bg-darker);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
  }
  .hero { padding-top: 84px; }
  .section { padding: 60px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .ticket-card { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-wrap { padding-top: 110px; }
  .promo-banner { flex-direction: column; text-align: center; }
  .checkout-stepper .step span.label { display: none; }
}

@media (max-width: 400px) {
  .brand { font-size: 13px; gap: 5px; }
  .brand img { height: 24px; width: 24px; }
  .header-actions { gap: 5px; }
  .header-actions .btn { padding: 7px 8px; font-size: 10.5px; }
}
