
@import url('https://fonts.googleapis.com/css2?family=Metrophobic&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');




* {
  padding: 0;
  margin: 0;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;

}
body {
  background-color: #222;
}
.title{
  font-family: "Metrophobic", sans-serif;
  font-style: normal;
  font-size: 50px;
  
}
.sub-title {
  font-family: "Metrophobic", sans-serif;
  font-size: 38px;
  font-weight: 600;
}
.sub-title span {
  color: rgb(25, 255, 25);
  font-family: "Metrophobic", sans-serif;
}
nav {
  font-size: 20px;
  background-color: #181818;
}
nav a {
  font-family: "Metrophobic", sans-serif;
  text-decoration: none;
  color:#fff;
  transition: .3s;
}
nav a:hover {
  color: rgb(25, 255, 25);
}
.destaque {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  background-image: url(imgs/bg_destaque3.webp);
  background-repeat: no-repeat;
  height: 500px;
  width: auto;
  padding: 80px;
}
.destaque span {
  color: rgb(25, 255, 25);
  font-family: "Metrophobic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 50px;
}

.destaque a {
  width: 290px;
}
.item span {
  color: #fff;
  font-weight: bold;
}
.item a {
  color: rgb(25, 255, 25);
  text-decoration: none;
}
.item i{
  color: rgb(25, 255, 25);
}
.btn {
  font-family: "Metrophobic", sans-serif;
  font-weight: bold;
  color: #222;
  background-color: rgb(25, 255, 25);
  font-size: 20px ;
}
.btn:hover {
  background: #fff;
  color: #222;
  border: solid 1px rgb(25, 255, 25);
}
#portfolio{
  background-color: #181818;
  border-top: 3px solid;
  border-image-source: linear-gradient(90deg, #22222200, rgb(25, 255, 25), #2222222f);
  border-image-slice: 1;
}

#portfolio strong{
  color: rgb(25, 255, 25);
}

.link{
  text-decoration: none;
  color: rgb(25, 255, 25);
  text-align: center;
}
.link:hover {
  color: #fff;
}
#servicos{
  border-top: 3px solid;
  border-image-source: linear-gradient(90deg, #22222200, rgb(255, 255, 255), #2222222f);
  border-image-slice: 1;
}
.cards-itens {
  transition: .35s;
}
.cards:hover > :not(:hover){
  opacity: .4;
  transform: scale(0.9);
}
#metodo {
  background-color: #181818;
  border-top: 3px solid;
  border-image-source: linear-gradient(90deg, #22222200, rgb(25, 255, 25), #2222222f);
  border-image-slice: 1;
}

ul{
  list-style: none;
}
li{
  margin-top: 20px;
}
li i{
  font-size: 30px;
  margin-right: 12px;
  color: rgb(25, 255, 25);
}
h4 {
  font-family: "Metrophobic", sans-serif;
  font-weight: 600;
}
#quem-sou{
  border-top: 3px solid;
  border-image-source: linear-gradient(90deg, #22222200, rgb(255, 255, 255), #2222222f);
  border-image-slice: 1;
}
#quem-sou span{
  color: rgb(25, 255, 25);
  font-weight: bold;
}
.redes {
  padding: 10px;
}
.redes i {
  margin-top: 20px;
  color: rgb(25, 255, 25);
  font-size: 42px;
  transition: .3s;
}
.redes i:hover{
  color: #fff;
}
.card {
  height: 375px;
}
.carousel-inner{
  padding: 50px;
}
iframe {
  width: 740px;
  height: 500px;
}
.carousel img {
  width: 740px;
  height: 500px;
  border-radius: 12px;
}
footer {
  border-top: 3px solid;
  border-image-source: linear-gradient(90deg, #22222200, rgb(25, 255, 25), #2222222f);
  border-image-slice: 1;
  padding: 10px;
  background-color: black;
  height: 100px;
  display: flex;
  justify-content: center;
  color: #fff;
  align-items: center;
}
@media (max-width: 912px) {
  .destaque {
    background-size: cover;
    height: 630px;
    padding: 32px;
    background-image: url("/imgs/bg_destaque_mob.jpg");
  }
  .card {
    height: 320px;
  }
  .title {
    font-size: 45px;
  }
  .sub-title {
    font-size: 32px;
  }
  .carousel-inner{
    padding: 0;
  }
  iframe {
    width: 300px;
    height: 210px;
  }
  .carousel img {
    width: 300px;
    height: 210px
  }
}