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

:root {
  --red: #b55a5a;
  --red-soft: #a61e1e;
  --red-glow: rgba(198, 40, 40, 0.35);
  --bg-1: #111111;
  --bg-2: #0b0b0b;
  --card: rgba(255, 255, 255, 0.055);
  --card-border: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --muted: #b7b7b7;
  --transition: all 0.28s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(198,40,40,0.15), transparent 40%),
    linear-gradient(180deg, #111111, #0b0b0b);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 80%);
  z-index: -2;
}

.mouse-light {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(198,40,40,0.16), transparent 68%);
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
  transition: opacity .25s ease;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(14,14,14,0.76);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo img {
  height: 32px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.menu a {
  transition: var(--transition);
}

.menu a:hover {
  color: #fff;
}

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

.icon-btn {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  background: var(--red);
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--red), var(--red-soft));
  color: #fff;
  border: 0;
  border-radius: 14px;
  padding: 13px 20px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 38px rgba(181,90,90,0.18);
  transition: var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(198,40,40,0.34);
}

.btn-small {
  padding: 9px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.hero {
  min-height: 88vh;
  padding-top: 58px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-logo {
  position: absolute;
  inset: 0;
  background: url("https://www.bilheteriadigital.com/themes/novolayout/images/logo-bd-rebranding.svg") no-repeat center;
  background-size: 1040px;
  opacity: 0.075;
  filter: drop-shadow(0 0 32px rgba(198,40,40,0.5));
  animation: floatLogo 6s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, transparent 0%, rgba(11,11,11,0.72) 70%),
    linear-gradient(to bottom, transparent 60%, #0b0b0b);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
}

.eyebrow {
  display: inline-block;
  color: #ffb7b7;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.76rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -3px;
  font-weight: 900;
  margin-bottom: 24px;
}

.hero p {
  max-width: 640px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 1.12rem;
}

.search-box {
  max-width: 680px;
  margin: 0 auto;
  padding: 7px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  backdrop-filter: blur(16px);
}

.search-box i {
  margin-left: 18px;
  color: #ffb7b7;
}

.search-box input {
  flex: 1;
  min-width: 0;
  background: transparent;
  color: #fff;
  border: 0;
  outline: 0;
  font-size: 1rem;
}

.search-box input::placeholder {
  color: rgba(255,255,255,0.55);
}

.search-box button {
  border: 0;
  background: var(--red);
  color: white;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.hero-stats {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-stats div {
  min-width: 150px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-stats strong {
  display: block;
  font-size: 1.3rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.83rem;
}

.section {
  padding: 84px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}

.section h2,
.app-card h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -1.5px;
}

.link {
  color: #ffb7b7;
  font-weight: 800;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.event-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
    rgba(20,20,20,0.76);
  border: 1px solid var(--card-border);
  box-shadow: 0 20px 70px rgba(0,0,0,0.24);
  transition: var(--transition);
  transform-style: preserve-3d;
}

.event-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  border-color: rgba(255,183,183,0.35);
  box-shadow: 0 28px 90px rgba(198,40,40,0.18);
}

.event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(181,90,90,0.18), transparent 35%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
  z-index: 2;
}

.event-card:hover::before {
  opacity: 1;
}

.ticket-edge {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 250px;
  border-top: 1px dashed rgba(255,255,255,0.18);
  z-index: 3;
}

.event-card img {
  height: 230px;
  width: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.event-card:hover img {
  transform: scale(1.08);
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 7px 11px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.selling {
  background: rgba(42, 191, 103, 0.9);
}

.sold {
  background: rgba(198,40,40,0.95);
}

.special {
  background: rgba(255,183,79,0.95);
  color: #1a1a1a;
}

.card-content {
  padding: 24px;
}

.date {
  color: #ffb7b7;
  font-weight: 900;
  font-size: 0.84rem;
  text-transform: uppercase;
}

.card-content h3 {
  margin: 8px 0 8px;
  font-size: 1.32rem;
  line-height: 1.2;
}

.card-content p {
  color: var(--muted);
  font-size: 0.93rem;
  margin-bottom: 18px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 18px;
}

.price-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.price-row strong {
  font-size: 1.22rem;
}

.buy-btn {
  width: 100%;
}

.disabled {
  opacity: .55;
  cursor: not-allowed;
}

.benefits {
  padding-top: 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.benefit-card,
.app-card {
  padding: 30px;
  border-radius: 26px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(16px);
}

.benefit-card i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(198,40,40,0.18);
  color: #ffb7b7;
  border-radius: 16px;
  margin-bottom: 18px;
  font-size: 1.25rem;
}

.benefit-card h3 {
  margin-bottom: 8px;
}

.benefit-card p,
.app-card p {
  color: var(--muted);
}

.artists {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.artist {
  min-width: 160px;
  text-align: center;
}

.artist img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin: 0 auto 12px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.08);
  filter: grayscale(1);
  transition: var(--transition);
}

.artist:hover img {
  filter: grayscale(0);
  transform: scale(1.07);
  border-color: rgba(255,183,183,0.5);
  box-shadow: 0 0 35px rgba(198,40,40,0.24);
}

.artist span {
  font-weight: 800;
}

.app-section {
  padding: 30px 0 90px;
}

.app-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  background:
    linear-gradient(135deg, rgba(198,40,40,0.18), rgba(255,255,255,0.04)),
    rgba(255,255,255,0.055);
}

footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 30px 0;
  color: var(--muted);
  background: rgba(0,0,0,0.22);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-content img {
  height: 30px;
}

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(14px);
}

.checkout-modal.active {
  display: flex;
}

.checkout-box {
  position: relative;
  width: min(480px, 100%);
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(198,40,40,0.2), transparent 42%),
    #141414;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 100px rgba(0,0,0,0.45);
  animation: modalIn .28s ease;
}

