@charset "UTF-8";
.servicos .content {
  text-align: center;
}

.carousel {
  display: flex;
  width: 100%;
  height: 720px;
  align-items: center;
}
.carousel i {
  font-size: 42px;
  margin: 0px 120px 0px 120px;
  cursor: pointer;
}
.carousel__list {
  margin: 0 auto;
  display: flex;
  list-style: none;
  position: relative;
  width: 100%;
  height: 100%;
  justify-content: center;
  perspective: 300px;
}
.carousel__item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0px;
  width: 400px;
  height: 720px;
  border-radius: 12px;
  border: 2px solid #0e273c;
  box-shadow: 0px 16px 32px 0px rgba(50, 50, 50, 0.7);
  position: absolute;
  transition: all 0.3s ease-in;
}
.carousel__item:nth-child(1) {
  background-color: #fff;
  /* Estilos para o título */
  /* Estilos para o texto */
}
.carousel__item:nth-child(1) .card-content {
  /* Alinhar a imagem ao centro horizontalmente */
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 700px;
}
.carousel__item:nth-child(1) .card-image {
  width: 370px;
  max-height: 300px;
}
.carousel__item:nth-child(1) .logo-card {
  margin-top: 10px;
  width: 86px;
  height: 30px;
}
.carousel__item:nth-child(1) .card-title {
  letter-spacing: 1px;
  font-size: 48px;
  font-weight: 700;
  margin-top: 10px;
  color: #0e273c;
  font-family: "Kanit", sans-serif;
}
.carousel__item:nth-child(1) .card-text {
  font-size: 18px;
  margin: 0px 18px 10px 18px;
  text-align: center;
  color: #0e273c;
  font-family: "Kanit", sans-serif;
}
.carousel__item:nth-child(2) {
  background-color: #fff;
  /* Estilos para o título */
  /* Estilos para o texto */
}
.carousel__item:nth-child(2) .card-content {
  /* Alinhar a imagem ao centro horizontalmente */
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 700px;
}
.carousel__item:nth-child(2) .card-image {
  width: 370px;
  max-height: 300px;
}
.carousel__item:nth-child(2) .logo-card {
  margin-top: 10px;
  width: 86px;
  height: 30px;
}
.carousel__item:nth-child(2) .card-title {
  letter-spacing: 1px;
  font-size: 48px;
  font-weight: 700;
  margin-top: 10px;
  color: #0e273c;
  font-family: "Kanit", sans-serif;
}
.carousel__item:nth-child(2) .card-text {
  font-size: 18px;
  margin: 0px 18px 10px 18px;
  text-align: center;
  color: #0e273c;
  font-family: "Kanit", sans-serif;
}
.carousel__item:nth-child(3) {
  background-color: #fff;
  /* Estilos para o título */
  /* Estilos para o texto */
}
.carousel__item:nth-child(3) .card-content {
  /* Alinhar a imagem ao centro horizontalmente */
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 700px;
}
.carousel__item:nth-child(3) .card-image {
  width: 370px;
  max-height: 300px;
}
.carousel__item:nth-child(3) .logo-card {
  margin-top: 10px;
  width: 86px;
  height: 30px;
}
.carousel__item:nth-child(3) .card-title {
  letter-spacing: 1px;
  font-size: 48px;
  font-weight: 700;
  margin-top: 10px;
  color: #0e273c;
  font-family: "Kanit", sans-serif;
}
.carousel__item:nth-child(3) .card-text {
  font-size: 18px;
  margin: 0px 18px 10px 18px;
  text-align: center;
  color: #0e273c;
  font-family: "Kanit", sans-serif;
}
.carousel__item[data-pos="0"] {
  z-index: 5;
}
.carousel__item[data-pos="-1"], .carousel__item[data-pos="1"] {
  opacity: 0.7;
  filter: blur(1px) grayscale(10%);
}
.carousel__item[data-pos="-1"] {
  transform: translateX(-40%) scale(0.9);
  z-index: 4;
  cursor: pointer;
}
.carousel__item[data-pos="1"] {
  transform: translateX(40%) scale(0.9);
  z-index: 4;
  cursor: pointer;
}

