@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
html,
body {
  height: 100%;
  overflow-x: hidden;
}
body {
  background: radial-gradient(circle at top, #b20021, #0b0506 70%);
  color: #fff;
  padding-bottom: 80pz;
  overscroll-behavior: none;
  overflow-x: hidden;

} /* ---------- HEADER ---------- */
.cabecalho {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}
.cabecalho h1 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.menu {
  font-size: 2rem;
  cursor: pointer;
} /* ---------- MENU LATERAL ---------- */
.area-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 75%;
  height: 100%;
  background: linear-gradient(180deg, #2a0007, #000);
  transform: translateX(-100%);
  transition: 0.4s ease;
  z-index: 10;
}
.area-menu.active {
  transform: translateX(0);
}
.options {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.options a {
  color: #fff;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
  text-decoration: none;
}
.insta {
  margin-top: auto;
  opacity: 0.6;
} /* ---------- CARDS ---------- */
.cards {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card {
  background: linear-gradient(
    160deg,
    rgba(255, 0, 60, 0.15),
    rgba(0, 0, 0, 0.6)
  );
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  animation: cardFade 0.8s ease forwards;
}
.card h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.card p {
  opacity: 0.85;
  line-height: 1.4;
} /* ---------- BOTÃO ---------- */
.btn-iniciar {
  margin-top: 20px;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff003c, #7a001c);
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 0 20px rgba(255, 0, 60, 0.6);
  animation: pulseBtn 2.2s infinite;
  text-decoration: none;
} /* ---------- ANIMAÇÕES ---------- */
@keyframes cardFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulseBtn {
  0% {
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.4);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 0, 60, 0.8);
  }
  100% {
    box-shadow: 0 0 15px rgba(255, 0, 60, 0.4);
  }
} /* ===== CARROSSEL TOPO ===== */
.carousel-container {
  width: 100%;
  padding: 20px 0;
  overflow-x: hidden;
}
.carousel {
  display: flex;
  gap: 16px;
  padding: 0 8%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.carousel::-webkit-scrollbar {
  display: none;
}
.carousel-card {
  min-width: 85%;
  scroll-snap-align: center;
  background-image: linear-gradient(
    180deg,
    rgb(233, 0, 0),
    rgb(80, 0, 0),
    rgb(2, 0, 0)
  );
  border-radius: 14px;
  padding: 24px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  overflow: hidden;
} /* brilho sutil premium */
.carousel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.08),
    transparent 60%
  );
}
.carousel-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
}
.carousel-card p {
  font-size: 0.95rem;
  line-height: 1.4;
  opacity: 0.9;
} /* botão reaproveita identidade */
.carousel-card .btn-iniciar {
  align-self: flex-start;
  text-decoration: none;
}
.carousel-card::before,
.carousel-card::after {
  pointer-events: none;
}
.carousel-card a {
  position: relative;
  z-index: 10;
}

/* ---------- OVERLAY DO MENU ---------- */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* MENU SEMPRE ACIMA */
.area-menu {
  z-index: 10;
}

/* CONTEÚDO NORMAL ABAIXO */
.carousel-container,
.cards {
  position: relative;
  z-index: 1;
}

/* BOTÕES NUNCA SOBRE O MENU */
.btn-iniciar {
  position: relative;
  z-index: 2;
}

