* {margin: 0; padding: 0; box-sizing: border-box;
}
  
body {
  font-family: Arial, sans-serif;
  background-image: url("../img/background.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.header-component {
  width: 100%;
  /* height: 65px; */
  background: #5E27B7;
  display: flex;
  align-items: center;
  justify-content: center;
}
  
.header-nav {
  width: 100%;
  max-width: 1920px;
  /* background: #B83A6F; */
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
  
.header-nav-component {
  margin-right: 5%;
  color: aliceblue;
}
  
.titulo {
  color: aliceblue;
  margin-top: auto;
  margin-bottom: auto;
}
  
.logo {
  height: 75px;
  width: 75px;
}
  
.frase {
  text-align: center;
  margin-top: 5%;
  color: white;
}
  
.corpo-frase {
  background-image: linear-gradient(to left, #7839dd, #2b0863);
  height: 100%;
  margin-top: 3%;
  box-shadow: 0 0 50px #2b0863;
}
  
.banner {
  display: flex;
  align-self: center;
  max-width: 100%;
  height: auto;
}

.welcome{
  display: flexbox;
  margin-top: 10%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 65%;
}

.sugestoes{
  text-align: center;
  color: white;
  margin-top: 10%;
  background-image: linear-gradient(to left, #aa7af8, #6824d4);

}

.opicoes{
  display: flex;
  align-self: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 13px;
  justify-content: center;
}

.desc-opc{
  text-align: center;
  margin-top: 1px;
  /* box-shadow: 0 0 50px #2b0863; */
}

.img-opc{
  max-width: 200px;
  height: auto;
  margin-right: 15%;
}

footer{
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #170336;
  color: white;
  text-align: center;
  margin-top: 15px;
  box-shadow: 0 0 50px #2b0863; 
}


.insta{
  height: 40px;
  width: 40px;
}

.contt01{
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
  
  /* Media query para telas menores que 768px */
  @media screen and (max-width: 768px) {
    .header-nav {
      flex-direction: column;
      align-items: flex-end;
      justify-content: flex-end;
    }
  
    .header-nav-component {
      margin-right: 0;
      margin-bottom: 10px;
    }
  
    .titulo {
      font-size: 18px;
    }
  
    .logo {
      height: 50px;
      width: 50px;
    }

    .corpo-frase{
      font-size: 18px;
    }

    .welcome{
      font-size: 18px;
    }

    .opicoes{
      flex-direction: column;
    }
  }
  
  /* Media query para telas menores que 480px */
  @media screen and (max-width: 480px) {
    .header-nav-component {
      font-size: 14px;
    }

    .corpo-frase{
      font-size: 14px;
    }

    .welcome{
      font-size: 14px;
    }

    .sugestoes{
      font-size: 14px;
    }
  }
  