.al-hero {
  min-height: 38vh;
  background: url('../images/background_sections.jpeg?v=2') center / cover no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--navbar-h) + 48px) 24px 52px;
  position: relative;
}

.al-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 30, 0.60);
}

.al-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, transparent 0%, rgba(8, 7, 16, 0.85) 100%);
  pointer-events: none;
  z-index: 0;
}

.al-hero__content {
  position: relative;
  z-index: 1;
}

.al-hero__badge {
  display: inline-block;
  background: rgba(150, 120, 21, 0.25);
  border: 1px solid rgba(150, 120, 21, 0.55);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.al-hero__title {
  color: var(--gold);
  font-size: clamp(28px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: 5px;
  margin: 0 0 12px;
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}

.al-hero__sub {
  color: rgba(232, 224, 204, 0.75);
  font-size: clamp(13px, 1.8vw, 16px);
  font-style: italic;
  margin: 0;
}

.al-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  border: 1px solid rgba(150, 120, 21, 0.5);
  padding: 8px 20px;
  border-radius: 6px;
  transition: background 0.3s, box-shadow 0.3s, color 0.3s;
}

.al-hero__back:hover {
  background: rgba(150, 120, 21, 0.18);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.25);
  color: var(--gold-light);
}

/* ---- Body ---- */

.al-body {
  background: url('../images/background_sections.jpeg?v=2') center / cover no-repeat fixed;
  padding: 60px 24px 100px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* ---- Section (page-container card) ---- */

.al-section {
  width: 100%;
  max-width: 1000px;
  background: rgba(18, 17, 31, 0.88);
  border: 1px solid rgba(150, 120, 21, 0.4);
  border-radius: 12px;
  padding: clamp(28px, 5vw, 60px);
  backdrop-filter: blur(4px);
}

.al-section__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.al-section__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(150, 120, 21, 0.6) 0%, transparent 100%);
}

.al-section__title {
  color: var(--gold);
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95), 0 0 20px rgba(0, 0, 0, 0.8);
  margin: 0;
  background: rgba(10, 8, 20, 0.55);
  padding: 6px 14px;
  border-radius: 6px;
  border-left: 3px solid rgba(212, 175, 55, 0.6);
}

.al-section__intro {
  color: rgba(232, 224, 204, 0.7);
  font-size: clamp(13px, 1.8vw, 15px);
  font-style: italic;
  line-height: 1.7;
  text-align: center;
  margin: 0 0 36px;
  padding: 14px 20px;
  border: 1px solid rgba(150, 120, 21, 0.25);
  border-radius: 8px;
  background: rgba(10, 8, 20, 0.45);
}

/* ---- Belt Grid ---- */

.al-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ---- Belt Button (link) ---- */

.al-btn {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: none;
  background: transparent;
  text-decoration: none;
  transition: transform 0.35s, filter 0.35s;
  cursor: pointer;
}

.al-btn:hover {
  transform: translateY(-6px) scale(1.04);
  filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.55));
}

.al-btn__img {
  display: block;
  width: 60%;
  height: auto;
  transition: filter 0.4s;
}

.al-btn:hover .al-btn__img {
  filter: brightness(1.12);
}

.al-btn__shine {
  display: none;
}

/* ---- Em Breve overlay ---- */

.al-btn--soon {
  cursor: default;
  pointer-events: none;
  opacity: 0.7;
}

.al-btn--soon:hover {
  transform: none;
  filter: none;
}

.al-btn__soon-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(10, 8, 20, 0.88);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 8px;
  padding: 10px 18px;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}

.al-btn__soon-badge__icon {
  font-size: 20px;
  display: block;
  margin-bottom: 4px;
}

.al-btn__soon-badge__text {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
}

.al-btn--soon .al-btn__img {
  filter: grayscale(55%) brightness(0.6);
}

/* ---- Mobile ---- */

@media (max-width: 715px) {
  .al-hero {
    background-attachment: scroll;
  }

  .al-body {
    background: transparent;
    padding: 32px 16px 100px;
  }

  .al-section__title {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .al-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .al-btn:hover {
    transform: none;
    filter: none;
  }

  .al-section__header {
    margin-bottom: 20px;
  }

  .al-section__intro {
    margin-bottom: 24px;
  }
}
