/* =========================================================
   OPIX — INDIQUE E GANHE
   ========================================================= */

.indique-page {
  --indique-dark: #190024;
  --indique-dark-2: #2c053d;
  --indique-purple: #8d0fc0;
  --indique-purple-2: #bb18e5;
  --indique-pink: #ef4bd5;
  --indique-soft: #fbf8fd;
}


/* =========================================================
   HERO
   ========================================================= */

.indique-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;

  display: flex;
  align-items: center;

  color: #fff;

  background:
    radial-gradient(
      circle at 76% 25%,
      rgba(188, 32, 232, .30),
      transparent 28%
    ),
    linear-gradient(
      125deg,
      #15001f 0%,
      #28003b 48%,
      #4b0962 100%
    );
}


.indique-hero::before {
  content: "";

  position: absolute;

  width: 760px;
  height: 280px;

  right: -180px;
  top: 145px;

  border:
    2px solid
    rgba(226, 93, 255, .32);

  border-radius: 50%;

  transform:
    rotate(-13deg);

  pointer-events: none;

  animation:
    indiqueOrbit
    8s
    ease-in-out
    infinite
    alternate;
}


.indique-hero::after {
  content: "";

  position: absolute;

  width: 480px;
  height: 480px;

  right: -230px;
  top: -250px;

  border-radius: 50%;

  pointer-events: none;

  background:
    radial-gradient(
      circle,
      rgba(239, 75, 213, .24),
      transparent 68%
    );

  animation:
    indiqueAmbient
    10s
    ease-in-out
    infinite
    alternate;
}


@keyframes indiqueOrbit {
  from {
    transform:
      translate3d(-20px, 8px, 0)
      rotate(-15deg)
      scale(.98);

    opacity: .55;
  }

  to {
    transform:
      translate3d(55px, -14px, 0)
      rotate(-9deg)
      scale(1.04);

    opacity: 1;
  }
}


@keyframes indiqueAmbient {
  from {
    transform:
      translate3d(0,0,0)
      scale(1);
  }

  to {
    transform:
      translate3d(-85px,65px,0)
      scale(1.17);
  }
}


.indique-hero-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 1.08fr)
    minmax(340px, .92fr);

  gap: 75px;

  align-items: center;
}


.indique-eyebrow {
  display: inline-flex;

  padding: 9px 15px;

  margin-bottom: 22px;

  border:
    1px solid
    rgba(255,255,255,.17);

  border-radius: 999px;

  background:
    rgba(255,255,255,.09);

  color:
    #f6dfff;

  font-size: .77rem;
  font-weight: 900;

  letter-spacing: .075em;

  text-transform: uppercase;
}


.indique-hero h1 {
  margin: 0;

  max-width: 720px;

  color: #fff;

  font-size:
    clamp(
      3.1rem,
      6vw,
      5.5rem
    );

  line-height: .93;

  letter-spacing: -.055em;
}


.indique-hero h1 strong {
  display: block;

  color:
    #e64bdc;

  font-weight: 900;
}


.indique-hero-copy {
  max-width: 650px;

  margin: 28px 0 0;

  color:
    rgba(255,255,255,.79);

  font-size: 1.07rem;

  line-height: 1.65;
}


.indique-hero-copy strong {
  color: #fff;
}


.indique-actions {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 30px;
}


/* =========================================================
   CARD VISUAL HERO
   ========================================================= */

.indique-visual {
  display: flex;
  justify-content: center;

  perspective: 1200px;
}


.indique-social-card {
  position: relative;

  width: min(100%, 390px);

  overflow: hidden;

  border:
    1px solid
    rgba(255,255,255,.18);

  border-radius: 28px;

  background: #fff;

  color: #2a0438;

  box-shadow:
    0 35px 90px
    rgba(0,0,0,.30);

  animation:
    indiqueCardFloat
    5s
    ease-in-out
    infinite;
}


@keyframes indiqueCardFloat {
  0%,
  100% {
    transform:
      translateY(0)
      rotate(.2deg);
  }

  50% {
    transform:
      translateY(-11px)
      rotate(-.35deg);
  }
}


.indique-social-head {
  display: flex;

  align-items: center;

  gap: 11px;

  height: 67px;

  padding: 0 18px;

  background: #fff;
}


.indique-social-logo {
  width: 37px;
  height: 37px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #fff;

  background:
    linear-gradient(
      145deg,
      #c52be8,
      #710894
    );

  font-size: .76rem;
  font-weight: 900;
}


.indique-social-head strong {
  font-size: .94rem;
}


.indique-social-menu {
  margin-left: auto;

  color: #8c7894;

  letter-spacing: .15em;
}


.indique-social-body {
  position: relative;

  min-height: 370px;

  display: grid;
  place-items: center;

  padding: 42px 28px;

  text-align: center;

  color: #fff;

  background:
    radial-gradient(
      circle at 50% 25%,
      rgba(245, 100, 231, .36),
      transparent 32%
    ),
    linear-gradient(
      155deg,
      #bc19d8 0%,
      #7e0cab 48%,
      #3d0756 100%
    );
}


.indique-social-body::before {
  content: "";

  position: absolute;

  width: 280px;
  height: 100px;

  border:
    2px solid
    rgba(255,255,255,.18);

  border-radius: 50%;

  transform:
    rotate(-18deg);

  animation:
    indiqueMiniOrbit
    5.5s
    ease-in-out
    infinite
    alternate;
}


