@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

body,
html {
  height: 100%;
  margin: 0;
  font-family: "Montserrat";
  max-width: 100%;
  overflow-x: hidden;
  background-color: #ebebeb;
}

/* Esse código está uma bagunça. Um reflexo do projeto como um todo :| */


/*CSS DA PAGINA PRINCIPAL*/

.header {
  width: 100%;
}

.header img {
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  /*a gambiarra deu certo :)*/
  background-position: top;
  width: 100%;
}



.container-title{
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .header {
    background-attachment: scroll;
  }
}

.banner-prom {
  width: 77%;
  margin: 0 auto
}


@media (max-width: 900px) {
  .banner-prom {
    width: 95%;
    margin: 0 auto
  }
}

.banner-prom>img {
  margin-top: 5%;
  margin-bottom: 5%;
  width: 100%;
  object-fit: cover;
  border-radius: 7px;
}

.mini-banner {
  width: 77%;
  margin: 0 auto;
}

.mini-banner>img {
  margin-top: 2%;
  margin-bottom: 2%;
  width: 100%;
  background-position: cover;
}

/*COMEÇO CSS DO CARD


/*codigo dos produtos conhecidos*/





.container1 {
  display: flex;
  padding-top: 2%;
  flex-direction: column;
  position: relative;
  
}

.row-items {
  border-radius: 7px;
  background: #fff;
  display: flex;
  flex-direction: row;
  width: 77%;
  margin: 0 auto;
}

.card-title {
  position: absolute;
  width: 77%;
  background: #000000;
}

.title {
  text-align: left;
  font-size: 30px;
  font-weight: 500;
}

.title2 {
  text-align: center;
  font-size: 65px;
  font-weight: 900;
  color: rgb(255, 255, 255);
}


@media (max-width:965px) {
  .title {
    text-align: center;
    font-size: 25px;
    font-weight: 500;
  }
}


/*inicio da codigo da footer*/

footer {
  background-color: #14150d;
  color: white;
  margin-top: 10vh;
}

.row-footer {
  display: flex;
  flex-direction: row;
  margin: 0 10% 0 11%;
}

.col-footer {
  width: 50%;
  padding: 40px 10px 40px 11px;
}

.col-footer>h1 {
  font-size: 2.5vh;
  color: #fff;
}

.col-footer>h2 {
  font-size: 25px;
  color: #fff;
  margin-bottom: 10px;
}

.col-footer>ul>li>a {
  color: white;
  text-decoration: none;
}

.col-footer>ul>li {
  list-style-type: none;
}

.col-footer>ul>li>a:hover {
  color:#007FFF;
}

.col-footer>ul {
  margin: 0 auto;
}

.col-footer>a {
  color: #007FFF;
  text-decoration: none;
}

.copyright {
  font-size: 29px;
  color: #007FFF;
  text-decoration: none;
}

.justify-content-center{
  margin: 2% 0 0 0;
}

@media(max-width: 768px){
  .mini-banner{
    width: 100%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 965px) {


  footer {
    background-color: #14150d;
    color: white;
    margin-top: 10vh;
  }

  .row-footer {
    display: flex;
    flex-direction: row;
    margin: 0 10% 0 11%;
  }

  .col-footer {
    width: 50%;
    padding: 40px 11px 40px 11px;
  }

  .col-footer>h1 {
    font-size: 15px;
    color: #fff;
  }

  .col-footer>h2 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
  }


  .copyright {
    font-size: 19px;
    color: #007FFF;
    text-decoration: none;
  }

  .row-items{
    flex-direction: column;
  }

}

/*FIM DO CSS DA PAGINA PRINCIPAL*/