/* AVANTHY LIGHT WATERMARKS V2 — INÍCIO */

/*
 * Círculos grandes preenchidos e transparentes.
 * Sem neon, brilho, bordas acesas ou sombras.
 */

.executive-overview,
.solutions-section,
.benefits-section,
.avt-journey,
.faq-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.executive-overview > *:not(.avt-light-watermark),
.solutions-section > *:not(.avt-light-watermark),
.benefits-section > *:not(.avt-light-watermark),
.avt-journey > *:not(.avt-light-watermark),
.faq-section > *:not(.avt-light-watermark) {
  position: relative;
  z-index: 1;
}

.avt-light-watermark {
  position: absolute;
  z-index: 0;
  display: block;
  width: 520px;
  height: 520px;
  background: rgba(0, 101, 163, 0.035);
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  pointer-events: none;
  user-select: none;
}

.avt-light-watermark::before {
  content: "";
  position: absolute;
  inset: 85px;
  background: rgba(0, 101, 163, 0.027);
  border: 0;
  border-radius: 50%;
  box-shadow: none;
}

.avt-light-watermark::after {
  content: "";
  position: absolute;
  inset: 180px;
  background: rgba(255, 102, 0, 0.025);
  border: 0;
  border-radius: 50%;
  box-shadow: none;
}

.avt-watermark-right {
  top: -255px;
  right: -245px;
}

.avt-watermark-left {
  bottom: -275px;
  left: -245px;
}

@media (max-width: 760px) {
  .avt-light-watermark {
    width: 340px;
    height: 340px;
  }

  .avt-light-watermark::before {
    inset: 58px;
  }

  .avt-light-watermark::after {
    inset: 122px;
  }

  .avt-watermark-right {
    top: -170px;
    right: -190px;
  }

  .avt-watermark-left {
    bottom: -190px;
    left: -190px;
  }
}

/* AVANTHY LIGHT WATERMARKS V2 — FIM */
