@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;500;700;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
}

/* ===== BODY + FUNDO ===== */
body {
  position: relative;
  min-height: 100vh;
  text-align: center;
  overscroll-behavior: none;
  overflow-x: hidden;
  color: #fff;
  padding-bottom: 50px;
}

/* FUNDO COM FOTO */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("fotos-kama-sutra/FOTO-CAPA-BDSM.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.9;
  z-index: -2;
}

/* CAMADA ESCURA PARA LEGIBILIDADE */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.75)
  );
  z-index: -1;
}

/* ===== TÍTULO ===== */
.titulo {
  padding: 30px 8% 20px;
}

.titulo h1 {
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: 1px;
}

/* ===== CARROSSEL (TOPO) ===== */
/* mantém compatível com o que você já criou */
.carrossel {
  width: 100%;
  overflow-x: auto;
  display: flex;
  gap: 15px;
  padding: 10px 8% 25px;
  scroll-snap-type: x mandatory;
}

.carrossel::-webkit-scrollbar {
  display: none;
}

.slide {
  min-width: 85%;
  height: 160px;
  border-radius: 14px;
  scroll-snap-align: center;
  background: linear-gradient(
    180deg,
    rgb(233, 0, 0),
    rgb(80, 0, 0),
    rgb(2, 0, 0)
  );
  box-shadow: 0 10px 25px rgba(0, 0, 0, 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:active {
  transform: scale(0.98);
}

/* TÍTULO DO CARD */
.info {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

/* CONTEÚDO */
.informacao {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.informacao p {
  font-size: 0.95rem;
  line-height: 1.4;
  opacity: 0.95;
}

/* BOTÃO */
.btn-iniciar {
  margin-top: 10px;
  padding: 10px 30px;
  border-radius: 10px;
  background-color: #fff;
  color: rgb(80, 0, 0);
  font-weight: 800;
  font-size: 1rem;
  transition: 0.25s ease;
}

.btn-iniciar:active {
  transform: scale(0.95);
}

/* ===== DESKTOP ===== */
@media (min-width: 768px) {
  .cards {
    max-width: 700px;
    margin: 0 auto;
  }

  .slide {
    min-width: 60%;
  }
}
