@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Oswald:wght@200..700&display=swap');





/* ESTILIZAÇÃO DA ABA MODALIDADES*/



.menu {
  padding: 28px;
}



/* Imagens de fundo */
.m1 {
  background-image: url('imagens/gym.jpg');
}

.m2 {
  background-image: url('imagens/tenis.jpg');
}

.m3 {
  background-image: url('imagens/futebol.jpg');
}

.m4 {
  background-image: url('imagens/pool.jpg');
}

.m5 {
  background-image: url('imagens/golf.jpg');
}

.m6 {
  background-image: url('imagens/basquete.jpg');
}

.m7 {
  background-image: url('imagens/judo.jpg');
}

.m8 {
  background-image: url('imagens/tenisdemesa.jpg');
}

.m9 {
  background-image: url('imagens/volei.jpg');
}

.m10 {
  background-image: url('imagens/massagem.jpg');
}

/* Reset e estilos gerais */
* {
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  overflow: hidden;
}

.container {
  position: relative;
  width: 100vw;
  height: 100vh;
}

/* Área de exibição da imagem e texto */
#image-display {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: "Alfa Slab One", serif;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  user-select: none;
}

/* Sombra escura por cima da imagem */
#image-display::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Texto centralizado */
#image-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 1500px;
  font-size: 1.6vw;
  line-height: 1.4;
  color: white;
  font-family: "Alfa Slab One", serif;
  font-size: 50px;
}

/* Setas de navegação */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  font-size: 3rem;
  padding: 0;
  cursor: pointer;
  transition: color 0.3s ease;
  color: #fff;
  z-index: 10;
  background: none;
  border-radius: 0;
}

.arrow:hover {
  color: #ccc;
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}