#s3 {
  background: #080808;
  position: relative;
}

.s3-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 42%;
  height: 100%;
  background: #080808;
  display: flex;
  align-items: center;
  z-index: 2;
  padding: 0 5.5vw;
}

.s3-left-inner {
  width: 100%;
  max-width: 420px;
}

.s3-left h2 {
  margin-bottom: 2rem;
}

.s3-left p {
  font-size: clamp(13px, 1vw, 16px);
  color: rgba(240, 240, 240, 0.6);
  line-height: 1.75;
  margin-bottom: 0;
}

.s3-second {
  margin-top: 1.2rem !important;
  color: rgba(240, 240, 240, 0.4) !important;
  font-style: italic;
}

.s3-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 58%;
  height: 100%;
  background-image: url('../../assets/fundo-mkt.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}

.s3-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 8, 8, 1) 0%,
    rgba(255, 106, 0, 0.15) 40%,
    rgba(255, 106, 0, 0.35) 100%
  );
}

@media (max-width: 900px) {
  #s3 {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .s3-right {
    order: -1;
    position: relative;
    width: 100%;
    height: 45vh;
  }

  .s3-img-overlay {
    background: linear-gradient(to bottom, #080808 0%, transparent 30%, transparent 65%, #080808 100%);
  }

  .s3-left {
    position: relative;
    width: 100%;
    height: auto;
    padding: 20px 5.5vw 60px;
  }

  #s3 .s3-left-inner {
    max-width: 100%;
  }
}
