.secao-conteudo-imagem {
  .wrapper-mobile {
    @media (min-width: 1025px) {
      display: none;
    }
  }

  .card-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;

    @media (max-width: 1024px) {
      flex-direction: column;
      gap: 0;
    }
    @media (min-width: 1024px) and (max-width: 1200px) {
      gap: 2rem;
    }

    > div {
      flex: 1;

      &.ci-left {
        max-width: clamp(600px, 49vw, 781px);
        position: relative;
        padding-left: 133px;

        * {
          margin: 0;
        }

        @media (max-width: 1024px) {
          max-width: 100%;
          padding-inline: 16px;
          text-align: center;
          padding-bottom: var(--pb-mob);
        }

        @media screen and (min-width: 768px) and (max-width: 1023px) {
          max-width: 500px;
        }

        @media (min-width: 1024px) and (max-width: 1200px) {
          max-width: 45%;
          padding-left: 0;
          text-align: center;
          display: flex;
          flex-direction: column;
          align-items: center;
        }

        @media (min-width: 1024px) {
          min-width: 405px;

          &::before {
            content: "";
            height: 3px;
            background-color: #000;
            position: absolute;
            top: 0;
            width: 80px;
            left: 0;
          }
        }

        @media (min-width: 1024px) and (max-width: 1200px) {
          &::before {
            display: none;
          }
        }

        img {
          max-width: 100%;
          margin-inline: auto;
        }
      }

      &.ci-right {
        max-width: 58%;
        display: flex;
        align-items: stretch;
        @media (max-width: 1024px) {
          display: none;
        }
        @media (min-width: 1024px) and (max-width: 1200px) {
          max-width: 60%;
        }
        img {
          width: 100%;
          @media (min-width: 1024px) {
            min-height: 420px;
            object-fit: cover;
          }
        }
      }
    }
  }

  .ci-title,
  .ci-texto-aux,
  .ci-content {
    padding-bottom: 2rem;

    @media (max-width: 1024px) {
      padding-bottom: 1rem;
    }
  }

  .ci-subtitle {
    padding-bottom: 0.55rem;

    @media (max-width: 1024px) {
      padding-top: 1rem;
    }
  }

  .ci-title {
    font-size: clamp(28px, 4vw, 60px);
    font-family: "Munich";
    color: #1f242a;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 400;
  }

  & .ci-title {
    @media screen and (min-width: 768px) and (max-width: 1023px) {
      font-size: clamp(40px, 6vw, 80px);
      max-width: 100%;
    }

    @media screen and (min-width: 842px) and (max-width: 1100px) {
      font-size: clamp(35px, 5vw, 70px);
      max-width: 100%;
    }
  }

  .ci-title-tablet {
    display: none !important;

    @media screen and (min-width: 768px) and (max-width: 1100px) {
      display: block !important;
    }
  }

  .ci-title-default {
    display: block;

    @media screen and (min-width: 768px) and (max-width: 1100px) {
      display: none !important;
    }
  }

  .ci-subtitle {
    font-family: "Creato Display";
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    line-height: 1;
  }

  .ci-texto-aux {
    font-family: "Creato Display";
    font-weight: 400;
    font-size: 18px;
    color: #1f242a;
    line-height: 1;
  }

  .ci-content {
    font-family: "Creato Display";
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 0.36px;
    color: #1f242a;
  }

  .ci-btn {
    width: 100%;
    max-width: 234px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    font-family: "Creato Display";
    font-weight: 500;
    font-size: 16.06px;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    margin-bottom: 0;
    background-color: #1f242a !important;
    color: #fff !important;

    @media (max-width: 1024px) {
      max-width: 100%;
    }

    @media screen and (min-width: 768px) and (max-width: 1023px) {
      margin-bottom: 2.5rem;
    }

    @media (min-width: 1024px) and (max-width: 1200px) {
      margin-left: auto;
      margin-right: auto;
    }
  }

  .ci-swiper-nav {
    display: none;
    justify-content: center;
    gap: 16px;
    margin-top: 2rem;

    @media (max-width: 1024px) {
      display: flex;
    }

    @media screen and (min-width: 768px) and (max-width: 1024px) {
      margin-top: 2rem !important;
    }

    @media screen and (max-width: 767px) {
      margin-top: 2rem !important;
    }
  }

  .ci-swiper-button-prev,
  .ci-swiper-button-next {
    width: 40px;
    height: 40px;
    border: 1px solid #1f242a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
  }

  .swiper-pagination {
    text-align: end;
    padding-right: 5rem;

    @media (max-width: 767px) {
      display: none;
    }

    @media screen and (min-width: 768px) and (max-width: 1023px) {
      display: block !important;
      bottom: -10px !important;
    }

    .swiper-pagination-bullet {
      background: #ffffff7a;
      width: 8px;
      height: 8px;

      &.swiper-pagination-bullet-active {
        width: 24px;
        border-radius: 300px;
      }
    }
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .swiper-button-prev {
    left: calc(50% - 28px);
  }

  .swiper-button-next {
    left: calc(50% + 28px);
  }


}

