@charset "UTF-8";
/* Reset de estilos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Quicksand", sans-serif;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #000000;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 100vh;
  overflow: hidden; /* Para evitar barras de rolagem */
}

/* Estilos para o vídeo de fundo */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1; /* Para garantir que o vídeo fique atrás do conteúdo */
  background-color: #000; /* Cor de fundo enquanto o vídeo não carrega */
}

#background-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Estilos para a seção de abertura */
.opening {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  z-index: 1; /* Para garantir que o conteúdo fique na frente do vídeo */
}

.imagem {
  position: relative;
  margin-bottom: 50px;
  border-radius: 30px;
}

.imagem img {
  position: relative;
  width: 300px;
  height: auto;
  animation: flutuar 1s ease-in-out infinite alternate;
}

footer {
  width: 100%;
  text-align: center;
  padding: 20px 0;
  background: black;
  position: relative;
  z-index: 1;
}

footer p {
  font-family: "Quicksand", sans-serif;
  font-size: 10px;
  color: #d5d5d5;
}

@keyframes flutuar {
  0% {
    top: 0;
  }
  100% {
    top: 20px;
  }
}
p {
  color: #d5d5d5;
  font-weight: 100;
  text-align: center;
  margin: 20px;
  font-size: 55px;
  font-family: "Great Vibes", cursive;
}

.normal {
  font-family: "Quicksand", sans-serif;
  font-size: 22px;
}

.botoes {
  display: flex;
  justify-content: center;
  align-items: center;
}

.botao_apple {
  width: 350px; /* Aumentei a largura do botão */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0);
  color: #000000;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.botao_apple:hover {
  background-color: rgba(167, 167, 167, 0);
}

.botao_apple img {
  width: 100%; /* Aumentei a largura da imagem para preencher o botão */
  height: auto;
}

.texto_nome {
  font-weight: bold;
}

@media screen and (max-width: 900px) {
  .imagem img {
    position: relative;
    width: 200px;
    margin-top: -50px;
  }
  .botao_apple {
    width: 270px; /* Ajuste a largura para dispositivos menores */
  }
}
@media screen and (max-width: 370px) {
  .opening {
    margin-top: 20px;
  }
  .imagem img {
    width: 180px;
    height: auto;
    margin-top: 20px;
  }
  .botao_apple {
    width: 160px; /* Ajuste a largura para dispositivos ainda menores */
  }
  footer p {
    font-family: "Quicksand", sans-serif;
    font-size: 10px;
    margin-top: 50px;
  }
}/*# sourceMappingURL=style.css.map */