* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: black;
}

.video-container {
  position: relative;
  min-width: 100vw;
  min-height: 100vh;
  overflow: hidden;
}

#bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(5px);
  opacity: 0.3;
}

#geral {
  display: flex;
  justify-content: space-between;
  padding: 50px;
}

.logo {
  display: flex;
  width: 100px;
  margin: 0 auto;
  margin-top: 20px;
}

.conteudo {
  width: 60vw;
}

h2 {
  color: #ffffff;
  font-size: 50px;
  font-weight: 500;
}

span {
  color: #017143;
  font-size: 50px;
  font-weight: 900;
}

p {
  font-size: 16px;
  color: #ffffff;
  text-align: justify;
}

button {
  background: #017143;
  color: white;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: flex;
  margin: 0 auto;
  margin-top: 20px;
  transition: 0.7s;
}

button:hover {
  opacity: 0.3;
}

a {
  text-decoration: none;
}

.starbucks {
  padding: 50px;
  max-width: 300px;
  object-fit: cover;
}

.circulo {
  border-radius: 100%;
  background: #017143;
}

.menu {
  display: flex;
  justify-content: center;
  margin-top: 7%;
}

.botao-menu {
  width: 60px;
  transition: 1s;
  cursor: pointer;
  margin: 10px;
}

.botao-menu:hover {
  transform: translateY(-25px);
}

/*TABLET*/
@media screen and (max-width: 1030px) {
  .logo {
    display: flex;
    margin: 20px auto
  }

  h2 {
    text-align: center;
  }

  button {
    display: flex;
    margin: 30px auto;
  }

  #geral {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

/*SMARTPHONE*/
@media screen and (max-width: 400px) {
  h2 {
    font-size: 30px;
  }

  span {
    font-size: 30px;
  }
}