@import url('https://fonts.googleapis.com/css2?family=Agbalumo&family=Krona+One&family=Montserrat:wght@400;600&family=Roboto:wght@500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
   height: 100%;
  overflow: hidden; /* impede rolagem */
  min-height: 100vh;
  font-family: 'Roboto', sans-serif;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.conteudo {
  width: 100%;
}

.conteudo-principal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
}

.conteudo-principal-escrito {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.primeira-imagem {
  width: 60%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
}

.botao {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 600;
  width: 380px;
  height: 45px;
  border: none;
  background-color: #fff;
  border-radius: 7px;
  color: #000;
  box-shadow: 4px 5px 4px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.botao:hover {
  background-color: #e5e5e5;
  transform: scale(1.05);
}

.img-redes {
  width: 35px;
  height: 35px;
  margin: 40px 15px;
  transition: transform 0.2s ease-in-out;
  cursor: pointer;
}

.img-redes:hover {
  transform: scale(1.15);
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 20px;
}

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

/* Responsividade */
@media screen and (max-width: 780px) {
  .primeira-imagem {
    width: 80%;
  }

  .botao {
    width: 90%;
    font-size: 20px;
  }

  .img-redes {
    width: 28px;
    height: 28px;
    margin: 15px;
  }
}