.close-modal {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
}

.checkout-box h2 {
  line-height: 1.12;
  margin-bottom: 8px;
}

.checkout-box p {
  color: var(--muted);
}

.checkout-ticket {
  margin: 24px 0;
  padding: 20px;
  border-radius: 20px;
  border: 1px dashed rgba(255,255,255,0.22);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.05);
}

.checkout-ticket small {
  display: block;
  color: var(--muted);
}

.checkout-ticket strong {
  font-size: 1.7rem;
}

.checkout-ticket i {
  font-size: 2.5rem;
  color: #ffb7b7;
}

.checkout-form {
  display: grid;
  gap: 12px;
}

.checkout-form input {
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  outline: 0;
}

.checkout-form input:focus {
  border-color: rgba(255,183,183,0.55);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatLogo {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-16px) scale(1.03); }
  100% { transform: translateY(0) scale(1); }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile refinado */
@media (max-width: 960px) {
  .events-grid,
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .menu {
    display: none;
  }

  .hero-bg-logo {
    background-size: 680px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    height: 62px;
  }

  .logo img {
    height: 28px;
  }

  .icon-btn:first-child {
    display: none;
  }

  .btn-small {
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 86vh;
    padding-top: 62px;
  }

  .hero-bg-logo {
    background-size: 340px;
    opacity: 0.09;
  }

  .hero h1 {
    letter-spacing: -1.5px;
  }

  .hero p {
    font-size: 1rem;
  }

  .search-box {
    border-radius: 22px;
    flex-wrap: wrap;
    padding: 12px;
  }

  .search-box i {
    margin-left: 6px;
  }

  .search-box button {
    width: 100%;
  }

  .hero-stats {
    gap: 10px;
  }

  .hero-stats div {
    min-width: calc(50% - 10px);
    padding: 13px;
  }

  .section {
    padding: 64px 0;
  }

  .section-header {
    align-items: start;
    flex-direction: column;
  }

  .events-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .event-card img {
    height: 210px;
  }

  .ticket-edge {
    top: 230px;
  }

  .app-card,
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .app-card .btn {
    width: 100%;
  }

  .checkout-box {
    padding: 26px;
  }
}




/* Localização no conteúdo */
.location-strip {
  width: fit-content;
  max-width: 100%;
  margin: 28px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.location-strip i {
  color: #ffb7b7;
}

/* Botão flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  z-index: 1800;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: white;
  font-size: 2rem;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.35);
  transition: all 0.28s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.48);
}

@media (max-width: 680px) {
  .location-strip {
    width: 100%;
    font-size: 0.82rem;
    padding: 10px 14px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
    font-size: 1.8rem;
  }
}


/* Localização menor ao lado da Agenda Premium */
.location-mini {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
  backdrop-filter: blur(12px);
}

.location-mini i {
  color: #ffb7b7;
  font-size: 0.78rem;
}

@media (max-width: 680px) {
  .location-mini {
    width: fit-content;
    font-size: 0.72rem;
    padding: 6px 10px;
  }
}


/* Correção mobile: manter estado ao lado/oposto de Agenda Premium */
@media (max-width: 680px) {
  #eventos .section-header {
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 10px !important;
  }

  #eventos .section-header > div:first-child {
    min-width: 0;
    flex: 1;
  }

  #eventos .section-header h2 {
    font-size: 1.75rem;
  }

  #eventos .section-header .eyebrow {
    font-size: 0.68rem;
    margin-bottom: 8px;
  }

  .location-mini {
    display: inline-flex !important;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 0;
    max-width: 145px;
    overflow: hidden;
  }

  .location-mini span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}