@keyframes indiqueMiniOrbit {
  from {
    transform:
      translateX(-15px)
      rotate(-21deg);
  }

  to {
    transform:
      translateX(18px)
      rotate(-13deg);
  }
}


.indique-social-content {
  position: relative;
  z-index: 2;
}


.indique-social-content small {
  display: block;

  margin-bottom: 10px;

  font-weight: 800;

  letter-spacing: .07em;

  text-transform: uppercase;

  opacity: .82;
}


.indique-social-content strong {
  display: block;

  font-size: 4.6rem;

  line-height: .9;
}


.indique-social-content span {
  display: block;

  margin-top: 13px;

  font-size: 1.35rem;
  font-weight: 800;

  line-height: 1.1;
}


.indique-social-footer {
  padding: 17px 19px;

  color: #71547b;

  font-size: .83rem;
}


/* =========================================================
   COMO FUNCIONA
   ========================================================= */

.indique-how {
  background: #fff;
}


.indique-section-head {
  max-width: 720px;

  margin:
    0 auto 55px;

  text-align: center;
}


.indique-section-head .eyebrow {
  margin-bottom: 12px;
}


.indique-section-head h2 {
  margin: 0;

  color: #270036;

  font-size:
    clamp(
      2rem,
      4vw,
      3.2rem
    );

  line-height: 1.04;

  letter-spacing: -.035em;
}


.indique-section-head p {
  margin: 15px auto 0;

  color: var(--muted);

  line-height: 1.6;
}


.indique-steps {
  position: relative;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 24px;
}


.indique-steps::before {
  content: "";

  position: absolute;

  top: 25px;
  left: 16%;
  right: 16%;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(166,29,210,.24),
      rgba(166,29,210,.24),
      transparent
    );
}


.indique-step {
  position: relative;

  padding:
    50px 30px 32px;

  min-height: 240px;

  text-align: center;

  border:
    1px solid
    rgba(113, 31, 143, .11);

  border-radius: 25px;

  background:
    linear-gradient(
      180deg,
      #fff,
      #fcf8fe
    );

  box-shadow:
    0 18px 42px
    rgba(49, 8, 66, .06);

  transition:
    transform .28s ease,
    box-shadow .28s ease;
}


@media (hover:hover) {
  .indique-step:hover {
    transform:
      translateY(-7px);

    box-shadow:
      0 26px 55px
      rgba(49,8,66,.10);
  }
}


.indique-step-number {
  position: absolute;

  top: -20px;
  left: 50%;

  width: 43px;
  height: 43px;

  display: grid;
  place-items: center;

  transform:
    translateX(-50%);

  border-radius: 50%;

  color: #fff;

  background:
    linear-gradient(
      145deg,
      #d329ed,
      #840db1
    );

  box-shadow:
    0 8px 22px
    rgba(165, 24, 208, .27);

  font-weight: 900;
}


.indique-step-icon {
  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  margin: 0 auto 20px;

  border-radius: 18px;

  color: #8612ae;

  background: #f3e4f9;

  font-size: 1.5rem;

  transition:
    transform .25s ease;
}


.indique-step:hover
.indique-step-icon {
  transform:
    scale(1.08)
    rotate(-3deg);
}


.indique-step h3 {
  margin: 0;

  color: #2a0039;

  font-size: 1.25rem;
}


.indique-step p {
  margin:
    10px 0 0;

  color: var(--muted);

  line-height: 1.55;
}


/* =========================================================
   50% SECTION
   ========================================================= */

.indique-discount {
  position: relative;

  overflow: hidden;

  text-align: center;

  color: #fff;

  background:
    linear-gradient(
      135deg,
      #180020,
      #2b043c
    );
}


.indique-discount::before {
  content: "";

  position: absolute;

  width: 700px;
  height: 240px;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%,-50%)
    rotate(-10deg);

  border:
    2px solid
    rgba(220, 65, 250, .15);

  border-radius: 50%;

  animation:
    indiqueDiscountOrbit
    8s
    ease-in-out
    infinite
    alternate;
}


@keyframes indiqueDiscountOrbit {
  from {
    transform:
      translate(-54%,-50%)
      rotate(-14deg);
  }

  to {
    transform:
      translate(-46%,-53%)
      rotate(-7deg);
  }
}


.indique-discount-content {
  position: relative;
  z-index: 2;

  max-width: 800px;

  margin: auto;

  padding:
    36px 0;
}


.indique-discount h2 {
  margin: 0;

  color: #fff;

  font-size:
    clamp(
      3rem,
      7vw,
      5.6rem
    );

  line-height: .98;

  letter-spacing: -.045em;
}


.indique-discount h2 strong {
  color: #e744d4;
}


.indique-discount p {
  max-width: 620px;

  margin:
    22px auto 0;

  color:
    rgba(255,255,255,.78);

  font-size: 1.08rem;

  line-height: 1.6;
}


.indique-discount .btn {
  margin-top: 28px;
}


/* =========================================================
   REGRAS
   ========================================================= */

.indique-rules {
  background: var(--indique-soft);
}


.indique-rules-list {
  max-width: 850px;

  display: grid;

  gap: 14px;

  margin: auto;
}


