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

body {
  font-family: "Roboto", sans-serif;
  background-color: #000000;
  align-items: center;
  justify-content: center;
}

/* Estilos para a seção de abertura */
.opening {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

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

.imagem img {
  position: relative; /* Adicionando posição relativa */
  width: 300px; /* Ajuste conforme necessário */
  height: auto;
  animation: flutuar 1s ease-in-out infinite alternate;
}

@keyframes flutuar {
  0% {
    top: 0;
  }
  100% {
    top: 20px;
  }
}
p {
  color: #d5d5d5;
  text-align: center;
  margin: 20px;
  font-size: 20px;
}
p span {
  font-weight: 800;
}

.botoes {
  display: flex;
}

.botao_apple, .botao_android {
  margin: 10px;
  width: 200px;
  display: flex; /* Tornar os botões flexíveis */
  align-items: center; /* Alinhar os itens verticalmente */
  justify-content: center; /* Alinhar os itens horizontalmente */
  padding: 10px 20px;
  border-radius: 20px;
  background-color: #ffffff; /* Azul da Apple */
  color: #000000;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.botao_apple:hover, .botao_android:hover {
  background-color: #eb6f6f; /* Azul escuro da Apple */
}

.botao_apple .img img {
  width: 45px; /* Tamanho do ícone da Apple */
  height: 40px;
}

.botao_android .img img {
  width: 30px; /* Tamanho do ícone do Android */
  height: 30px;
  margin-right: 10px;
}

.texto_nome {
  font-weight: bold;
}

@media screen and (max-width: 900px) {
  .imagem img {
    position: relative; /* Adicionando posição relativa */
    width: 250px; /* Ajuste conforme necessário */
  }
  .botao_apple, .botao_android {
    width: 165px;
  }
}
@media screen and (max-width: 370px) {
  .opening {
    margin-top: 20px;
  }
  .imagem img {
    width: 200px; /* Ajuste conforme necessário */
    height: auto;
  }
  .botao_apple, .botao_android {
    width: 130px;
  }
}/*# sourceMappingURL=style.css.map */