.servicos button {
  font-weight: 550;
  margin: 40px 0 0 0;
  background-color: rgba(255, 196, 58, 0.9607843137);
  transform: translateX(5%) skewX(-20deg);
  padding: 12px 36px;
  font-size: 24px;
  border: none;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  transition: transform 0.2s ease, background-color 0.2s ease;
  width: 300px;
  box-shadow: inset 0px 0px 0px 0px rgba(255, 255, 255, 0.5), 7px 7px 20px 0px rgba(0, 0, 0, 0.5), 4px 4px 5px 0px rgba(0, 0, 0, 0.5);
}

.servicos button:hover {
  background-color: #ffc53a;
  transform: translateX(5%) skewX(-20deg) scale(1.05);
}

.servicos button span {
  display: inline-block;
  transform: skewX(20deg);
  font-weight: 700;
}

.servicos button span a {
  color: #0e273c;
  text-decoration: none;
}

@media (max-width: 1300px) {
  .servicos button {
    margin: 20px 0 0 0;
  }
  .carousel {
    margin: 0 auto;
    width: 78%;
    justify-content: center;
  }
  .carousel i {
    margin: 0px 20px 0px 20px;
  }
  .carousel__list {
    padding: 0;
    transform: scale(0.9);
  }
  .carousel .card-text {
    font-weight: 500;
  }
}
@media (max-width: 1024px) {
  .servicos button {
    margin: 15px 0px 0px -40px;
  }
  .carousel {
    margin: 0 auto;
    width: 78%;
    justify-content: center;
  }
  .carousel i {
    margin: 0px 0px 0px 0px;
    z-index: 10;
    background-color: rgba(50, 50, 50, 0.2);
    border-radius: 20px;
  }
  .carousel__list {
    padding: 0;
    transform: scale(0.9);
  }
  .carousel .card-text {
    font-weight: 500;
  }
}
@media (max-width: 767px) {
  .servicos button {
    margin: 70px 20px 0px 0px;
    padding: 12px 20px;
    width: 250px;
    font-size: 22px;
  }
  .carousel {
    height: 600px;
    margin: 0 auto;
    width: 80%;
    justify-content: center;
  }
  .carousel i {
    margin: 0px 0px 0px 0px;
    z-index: 10;
    background-color: rgba(50, 50, 50, 0.2);
    border-radius: 20px;
  }
  .carousel__list {
    padding: 0;
    transform: scale(0.7);
  }
  .carousel .card-text {
    font-weight: 500;
  }
}
@media (max-width: 550px) {
  .carousel {
    height: 600px;
  }
  .carousel i {
    margin: 80px -45px 0px -45px;
    z-index: 10;
    background-color: rgba(50, 50, 50, 0.2);
    border-radius: 20px;
  }
  .carousel__list {
    transform: scale(0.68);
  }
  .carousel__item[data-pos="-1"] {
    transform: translateX(-30%) scale(0.8);
  }
  .carousel__item[data-pos="1"] {
    transform: translateX(30%) scale(0.8);
  }
  .servicos button {
    padding: 8px 16px;
    width: 200px;
    margin: 90px 20px 0px 0px;
    font-size: 20px;
  }
}
@media (max-width: 399px) {
  .carousel {
    height: 600px;
  }
  .carousel i {
    margin: 80px -45px 0px -45px;
    z-index: 10;
    background-color: rgba(50, 50, 50, 0.2);
    border-radius: 20px;
  }
  .carousel__list {
    transform: scale(0.68);
  }
  .carousel__item[data-pos="-1"] {
    transform: translateX(-25%) scale(0.8);
  }
  .carousel__item[data-pos="1"] {
    transform: translateX(25%) scale(0.8);
  }
}
@media (max-width: 320px) {
  .carousel__item[data-pos="-1"] {
    transform: translateX(-18%) scale(0.8);
  }
  .carousel__item[data-pos="1"] {
    transform: translateX(18%) scale(0.8);
  }
}/*# sourceMappingURL=stylesCardsServicos.css.map */