.indique-rule {
  display: grid;

  grid-template-columns:
    45px 1fr;

  gap: 16px;

  align-items: center;

  padding:
    20px 22px;

  border:
    1px solid
    rgba(77, 25, 97, .09);

  border-radius: 18px;

  background: #fff;

  box-shadow:
    0 10px 28px
    rgba(46, 7, 63, .045);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}


@media (hover:hover) {
  .indique-rule:hover {
    transform:
      translateX(5px);

    box-shadow:
      0 15px 35px
      rgba(46,7,63,.075);
  }
}


.indique-rule-check {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  color: #7810a0;

  background: #f0def7;

  font-weight: 900;
}


.indique-rule strong {
  display: block;

  color: #2a0039;
}


.indique-rule span:last-child {
  display: block;

  margin-top: 3px;

  color: var(--muted);

  font-size: .91rem;

  line-height: 1.45;
}


/* =========================================================
   CTA FINAL
   ========================================================= */

.indique-final {
  text-align: center;

  background: #fff;
}


.indique-final-box {
  padding:
    45px;

  border-radius: 30px;

  color: #fff;

  background:
    linear-gradient(
      135deg,
      #7e0da6,
      #4d086a
    );

  box-shadow:
    0 24px 65px
    rgba(73, 8, 96, .16);
}


.indique-final-box h2 {
  margin: 0;

  color: #fff;

  font-size:
    clamp(
      2rem,
      4vw,
      3.2rem
    );
}


.indique-final-box p {
  max-width: 650px;

  margin:
    14px auto 0;

  color:
    rgba(255,255,255,.80);
}


.indique-final-box .btn {
  margin-top: 24px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

  .indique-hero {
    min-height: auto;
  }


  .indique-hero-grid {
    grid-template-columns: 1fr;

    gap: 45px;

    padding:
      65px 0;
  }


  .indique-visual {
    max-width: 430px;

    margin: auto;

    width: 100%;
  }


  .indique-steps {
    grid-template-columns: 1fr;

    gap: 40px;
  }


  .indique-steps::before {
    display: none;
  }

}


@media (max-width: 600px) {

  .indique-hero h1 {
    font-size: 3rem;
  }


  .indique-social-body {
    min-height: 300px;
  }


  .indique-social-content strong {
    font-size: 3.8rem;
  }


  .indique-final-box {
    padding:
      34px 23px;
  }

}


/* =========================================================
   ACESSIBILIDADE
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .indique-hero::before,
  .indique-hero::after,
  .indique-social-card,
  .indique-social-body::before,
  .indique-discount::before {
    animation: none !important;
  }

}


/* =========================================================
   OPIX INDIQUE MODAL V1
   ========================================================= */

body.indique-modal-open {
  overflow: hidden;
}


.indique-modal[hidden] {
  display: none !important;
}


.indique-modal {
  position: fixed;
  inset: 0;

  z-index: 9999;

  display: grid;
  place-items: center;

  padding: 22px;
}


.indique-modal-backdrop {
  position: absolute;
  inset: 0;

  background:
    rgba(22, 0, 31, .72);

  backdrop-filter:
    blur(8px);
}


.indique-modal-dialog {
  position: relative;
  z-index: 2;

  width: min(100%, 520px);
  max-height: calc(100vh - 44px);

  overflow-y: auto;

  padding: 34px;

  border:
    1px solid
    rgba(133, 27, 169, .12);

  border-radius: 28px;

  background:
    #ffffff;

  box-shadow:
    0 38px 110px
    rgba(20, 0, 27, .34);

  animation:
    indiqueModalIn
    .38s
    cubic-bezier(.16,1,.3,1)
    both;
}


@keyframes indiqueModalIn {

  from {
    opacity: 0;

    transform:
      translateY(22px)
      scale(.975);
  }

  to {
    opacity: 1;

    transform:
      translateY(0)
      scale(1);
  }

}


.indique-modal-close {
  position: absolute;

  top: 16px;
  right: 18px;

  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  padding: 0;

  border: 0;
  border-radius: 50%;

  background:
    #f5eef8;

  color:
    #54106e;

  cursor: pointer;

  font-size: 1.5rem;

  transition:
    transform .2s ease,
    background-color .2s ease;
}


.indique-modal-close:hover {
  transform:
    rotate(5deg)
    scale(1.05);

  background:
    #ecdaf3;
}


.indique-modal-brand {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 27px;
}


.indique-modal-brand > span {
  padding: 8px 11px;

  border-radius: 11px;

  color: #fff;

  background:
    linear-gradient(
      135deg,
      #a515d4,
      #651087
    );

  font-size: .75rem;
  font-weight: 900;
}


.indique-modal-brand small {
  color: #735a7d;

  font-weight: 800;
}


.indique-modal-eyebrow {
  display: inline-block;

  margin-bottom: 10px;

  color:
    #9415bd;

  font-size: .76rem;
  font-weight: 900;

  letter-spacing: .05em;

  text-transform: uppercase;
}


.indique-modal-step h2 {
  margin:
    0 0 10px;

  color:
    #2b0039;

  font-size:
    clamp(1.65rem, 4vw, 2.2rem);

  line-height:
    1.08;

  letter-spacing:
    -.03em;
}


.indique-modal-step > p {
  margin:
    0 0 25px;

  color:
    #735f7b;

  line-height:
    1.55;
}


.indique-modal-field {
  margin-bottom:
    17px;
}


.indique-modal-field label {
  display: block;

  margin-bottom:
    7px;

  color:
    #3d184a;

  font-size:
    .82rem;

  font-weight:
    800;
}


