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

body {
  background: #050505;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
}

/* ALERTA NO SITE */
.site-alert {
  position: fixed;
  top: 18px;
  right: 18px;
  background: linear-gradient(180deg, #d81c1c 0%, #8f0f0f 100%);
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 16px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  z-index: 9999;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: 0.25s ease;
  max-width: 320px;
  line-height: 1.4;
}

.site-alert.show {
  opacity: 1;
  transform: translateY(0);
}

/* BANNER */
.hero {
  width: 100%;
  height: 320px;
  position: relative;
  overflow: hidden;
  background: #000000;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.82);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.72));
}

/* CONTEÚDO */
.main-content {
  max-width: 1200px;
  margin: -44px auto 0;
  padding: 0 24px 60px;
  position: relative;
  z-index: 2;
}

/* TÍTULO */
.title-box {
  text-align: center;
  margin-bottom: 24px;
}

.mini-title {
  color: #ff3535;
  font-size: 13px;
  letter-spacing: 5px;
  margin-bottom: 10px;
  font-weight: 800;
}

.title-box h1 {
  font-size: 58px;
  font-weight: 900;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 22px;
  color: #c8c8d6;
}

/* PAINEL SUPERIOR */
.status-panel {
  margin: 0 auto 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.top-bar {
  width: 100%;
  max-width: 920px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 14px 18px;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  color: #f1f1f1;
  font-size: 15px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.top-bar strong {
  color: #ffffff;
}

/* BOTÃO DE ATUALIZAÇÃO */
.reload-wrapper {
  display: flex;
  justify-content: center;
}

.reload-btn {
  background: linear-gradient(180deg, #d81c1c 0%, #8f0f0f 100%);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 16px 36px;
  font-size: 20px;
  font-weight: 800;
  cursor: default;
  box-shadow: 0 10px 25px rgba(216, 28, 28, 0.3);
}

.reload-btn.loading {
  background: linear-gradient(180deg, #d81c1c 0%, #8f0f0f 100%);
  color: #ffffff;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: linear-gradient(180deg, #0f1118 0%, #090b11 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  padding: 28px 24px;
  min-height: 300px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.highlight-card {
  box-shadow:
    0 0 0 2px rgba(30, 203, 90, 0.35),
    0 12px 32px rgba(0, 0, 0, 0.35);
}

.weekday {
  display: block;
  font-size: 14px;
  color: #9699ad;
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-weight: 700;
}

.card h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: #ffffff;
}

/* STATUS */
.status-btn {
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  cursor: default;
}

.soldout {
  background: linear-gradient(180deg, #d81c1c 0%, #8f0f0f 100%);
  box-shadow: 0 0 0 1px rgba(255, 92, 92, 0.2);
}

.available {
  background: linear-gradient(180deg, #1ecb5a 0%, #117a38 100%);
  box-shadow: 0 0 0 1px rgba(69, 255, 125, 0.2);
}

/* TEXTO */
.message {
  font-size: 16px;
  color: #d5d5dd;
  line-height: 1.6;
  margin-bottom: 24px;
  min-height: 100px;
}

/* LINK */
.official-link {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  background: #1e212c;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.2s ease;
}

.official-link:hover {
  background: #2b3040;
}

/* RESPONSIVO */
@media (max-width: 980px) {
  .hero {
    height: 260px;
  }

  .main-content {
    margin-top: -28px;
    padding: 0 18px 40px;
  }

  .title-box h1 {
    font-size: 44px;
  }

  .subtitle {
    font-size: 18px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .top-bar {
    gap: 12px;
    font-size: 14px;
  }

  .reload-btn {
    font-size: 18px;
    padding: 14px 28px;
  }

  .site-alert {
    left: 12px;
    right: 12px;
    max-width: none;
  }
}