/* Hero stats menores no mobile */
@media (max-width: 680px) {
  .hero-stats {
    gap: 8px !important;
    margin-top: 22px !important;
  }

  .hero-stats div {
    min-width: calc(33.33% - 6px) !important;
    padding: 10px 8px !important;
    border-radius: 14px !important;
  }

  .hero-stats strong {
    font-size: 1rem !important;
  }

  .hero-stats span {
    font-size: 0.68rem !important;
    line-height: 1.2 !important;
  }
}


/* Página: Todos os Shows */
.all-shows-hero {
  min-height: 46vh;
  padding: 130px 0 60px;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
}

.all-shows-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("https://www.bilheteriadigital.com/themes/novolayout/images/logo-bd-rebranding.svg") no-repeat center;
  background-size: 760px;
  opacity: 0.045;
  filter: drop-shadow(0 0 28px rgba(198,40,40,0.45));
  pointer-events: none;
}

.all-shows-hero .container {
  position: relative;
  z-index: 2;
}

.all-shows-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 18px;
  font-weight: 900;
}

.all-shows-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 26px;
}

.all-shows-search {
  max-width: 720px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
}

.all-shows-search i {
  color: #ffb7b7;
}

.all-shows-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: white;
  font-size: 1rem;
}

.all-shows-search input::placeholder {
  color: rgba(255,255,255,0.55);
}

.all-shows-section {
  padding: 40px 0 90px;
}

.state-block {
  margin-bottom: 26px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: start;
}

.state-title {
  position: sticky;
  top: 86px;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(198,40,40,0.18), rgba(255,255,255,0.045)),
    rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
}

.state-title span {
  display: block;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  color: #ffb7b7;
  margin-bottom: 8px;
}

.state-title p {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.state-events {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.state-event-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
    rgba(20,20,20,0.76);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 20px 70px rgba(0,0,0,0.18);
  transition: all 0.28s ease;
}

.state-event-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,183,183,0.35);
  box-shadow: 0 28px 80px rgba(198,40,40,0.14);
}

.event-state-date {
  display: block;
  color: #ffb7b7;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 9px;
}

.state-event-card h3 {
  font-size: 1.12rem;
  line-height: 1.18;
  margin-bottom: 9px;
}

.state-event-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.event-price {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(198,40,40,0.16);
  color: white;
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .state-block {
    grid-template-columns: 1fr;
  }

  .state-title {
    position: relative;
    top: auto;
  }

  .state-events {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .all-shows-hero {
    min-height: auto;
    padding: 105px 0 42px;
  }

  .all-shows-hero::before {
    background-size: 360px;
    opacity: 0.055;
  }

  .all-shows-hero h1 {
    letter-spacing: -1px;
  }

  .all-shows-search {
    border-radius: 18px;
  }

  .state-title {
    padding: 18px;
    border-radius: 20px;
  }

  .state-events {
    grid-template-columns: 1fr;
  }

  .state-event-card {
    min-height: auto;
  }
}


/* Botão mobile para página de shows */
.mobile-shows-btn {
  display: none;
}

@media (max-width: 680px) {
  .mobile-shows-btn {
    margin-top: 18px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--red), var(--red-soft));
    color: white;
    font-weight: 800;
    box-shadow: 0 14px 38px rgba(181,90,90,0.18);
  }
}


/* Integração Google Sheets */
.sheets-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 18px 20px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--muted);
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.sheets-status.error {
  color: #ffb7b7;
  border-color: rgba(198,40,40,0.32);
  background: rgba(198,40,40,0.10);
}

.states-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.state-filter-btn {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.065);
  color: var(--muted);
  padding: 9px 13px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: all .28s ease;
}

.state-filter-btn.active,
.state-filter-btn:hover {
  background: linear-gradient(135deg, var(--red), var(--red-soft));
  color: white;
  border-color: transparent;
}