.indique-modal-field input {
  width: 100%;

  min-height: 51px;

  padding:
    0 15px;

  border:
    1px solid
    #e2d4e7;

  border-radius:
    13px;

  outline:
    none;

  background:
    #fff;

  color:
    #2b0837;

  font: inherit;

  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}


.indique-modal-field input:focus {
  border-color:
    #a61bd4;

  box-shadow:
    0 0 0 4px
    rgba(166, 27, 212, .09);
}


.indique-modal-submit {
  width: 100%;

  margin-top: 3px;
}


.indique-modal-status {
  min-height: 21px;

  margin:
    -3px 0 13px;

  font-size:
    .83rem;

  line-height:
    1.4;
}


.indique-modal-status.is-error {
  color:
    #b42318;
}


.indique-modal-status.is-success {
  color:
    #147846;
}


.indique-client-ok {
  display: inline-flex;

  align-items: center;

  gap: 7px;

  margin-bottom: 13px;

  padding:
    8px 12px;

  border-radius:
    999px;

  color:
    #147846;

  background:
    #e9f8ef;

  font-size:
    .78rem;

  font-weight:
    900;
}


.indique-consent {
  display: grid;

  grid-template-columns:
    20px 1fr;

  gap: 10px;

  align-items: start;

  margin:
    5px 0 18px;

  color:
    #695572;

  font-size:
    .82rem;

  line-height:
    1.45;

  cursor: pointer;
}


.indique-consent input {
  width: 17px;
  height: 17px;

  margin-top: 2px;

  accent-color:
    #8c13b5;
}


.indique-modal-actions {
  display: grid;

  grid-template-columns:
    .7fr 1.3fr;

  gap: 11px;
}


.indique-back {
  border:
    1px solid
    #dbcce0;

  background:
    #fff;

  color:
    #572166;
}


.indique-success {
  text-align: center;
}


.indique-success-icon {
  width: 68px;
  height: 68px;

  display: grid;
  place-items: center;

  margin:
    0 auto 20px;

  border-radius: 50%;

  color:
    #fff;

  background:
    linear-gradient(
      135deg,
      #af24d9,
      #6c0d8e
    );

  box-shadow:
    0 16px 38px
    rgba(145, 23, 183, .25);

  font-size:
    1.6rem;

  font-weight:
    900;
}


.indique-success-note {
  padding:
    15px;

  border-radius:
    14px;

  background:
    #f7effa;

  color:
    #5e4268 !important;

  font-size:
    .88rem;
}


.indique-hp {
  position: absolute !important;

  width: 1px !important;
  height: 1px !important;

  overflow: hidden !important;

  clip:
    rect(0,0,0,0) !important;

  white-space:
    nowrap !important;
}


@media (max-width: 600px) {

  .indique-modal {
    padding:
      10px;
  }


  .indique-modal-dialog {
    max-height:
      calc(100vh - 20px);

    padding:
      28px 21px;

    border-radius:
      23px;
  }


  .indique-modal-actions {
    grid-template-columns:
      1fr;
  }

}


@media (prefers-reduced-motion: reduce) {

  .indique-modal-dialog {
    animation:
      none !important;
  }

}

/* ===== OPIX INDIQUE LAYOUT V2 START ===== */

.opix-referral {
  --opix-violet: #7c3aed;
  --opix-violet-soft: #a875ff;
  --opix-ink: #11101a;
  --opix-muted: #6e6a7b;
  --opix-line: rgba(124, 58, 237, .16);
  --opix-surface: #f8f7fb;
  overflow: hidden;
}


/* HERO */

.opix-ref-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 78% 34%,
      rgba(124, 58, 237, .17),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 76%,
      rgba(168, 117, 255, .10),
      transparent 24%
    ),
    linear-gradient(
      135deg,
      #fbfaff 0%,
      #ffffff 46%,
      #f7f3ff 100%
    );
}

.opix-ref-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(
      rgba(124, 58, 237, .045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(124, 58, 237, .045) 1px,
      transparent 1px
    );
  background-size: 46px 46px;
  mask-image:
    linear-gradient(
      to right,
      transparent,
      #000 46%,
      #000
    );
}

.opix-ref-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns:
    minmax(0, 1.02fr)
    minmax(420px, .98fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
  padding-top: 86px;
  padding-bottom: 86px;
}

.opix-ref-copy {
  max-width: 690px;
}

.opix-ref-kicker,
.opix-ref-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--opix-violet);
}

.opix-ref-kicker {
  padding: 9px 13px;
  border: 1px solid rgba(124, 58, 237, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 10px 30px rgba(44, 24, 82, .06);
}

.opix-ref-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--opix-violet);
  box-shadow:
    0 0 0 5px rgba(124, 58, 237, .10);
}

.opix-ref-copy h1 {
  margin: 24px 0 22px;
  max-width: 760px;
  font-size: clamp(46px, 5.35vw, 78px);
  line-height: .97;
  letter-spacing: -.055em;
  font-weight: 850;
  color: var(--opix-ink);
}

.opix-ref-copy h1 span {
  display: block;
  color: var(--opix-violet);
}

.opix-ref-lead {
  max-width: 630px;
  margin: 0;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.68;
  color: var(--opix-muted);
}

.opix-ref-lead strong {
  color: var(--opix-ink);
  font-weight: 780;
}

