#nossos-servicos {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      min-height: 100%;
      height: 100vh;
      overflow: hidden;
      padding: 0 1rem;
}

.servicos {
      display: flex;
      align-items: center;
      justify-content: center;
}

.titulo-servicos {
      font-weight: bold;
      font-family: "Sora", Poppins;
      color: #1e3c72;
      text-shadow: 1px 4px 10px rgba(12, 7, 7, 0.219);
      font-size: 3rem;
}

.sub-titulo-servicos {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-block: 5px;
}

.sub-titulo-servicos>h2 {
      color: rgb(68, 68, 68);
      animation-duration: 2s;
      font-size: 2.5rem;
}

#troca-texto {
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%), radial-gradient(at top center, rgba(255, 255, 255, 0.40) 0%, rgba(0, 0, 0, 0.40) 120%) #989898;
      background-blend-mode: multiply, multiply;
      color: #f1f1f1;
      padding: 8px;
      border-radius: 5px;
      display: inline-block;
      min-width: 300px;
}

.slide-container {
      max-width: 1120px;
      width: 100%;
      padding: 40px 0;
}

.slide-content {
      margin: 0 40px;
      overflow: hidden;
      border-radius: 25px;
}

.card {
      border-radius: 25px;
      background-color: #fff;
}

.image-content,
.card-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 10px 14px;
}

.image-content {
      position: relative;
      row-gap: 5px;
      padding: 25px 0;
}

.overlay-servicos {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 100%;
      background-image: linear-gradient(to top, #1e3c72 0%, #1e3c72 1%, #2a5298 100%);
      border-radius: 25px 25px 0 25px;
}

.overlay-servicos::before,
.overlay-servicos::after {
      content: '';
      position: absolute;
      right: 0;
      bottom: -40px;
      height: 40px;
      width: 40px;
      background-color: #1e3c72;
}

.overlay-servicos::after {
      border-radius: 0 25px 0 0;
      background-color: #FFF;
}

.card-image {
      position: relative;
      height: 150px;
      width: 150px;
      border-radius: 50%;
      padding: 3px;
}

.card-image .card-img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      border-radius: 50%;
      border: 4px solid #1e3c72;
}

.name {
      font-size: 18px;
      font-weight: 500;
      color: #333;
}

.description {
      font-size: 14px;
      color: #707070;
      text-align: center;
}

.button-saiba {
      padding: 10px 10px;
      border: none;
      border-radius: 5px;
      font-weight: bold;
      letter-spacing: 5px;
      text-transform: uppercase;
      cursor: pointer;
      color: #1e3c72;
      transition: all 1000ms;
      font-size: 15px;
      position: relative;
      overflow: hidden;
      outline: 2px solid #1e3c72;
}

.button-saiba:hover {
      color: #ffffff;
      transform: scale(1.05);
      outline: 2px solid #1e3c72;
      box-shadow: 4px 5px 17px -4px #1e3c72;
}

.button-saiba::before {
      content: "";
      position: absolute;
      left: -50px;
      top: 0;
      width: 0;
      height: 100%;
      background-color: #1e3c72;
      transform: skewX(45deg);
      z-index: -1;
      transition: width 1000ms;
}

.button-saiba:hover::before {
      width: 200%;
}

.swiper-navBtn {
      color: #1e3c72;
      transition: color 0.3s ease;
}

.swiper-navBtn:hover {
      color: #1e3c72;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
      font-size: 35px;
}

.swiper-button-next {
      right: 0;
}

.swiper-button-prev {
      left: 0;
}

.swiper-pagination-bullet {
      background-color: #1e3c72;
      opacity: 1;
}

.swiper-pagination-bullet-active {
      background-color: #1e3c72;
}


@media (max-width: 1024px) {

      #nossos-servicos {
            height: 100%;
            overflow: hidden;
      }

      .titulo-servicos {
            font-size: 2rem;
      }

      .sub-titulo-servicos>h2 {
            padding: 10px;
            font-size: 28px;
            text-align: left;

      }

      .slide-content {
            margin: 0 10px;
      }

      .swiper-navBtn {
            display: none;
      }

      #troca-texto {
            text-align: left !important;
            padding: 5px;
            border-radius: 5px;
            min-width: 180px;
      }
}