/*============ PROJETOS SECTION START ============*/
#projetos {
  width: var(--max-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

#projetos .projetos-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#projetos .projetos-title h2 {
  font-size: var(--h2-font-size);
}

#projetos .projetos-title span {
  font-size: var(--f2-font-size);
  color: var(--secondary-color);
}

#projetos .projetos-box {
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}

#projetos .slide-container {
  padding: 30px 0;
}

#projetos .slide-content {
  height: 69vh;
  margin: 0px 50px;
  padding: 10px;
  display: flex;
  overflow: hidden;
}

#projetos .card {
  position: relative;
  margin: auto 0;
  height: 66vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--tertiary-color);
  border: solid 1px transparent;
  filter: brightness(0.7);
  transition: 1s;
  border-radius: 5px;
  overflow: hidden;
}

#projetos .card:hover {
  border: solid 1px var(--primary-color);
  filter: brightness(1);
}

#projetos .card:hover img {
  transform: scale(1.1);
}

#projetos .card:hover .card-txt {
  transform: translateY(0px);
}

#projetos .card-img {
  width: 100%;
  height: 100%;
  z-index: -1;
}

#projetos .card-img img {
  position: absolute;
  height: 100%;
  width: 100%;
  transition: 1s;
}

#projetos .card-txt {
  color: var(--font-color);
  border-top: solid 1.5px var(--font-color);
  width: 100%;
  padding: 10px;
  text-align: center;
  transition: 0.5s;
  transform: translateY(500px);
  font-size: var(--f1-font-size);
}

#projetos .card-txt p {
  font-weight: 900;
}

#projetos .card-txt ion-icon {
  font-size: 1.5rem;
  margin-top: 5px;
}

#projetos .card-txt h3 {
  font-size: var(--fm1-font-size);
  font-weight: 900;
}

#projetos .card-txt h4 {
  font-size: var(--fm2-font-size);
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 15px;
}

#projetos .card-btns a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px auto;
  width: 80%;
}

#projetos .card-btns a button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 5px;
  margin: 2.5px 0;
  border-radius: 5px;
  background-color: var(--font-color);
  cursor: pointer;
  transition: ease-in-out 0.3s;
}

#projetos .card-btns a button:hover {
  transform: scale(1.1);
}

/*============ CARD ACTIVE START ============*/

#projetos .card-active a button {
  font-weight: var(--font-weight-700);
}

#projetos .card-active .card-txt {
  font-weight: var(--font-weight-900);
}

#projetos .swiper-navBtn {
  color: var(--primary-color);
  opacity: 0.5;
  transition: 0.5s;
}

#projetos .swiper-navBtn:hover {
  opacity: 1;
}

#projetos .swiper-navBtn::before,
#projetos .swiper-navBtn::after {
  font-size: 50px;
  font-weight: var(--font-weight-700);
}

#projetos .swiper-button-next {
  right: 0;
}

#projetos .swiper-button-prev {
  left: 0;
}

#projetos .swiper-pagination-bullet {
  background-color: var(--primary-color);
  border-radius: 0;
}

#projetos .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

/*============ CARD ACTIVE END ============*/

/*============ CARD 01 STYLE ============*/
#projetos .card01 {
  border: solid 1px transparent;
}

#projetos .card01:hover {
  border: solid 1px #ff4500;
}

#projetos .card01 .card-txt {
  background-color: #ff4500;
}

#projetos .card01 a button {
  color: #ff4500;
}

/*============ ============*/

/*============ PROJETOS SECTION END ============*/

/*============ PROJETOS RESPONSIVIDADE ============*/

@media screen and (max-width: 950px) {
  #projetos .projetos-title h2 {
    font-size: var(--fm1-font-size);
  }

  #projetos .projetos-title span {
    font-size: var(--fm3-font-size);
  }

  #projetos .projetos-box-card span {
    color: var(--primary-color);
    font-weight: var(--font-weight-700);
    font-size: var(--fm3-font-size);
  }

  #projetos .slide-content {
    margin: 0 10px;
  }

  #projetos .swiper-navBtn {
    display: none;
  }
}