.opix-ref-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.opix-ref-primary {
  gap: 14px;
  min-height: 54px;
  padding-inline: 25px;
}

.opix-ref-primary span {
  font-size: 20px;
  line-height: 1;
  transition: transform .25s ease;
}

.opix-ref-primary:hover span {
  transform: translateX(4px);
}

.opix-ref-secondary {
  position: relative;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 750;
  color: var(--opix-ink);
  text-decoration: none;
}

.opix-ref-secondary::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  background: var(--opix-violet);
  transform: scaleX(.3);
  transform-origin: left;
  transition: transform .25s ease;
}

.opix-ref-secondary:hover::after {
  transform: scaleX(1);
}

.opix-ref-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  max-width: 535px;
  margin-top: 28px;
  font-size: 13px;
  line-height: 1.55;
  color: #7b7687;
}

.opix-ref-note-icon {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  background: var(--opix-violet);
}


/* HERO ORBIT */

.opix-ref-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.opix-ref-glow {
  position: absolute;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  background: rgba(124, 58, 237, .18);
  filter: blur(75px);
  z-index: -2;
}

.opix-ref-orbit {
  position: absolute;
  border: 1px solid rgba(124, 58, 237, .19);
  border-radius: 50%;
}

.opix-ref-orbit-one {
  width: 430px;
  height: 430px;
  animation: opixOrbitSpin 24s linear infinite;
}

.opix-ref-orbit-two {
  width: 350px;
  height: 350px;
  border-style: dashed;
  border-color: rgba(124, 58, 237, .22);
  animation: opixOrbitSpinReverse 28s linear infinite;
}

.opix-ref-orbit-three {
  width: 500px;
  height: 250px;
  transform: rotate(-16deg);
  border-color: rgba(124, 58, 237, .12);
}

.opix-ref-orbit-one::after,
.opix-ref-orbit-two::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--opix-violet);
  box-shadow:
    0 0 0 8px rgba(124, 58, 237, .10),
    0 0 24px rgba(124, 58, 237, .42);
}

.opix-ref-orbit-one::after {
  top: 52px;
  right: 48px;
}

.opix-ref-orbit-two::after {
  left: 24px;
  bottom: 82px;
}

.opix-ref-benefit {
  position: relative;
  z-index: 3;
  width: 270px;
  height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .78);
  text-align: center;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .96),
      rgba(245, 239, 255, .88)
    );
  box-shadow:
    0 35px 90px rgba(75, 39, 135, .19),
    inset 0 1px 0 rgba(255, 255, 255, .95);
  backdrop-filter: blur(15px);
}

.opix-ref-benefit::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  border: 1px solid rgba(124, 58, 237, .10);
}

.opix-ref-benefit-small {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .18em;
  color: #80768c;
}

.opix-ref-benefit strong {
  display: block;
  margin: 4px 0;
  font-size: 82px;
  line-height: .95;
  letter-spacing: -.07em;
  font-weight: 900;
  color: var(--opix-violet);
}

.opix-ref-benefit-label {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .11em;
  color: var(--opix-ink);
}

.opix-ref-floating {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 45px;
  padding: 9px 15px 9px 9px;
  border: 1px solid rgba(124, 58, 237, .12);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 760;
  color: #3f3949;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 45px rgba(48, 25, 86, .11);
  backdrop-filter: blur(12px);
}

.opix-ref-floating span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  font-size: 9px;
  letter-spacing: .04em;
  color: #fff;
  background: var(--opix-violet);
}

.opix-ref-floating-a {
  top: 67px;
  left: 12px;
}

.opix-ref-floating-b {
  right: 0;
  top: 205px;
}

.opix-ref-floating-c {
  bottom: 63px;
  left: 31px;
}


/* PROCESS */

.opix-ref-process {
  position: relative;
  padding: 105px 0 110px;
  background: #fff;
}

.opix-ref-heading {
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 65px;
}

.opix-ref-heading h2,
.opix-ref-details-title h2 {
  margin: 12px 0 0;
  font-size: clamp(35px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -.045em;
  color: var(--opix-ink);
}

.opix-ref-heading > p {
  margin: 0;
  max-width: 510px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--opix-muted);
}

.opix-ref-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--opix-line);
}

.opix-ref-step {
  position: relative;
  padding: 32px 48px 0 0;
}

.opix-ref-step + .opix-ref-step {
  padding-left: 48px;
  border-left: 1px solid var(--opix-line);
}

.opix-ref-step-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.opix-ref-step-number {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  color: var(--opix-violet);
}

.opix-ref-step-line {
  width: 34px;
  height: 1px;
  background: rgba(124, 58, 237, .34);
}

.opix-ref-step h3 {
  margin: 23px 0 12px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -.025em;
  color: var(--opix-ink);
}

.opix-ref-step p {
  max-width: 330px;
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--opix-muted);
}


/* HIGHLIGHT */

.opix-ref-highlight {
  padding: 20px 0 110px;
  background: #fff;
}

.opix-ref-highlight-box {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  align-items: center;
  gap: 50px;
  padding: clamp(45px, 6vw, 78px);
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(
      circle at 82% 27%,
      rgba(189, 139, 255, .35),
      transparent 25%
    ),
    linear-gradient(
      130deg,
      #171020 0%,
      #26133d 48%,
      #5f26ad 100%
    );
  box-shadow: 0 30px 80px rgba(45, 25, 72, .17);
}