@media (max-width: 680px) {
  .sheets-status {
    font-size: 0.86rem;
    padding: 14px;
    text-align: center;
  }

  .states-filter {
    gap: 8px;
  }

  .state-filter-btn {
    padding: 8px 11px;
    font-size: 0.78rem;
  }
}

/* Cadastro / Login */
.auth-modal{position:fixed;inset:0;z-index:2300;display:none;align-items:center;justify-content:center;padding:22px;background:rgba(0,0,0,.72);backdrop-filter:blur(16px)}
.auth-modal.active{display:flex}
.auth-box{position:relative;width:min(460px,100%);padding:28px;border-radius:28px;background:radial-gradient(circle at top,rgba(198,40,40,.20),transparent 42%),#141414;border:1px solid rgba(255,255,255,.12);box-shadow:0 30px 100px rgba(0,0,0,.45);animation:modalIn .28s ease}
.auth-close{position:absolute;right:16px;top:16px;width:38px;height:38px;border:0;border-radius:12px;background:rgba(255,255,255,.08);color:#fff;cursor:pointer}
.auth-tabs{display:flex;gap:8px;padding:5px;margin-bottom:22px;border-radius:999px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.10)}
.auth-tab{flex:1;padding:10px 12px;border:0;border-radius:999px;background:transparent;color:var(--muted);font-weight:900;cursor:pointer}
.auth-tab.active{background:linear-gradient(135deg,var(--red),var(--red-soft));color:#fff}
.auth-form{display:none}
.auth-form.active{display:grid;gap:12px}
.auth-form h2{line-height:1;font-size:2rem}
.auth-form p{color:var(--muted);margin-bottom:8px}
.auth-form input,.auth-form select{width:100%;padding:15px;border-radius:14px;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.06);color:#fff;outline:0}
.auth-form select option{color:#111}
.auth-form input:focus,.auth-form select:focus{border-color:rgba(255,183,183,.55)}
.auth-message{min-height:20px;color:#ffb7b7;font-size:.88rem;font-weight:700}
.auth-message.success{color:#80e8ac}
.user-pill{display:inline-flex;align-items:center;gap:8px;max-width:180px;padding:8px 12px;border-radius:999px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.10);color:#fff;font-size:.82rem;font-weight:800;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.logout-btn{background:rgba(255,255,255,.08);color:#fff;box-shadow:none}
@media(max-width:680px){.auth-box{padding:24px}.user-pill{max-width:120px;font-size:.76rem}}


/* Página destino do show */
.show-detail-hero {
  min-height: 92vh;
  padding: 120px 0 70px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.show-detail-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: blur(2px) saturate(1.1);
  transform: scale(1.04);
}

.show-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left, rgba(181,90,90,0.22), transparent 38%),
    linear-gradient(90deg, #0b0b0b 0%, rgba(11,11,11,0.78) 52%, rgba(11,11,11,0.92) 100%);
}

.show-detail-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.25fr 430px;
  gap: 36px;
  align-items: center;
}

.show-detail-info h1 {
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -3px;
  font-weight: 900;
  margin-bottom: 22px;
}

.show-detail-info p {
  color: var(--muted);
  max-width: 650px;
  font-size: 1.12rem;
  margin-bottom: 30px;
}

.show-detail-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.show-detail-meta div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.11);
  backdrop-filter: blur(12px);
}

.show-detail-meta i {
  color: #ffb7b7;
  margin-bottom: 10px;
}

.show-detail-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.show-detail-meta strong {
  display: block;
  margin-top: 4px;
  line-height: 1.25;
}

.show-checkout-card {
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.035)),
    rgba(20,20,20,0.86);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 100px rgba(0,0,0,0.35);
}

.show-checkout-card img {
  height: 245px;
  width: 100%;
  object-fit: cover;
}

.show-checkout-content {
  padding: 24px;
}

.show-checkout-content h2 {
  line-height: 1.1;
  margin: 8px 0;
}

.show-checkout-content p {
  color: var(--muted);
  margin-bottom: 18px;
}

.ticket-selector {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.ticket-selector label {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.82rem;
}

.ticket-selector select {
  width: 100%;
  padding: 13px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: white;
  outline: 0;
}

.ticket-selector select option {
  color: #111;
}

.show-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 18px 0;
  padding: 16px;
  border-radius: 18px;
  background: rgba(198,40,40,0.14);
  border: 1px solid rgba(181,90,90,0.18);
}

.show-total span {
  color: var(--muted);
  font-weight: 800;
}

.show-total strong {
  font-size: 1.35rem;
}

