/* theme/assets/pages/css/index.scss */
.caminhoes-parent {
  display: flex;
  gap: 30px;
  margin-top: 85px;
}
.caminhoes-parent .bolinha {
  aspect-ratio: 1/1;
  width: 65px;
  height: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -30px;
  position: relative;
  z-index: 1;
}
.caminhoes-parent .card-parent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.caminhoes-parent .img:not(.bolinha) {
  overflow: hidden;
}
.caminhoes-parent .img:not(.bolinha) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}
.caminhoes-parent .img:not(.bolinha) img:hover {
  scale: 1.1;
}
.caminhoes-parent .whats-href {
  display: flex;
  gap: 8px;
  align-items: center;
  background: #00AD00;
  width: 100%;
  height: 40px;
  box-sizing: border-box;
  justify-content: center;
  font: 500 15.81px montserrat;
  color: #fff;
  border-radius: 20px;
  transition: 0.4s ease;
}
.caminhoes-parent .whats-href:hover {
  cursor: pointer;
  box-shadow: 0 0 10px 0 #7a7a7a;
  background-color: #000;
}
.caminhoes-parent .titulo {
  font: 800 18.9px montserrat;
}

.contato-bg {
  margin: 55px 0 105px;
}

.contato {
  display: flex;
  gap: 90px;
  justify-content: space-between;
}
.contato .whats-href {
  background: #009966;
  width: 100%;
  color: #fff;
}
.contato .telefone {
  background: #CF0000;
  width: 100%;
  color: #fff;
}
.contato .item {
  display: flex;
  transition: 0.4s ease;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font: 800 34.65px/1.25 montserrat;
  text-align: center;
  padding: 35px 0;
  gap: 15px;
}
.contato .item:hover {
  cursor: pointer;
  box-shadow: 0 0 10px 0 #7a7a7a;
  background-color: #000;
}

.sobre-bg {
  padding: 70px 0 85px;
  background: url(../theme/assets/img/sobre.jpg) no-repeat center center;
}

.sobre {
  display: flex;
}
.sobre .img {
  display: flex;
  align-items: center;
  padding: 15px;
  background: #fff;
  position: relative;
}
.sobre .img::after {
  content: "";
  position: absolute;
  left: -13px;
  top: -13px;
  width: 70px;
  height: auto;
  aspect-ratio: 1/1;
  background: #F5A008;
}
.sobre .img img {
  position: relative;
  z-index: 2;
}
.sobre .right {
  padding-left: 80px;
}
.sobre .right .titulo {
  text-transform: uppercase;
  font: 800 46.65px/1 montserrat;
  color: #fff;
  margin-bottom: 40px;
}
.sobre .right .titulo span {
  color: #F5A008;
}
.sobre .right .texto {
  font: 400 14.17px/1.5 montserrat;
  color: #fff;
}

@media (max-width: 1250px) {
  .caminhoes-parent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }
  .contato-bg {
    margin: 40px 0;
  }
  .contato {
    gap: 40px;
  }
  .sobre .right {
    padding-left: 40px;
  }
}
@media (max-width: 990px) {
  .contato {
    flex-direction: column;
  }
  .sobre-bg {
    background: #3378B9;
    background-image: none;
  }
  .sobre {
    flex-direction: column-reverse;
    gap: 60px;
  }
  .sobre .right {
    padding: 0;
    text-align: center;
  }
  .sobre .img {
    justify-content: center;
    width: 525px;
    margin: 0 auto;
    max-width: 90%;
  }
  .sobre .img img {
    width: 100%;
    object-fit: contain;
    height: 100%;
  }
}
@media (max-width: 600px) {
  .contato .item {
    font-size: 26px;
  }
  .sobre-bg {
    padding: 45px 0;
  }
  .caminhoes-parent {
    grid-template-columns: 1fr;
  }
}