.opix-ref-highlight-box::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -145px;
  bottom: -290px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
}

.opix-ref-highlight-box::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  right: -60px;
  bottom: -235px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 50%;
}

.opix-ref-highlight-copy {
  position: relative;
  z-index: 2;
}

.opix-ref-highlight .opix-ref-overline {
  color: #c9a6ff;
}

.opix-ref-highlight h2 {
  max-width: 680px;
  margin: 14px 0 18px;
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1;
  letter-spacing: -.045em;
  color: #fff;
}

.opix-ref-highlight p {
  max-width: 570px;
  margin: 0 0 29px;
  font-size: 16px;
  line-height: 1.68;
  color: rgba(255, 255, 255, .72);
}

.opix-ref-highlight .opix-ref-primary {
  background: #fff;
  color: #4d1b82;
  border-color: #fff;
}

.opix-ref-highlight-mark {
  position: relative;
  z-index: 2;
  justify-self: center;
  text-align: center;
}

.opix-ref-highlight-mark > span {
  display: block;
  margin-bottom: -3px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
}

.opix-ref-highlight-mark strong {
  display: block;
  font-size: clamp(90px, 10vw, 145px);
  line-height: .86;
  letter-spacing: -.08em;
  font-weight: 900;
  color: #fff;
}

.opix-ref-highlight-mark small {
  display: block;
  margin-top: 15px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
}


/* DETAILS */

.opix-ref-details {
  padding: 110px 0;
  background: var(--opix-surface);
}

.opix-ref-details-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.opix-ref-details-title {
  position: sticky;
  top: 115px;
}

.opix-ref-details-list {
  border-top: 1px solid var(--opix-line);
}

.opix-ref-detail {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 18px;
  padding: 27px 0;
  border-bottom: 1px solid var(--opix-line);
}

.opix-ref-detail > span {
  padding-top: 3px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
  color: var(--opix-violet);
}

.opix-ref-detail strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
  color: var(--opix-ink);
}

.opix-ref-detail p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--opix-muted);
}


/* FINAL */

.opix-ref-final {
  padding: 84px 0;
  background: #fff;
}

.opix-ref-final-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.opix-ref-final h2 {
  max-width: 620px;
  margin: 10px 0 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -.045em;
  color: var(--opix-ink);
}


/* MOTION */

@keyframes opixOrbitSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes opixOrbitSpinReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}


/* RESPONSIVE */

@media (max-width: 980px) {

  .opix-ref-hero {
    min-height: auto;
  }

  .opix-ref-hero-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 65px;
    padding-bottom: 70px;
  }

  .opix-ref-copy {
    max-width: 760px;
  }

  .opix-ref-stage {
    min-height: 450px;
    max-width: 620px;
    width: 100%;
    margin-inline: auto;
  }

  .opix-ref-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .opix-ref-track {
    grid-template-columns: 1fr;
  }

  .opix-ref-step {
    padding: 28px 0;
  }

  .opix-ref-step + .opix-ref-step {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--opix-line);
  }

  .opix-ref-highlight-box {
    grid-template-columns: 1fr;
  }

  .opix-ref-highlight-mark {
    justify-self: start;
    text-align: left;
  }

  .opix-ref-details-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .opix-ref-details-title {
    position: static;
  }
}


@media (max-width: 680px) {

  .opix-ref-hero-grid {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .opix-ref-copy h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .opix-ref-lead {
    font-size: 16px;
  }

  .opix-ref-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .opix-ref-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .opix-ref-secondary {
    align-self: flex-start;
  }

  .opix-ref-stage {
    min-height: 385px;
  }

  .opix-ref-orbit-one {
    width: 315px;
    height: 315px;
  }

  .opix-ref-orbit-two {
    width: 260px;
    height: 260px;
  }

  .opix-ref-orbit-three {
    width: 355px;
    height: 185px;
  }

  .opix-ref-benefit {
    width: 205px;
    height: 205px;
  }

  .opix-ref-benefit strong {
    font-size: 63px;
  }

  .opix-ref-floating {
    font-size: 10px;
    padding-right: 10px;
  }

  .opix-ref-floating-a {
    top: 35px;
    left: 0;
  }

  .opix-ref-floating-b {
    right: -5px;
    top: 172px;
  }

  .opix-ref-floating-c {
    bottom: 30px;
    left: 5px;
  }

  .opix-ref-process,
  .opix-ref-details {
    padding: 75px 0;
  }

  .opix-ref-highlight {
    padding-bottom: 75px;
  }

  .opix-ref-highlight-box {
    min-height: 0;
    padding: 38px 25px;
    border-radius: 25px;
  }

  .opix-ref-highlight h2 {
    font-size: 38px;
  }

  .opix-ref-highlight-mark strong {
    font-size: 90px;
  }

  .opix-ref-final {
    padding: 65px 0;
  }

  .opix-ref-final-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .opix-ref-final-inner .btn {
    width: 100%;
    justify-content: center;
  }
}


@media (prefers-reduced-motion: reduce) {

  .opix-ref-orbit-one,
  .opix-ref-orbit-two {
    animation: none !important;
  }

  .opix-ref-primary span,
  .opix-ref-secondary::after {
    transition: none !important;
  }
}

/* ===== OPIX INDIQUE LAYOUT V2 END ===== */

/* ===== OPIX INDIQUE MULTI FORM V2 START ===== */

.indique-people {
  display: grid;
  gap: 18px;
  margin: 4px 0 18px;
}

.indique-person-card {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(124, 58, 237, .14);
  border-radius: 20px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .98),
      rgba(248, 245, 255, .92)
    );
  box-shadow:
    0 12px 35px rgba(53, 30, 89, .06);
}