.show-detail-section {
  padding: 80px 0;
}

.show-content-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 28px;
}

.show-description,
.show-info-panel {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
}

.show-description h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.show-description p {
  color: var(--muted);
}

.show-highlights {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.show-highlights div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.08);
}

.show-highlights i {
  color: #ffb7b7;
  margin-bottom: 10px;
}

.show-highlights strong,
.show-highlights span {
  display: block;
}

.show-highlights span {
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 5px;
}

.show-info-panel h3 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.show-info-panel ul {
  display: grid;
  gap: 13px;
  list-style: none;
}

.show-info-panel li {
  color: var(--muted);
}

.show-info-panel i {
  color: #80e8ac;
  margin-right: 8px;
}

@media (max-width: 980px) {
  .show-detail-grid,
  .show-content-grid {
    grid-template-columns: 1fr;
  }

  .show-detail-meta,
  .show-highlights {
    grid-template-columns: 1fr;
  }

  .show-detail-hero {
    padding-top: 105px;
  }
}

@media (max-width: 680px) {
  .show-detail-info h1 {
    letter-spacing: -1.5px;
  }

  .show-detail-meta div,
  .show-description,
  .show-info-panel {
    padding: 20px;
  }

  .show-checkout-card img {
    height: 210px;
  }
}


/* Arena / Setores nas páginas de destino */
.arena-section {
  padding: 80px 0 20px;
  position: relative;
}

.arena-header {
  margin-bottom: 28px;
}

.arena-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.arena-location i {
  color: #ffb7b7;
}

.arena-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.arena-photo-card,
.arena-map-card {
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025)),
    rgba(20,20,20,0.78);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 80px rgba(0,0,0,0.24);
}

.arena-photo-card {
  position: relative;
  min-height: 430px;
}

.arena-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  transition: transform .6s ease;
}

.arena-photo-card:hover img {
  transform: scale(1.04);
}

.arena-photo-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(0,0,0,0.58);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
}

.arena-photo-overlay span {
  display: block;
  color: #ffb7b7;
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.arena-photo-overlay strong {
  font-size: 1.12rem;
}

.arena-map-card {
  padding: 28px;
}

.arena-map-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.arena-map-card > p {
  color: var(--muted);
  margin-bottom: 22px;
}

.arena-map {
  position: relative;
  min-height: 330px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(198,40,40,0.16), transparent 36%),
    rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  gap: 12px;
}

.stage {
  width: 72%;
  margin: 0 auto;
  height: 54px;
  border-radius: 18px 18px 30px 30px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--red), var(--red-soft));
  color: white;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 18px 45px rgba(181,90,90,0.20);
}

.sector {
  display: grid;
  place-items: center;
  min-height: 58px;
  border-radius: 18px;
  text-align: center;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,0.10);
}

.sector-premium {
  width: 58%;
  margin: 0 auto;
  background: rgba(255,183,183,0.16);
  color: #fff;
}

.sector-pista {
  min-height: 108px;
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.sector-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sector-side {
  background: rgba(255,255,255,0.055);
  color: var(--muted);
}

.entry-line {
  display: grid;
  place-items: center;
  min-height: 42px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1px;
  border-top: 1px dashed rgba(255,255,255,0.18);
}

.arena-sectors {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.arena-sector-card {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(12px);
}

.arena-sector-card span {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(198,40,40,0.18);
  color: #ffb7b7;
  font-weight: 900;
}

.arena-sector-card h4 {
  margin-bottom: 6px;
}

.arena-sector-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.arena-note {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
}

.arena-note i {
  color: #ffb7b7;
  margin-top: 3px;
}

@media (max-width: 980px) {
  .arena-grid,
  .arena-sectors {
    grid-template-columns: 1fr;
  }

  .arena-photo-card,
  .arena-photo-card img {
    min-height: 340px;
  }
}

@media (max-width: 680px) {
  .arena-section {
    padding: 58px 0 10px;
  }

  .arena-location {
    width: 100%;
    justify-content: center;
    font-size: 0.82rem;
  }

  .arena-photo-card,
  .arena-photo-card img {
    min-height: 260px;
  }

  .arena-map-card {
    padding: 20px;
  }

  .arena-map {
    min-height: 300px;
    padding: 14px;
  }

  .stage {
    width: 86%;
    height: 48px;
  }

  .sector-premium {
    width: 76%;
  }

  .sector-pista {
    min-height: 88px;
  }

  .arena-sector-card {
    padding: 18px;
  }
}