.indique-person-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.indique-person-head > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.indique-person-number {
  min-width: 34px;
  height: 28px;
  padding-inline: 8px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  color: #fff;
  background: #7c3aed;
}

.indique-person-head strong {
  font-size: 15px;
  color: #17131d;
}

.indique-remove-person {
  appearance: none;
  border: 0;
  padding: 7px 9px;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 750;
  color: #7f738c;
  background: transparent;
  transition:
    background .2s ease,
    color .2s ease;
}

.indique-remove-person:hover {
  color: #a12844;
  background: rgba(190, 36, 71, .07);
}

.indique-remove-person[hidden] {
  display: none !important;
}

.indique-person-fields {
  display: grid;
  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(0, .85fr)
    minmax(0, 1fr);
  gap: 13px;
}

.indique-person-fields .indique-modal-field {
  margin: 0;
}

.indique-person-fields
.indique-modal-field input {
  width: 100%;
}

.indique-add-person {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border:
    1px dashed
    rgba(124, 58, 237, .35);
  border-radius: 15px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 780;
  color: #6d2fbd;
  background:
    rgba(124, 58, 237, .045);
  transition:
    background .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.indique-add-person span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  background: #7c3aed;
}

.indique-add-person:hover:not(:disabled) {
  border-color:
    rgba(124, 58, 237, .6);
  background:
    rgba(124, 58, 237, .075);
  transform:
    translateY(-1px);
}

.indique-add-person:disabled {
  opacity: .48;
  cursor: default;
}

.indique-person-limit {
  margin: 8px 0 18px;
  text-align: center;
  font-size: 11px;
  color: #8a8292;
}

.indique-existing-box {
  display: grid;
  gap: 9px;
  padding: 16px;
  border:
    1px solid
    rgba(124, 58, 237, .16);
  border-radius: 15px;
  color: #3b3344;
  background:
    rgba(124, 58, 237, .055);
}

.indique-existing-box strong {
  font-size: 14px;
  line-height: 1.35;
  color: #261a32;
}

.indique-existing-box > span {
  font-size: 12px;
  line-height: 1.55;
  color: #706679;
}

.indique-whatsapp-help {
  width: 100%;
  min-height: 45px;
  margin-top: 3px;
  justify-content: center;
  text-decoration: none;
}

@media (max-width: 780px) {
  .indique-person-fields {
    grid-template-columns: 1fr;
  }

  .indique-person-card {
    padding: 17px;
    border-radius: 17px;
  }
}

/* ===== OPIX INDIQUE MULTI FORM V2 END ===== */

/* ===== OPIX INDIQUE UX V3 START ===== */


/*
 * Modal mais confortável no desktop.
 */

.indique-modal-dialog {
  width: min(
    760px,
    calc(100vw - 32px)
  ) !important;

  max-width: 760px !important;
}


/*
 * Campos dos indicados.
 *
 * Nome ocupa a linha inteira.
 * WhatsApp e e-mail dividem a linha seguinte.
 */

.indique-person-fields {
  display: grid !important;

  grid-template-columns:
    minmax(190px, .78fr)
    minmax(280px, 1.22fr) !important;

  gap: 15px !important;
}


.indique-person-fields
.indique-modal-field:first-child {
  grid-column: 1 / -1;
}


.indique-person-fields
.indique-modal-field input {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 52px;

  padding-left: 14px;
  padding-right: 14px;

  font-size: 14px;
}


/*
 * Evita sensação de campo apertado.
 */

.indique-person-card {
  padding: 22px !important;
}


/*
 * WhatsApp:
 * identidade visual própria e claramente diferente
 * do botão Continuar.
 */

.indique-whatsapp-help {
  min-height: 48px !important;

  margin-top: 7px !important;

  border-color: #25d366 !important;

  background:
    linear-gradient(
      135deg,
      #25d366 0%,
      #20bd5a 100%
    ) !important;

  color: #ffffff !important;

  font-weight: 800 !important;

  box-shadow:
    0 12px 28px
    rgba(37, 211, 102, .24) !important;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease !important;
}


.indique-whatsapp-help:hover {
  border-color: #1fb858 !important;

  background:
    linear-gradient(
      135deg,
      #22c55e 0%,
      #1dae53 100%
    ) !important;

  color: #ffffff !important;

  transform:
    translateY(-1px);

  box-shadow:
    0 15px 32px
    rgba(37, 211, 102, .31) !important;
}


/*
 * Caixa de chamado já existente.
 */

.indique-existing-box {
  border-color:
    rgba(124, 58, 237, .19) !important;

  background:
    linear-gradient(
      145deg,
      rgba(124, 58, 237, .055),
      rgba(183, 108, 255, .075)
    ) !important;
}


/*
 * Em telas menores:
 * todos os dados ficam em uma única coluna.
 *
 * Nada de nome/telefone/e-mail espremidos.
 */

@media (max-width: 680px) {

  .indique-modal-dialog {
    width:
      calc(100vw - 24px) !important;

    max-width:
      calc(100vw - 24px) !important;
  }


  .indique-person-card {
    padding: 17px !important;
  }


  .indique-person-fields {
    grid-template-columns:
      minmax(0, 1fr) !important;

    gap: 14px !important;
  }


  .indique-person-fields
  .indique-modal-field:first-child {
    grid-column: auto;
  }


  .indique-person-fields
  .indique-modal-field input {
    min-height: 52px;
    font-size: 16px;
  }

}


/* ===== OPIX INDIQUE UX V3 END ===== */

/* ===== OPIX INDIQUE MOTION V1 START ===== */


/*
 * Estado inicial.
 *
 * O JS adiciona .opix-reveal-ready ao body
 * somente quando IntersectionObserver está disponível.
 * Isso evita conteúdo invisível caso o JS falhe.
 */

.opix-reveal-ready .opix-reveal {
  opacity: 0;

  transform:
    translate3d(0, 28px, 0);

  filter:
    blur(3px);

  transition:
    opacity .75s cubic-bezier(.22, 1, .36, 1),
    transform .75s cubic-bezier(.22, 1, .36, 1),
    filter .75s cubic-bezier(.22, 1, .36, 1);

  transition-delay:
    var(--reveal-delay, 0ms);

  will-change:
    opacity,
    transform,
    filter;
}


/*
 * Direções diferentes.
 */

.opix-reveal-ready
.opix-reveal[data-reveal="left"] {
  transform:
    translate3d(-34px, 0, 0);
}


.opix-reveal-ready
.opix-reveal[data-reveal="right"] {
  transform:
    translate3d(34px, 0, 0);
}


.opix-reveal-ready
.opix-reveal[data-reveal="scale"] {
  transform:
    translate3d(0, 18px, 0)
    scale(.965);
}


/*
 * Quando aparece.
 */

.opix-reveal-ready
.opix-reveal.is-visible {
  opacity: 1;

  transform:
    translate3d(0, 0, 0)
    scale(1);

  filter:
    blur(0);
}


/*
 * Passos:
 * pequena animação própria da linha.
 */

.opix-ref-step-line {
  transform-origin: left center;

  transition:
    transform .7s cubic-bezier(.22, 1, .36, 1),
    opacity .7s ease;

  transition-delay:
    .3s;
}


.opix-reveal-ready
.opix-ref-step:not(.is-visible)
.opix-ref-step-line {
  transform:
    scaleX(0);

  opacity: 0;
}


.opix-ref-step.is-visible
.opix-ref-step-line {
  transform:
    scaleX(1);

  opacity: 1;
}


/*
 * Regras:
 * número recebe pequeno destaque ao entrar.
 */

.opix-ref-detail > span {
  transition:
    transform .5s cubic-bezier(.22, 1, .36, 1),
    color .5s ease;
}


.opix-ref-detail.is-visible > span {
  transform:
    translateX(3px);
}


/*
 * Bloco 50%.
 * Mantém a animação orbital já existente,
 * adicionando só profundidade discreta.
 */

.opix-ref-benefit {
  transition:
    transform .45s ease,
    box-shadow .45s ease;
}


.opix-ref-stage:hover
.opix-ref-benefit {
  transform:
    translateY(-4px);

  box-shadow:
    0 42px 100px rgba(75, 39, 135, .23),
    inset 0 1px 0 rgba(255, 255, 255, .95);
}


/*
 * Cards flutuantes permanecem vivos,
 * mas de forma bem leve.
 */

.opix-ref-floating-a {
  animation:
    opixFloatA 5.5s ease-in-out infinite;
}


.opix-ref-floating-b {
  animation:
    opixFloatB 6.4s ease-in-out infinite;
}


.opix-ref-floating-c {
  animation:
    opixFloatC 5.9s ease-in-out infinite;
}


@keyframes opixFloatA {

  0%,
  100% {
    transform:
      translate3d(0, 0, 0);
  }

  50% {
    transform:
      translate3d(0, -6px, 0);
  }

}


@keyframes opixFloatB {

  0%,
  100% {
    transform:
      translate3d(0, 0, 0);
  }

  50% {
    transform:
      translate3d(0, 7px, 0);
  }

}


@keyframes opixFloatC {

  0%,
  100% {
    transform:
      translate3d(0, 0, 0);
  }

  50% {
    transform:
      translate3d(0, -5px, 0);
  }

}


/*
 * Mobile:
 * deslocamentos menores.
 */

@media (max-width: 680px) {

  .opix-reveal-ready
  .opix-reveal {
    transform:
      translate3d(0, 18px, 0);

    filter:
      blur(2px);
  }


  .opix-reveal-ready
  .opix-reveal[data-reveal="left"],
  .opix-reveal-ready
  .opix-reveal[data-reveal="right"] {
    transform:
      translate3d(0, 18px, 0);
  }


  .opix-reveal-ready
  .opix-reveal.is-visible {
    transform:
      translate3d(0, 0, 0);
  }

}


/*
 * Acessibilidade.
 */

@media (prefers-reduced-motion: reduce) {

  .opix-reveal-ready
  .opix-reveal,
  .opix-ref-step-line,
  .opix-ref-benefit {
    opacity: 1 !important;

    transform: none !important;

    filter: none !important;

    transition: none !important;

    animation: none !important;
  }


  .opix-ref-floating-a,
  .opix-ref-floating-b,
  .opix-ref-floating-c {
    animation: none !important;
  }

}


/* ===== OPIX INDIQUE MOTION V1 END ===== */
