/* AVANTHY HOME HERO V4 — INÍCIO */

.avt-test-hero {
      --navy: #00234d;
      --navy-deep: #00152e;
      --blue: #0065a3;
      --blue-light: #00a1d5;
      --orange: #ff6600;
      --orange-light: #ff9a4f;
      --text: #173652;
      --muted: #60778b;
      --line: #dce7ef;
      --surface: #f3f7fa;
      --white: #ffffff;
    }

    .avt-test-hero,
.avt-test-hero * {
  box-sizing: border-box;
}
.avt-test-hero button,
.avt-test-hero a {
      font: inherit;
    }

    .avt-test-hero {
      display: grid;
      min-height: 100vh;
      align-items: center;
      padding: 34px;
      overflow: hidden;
    }

    .avt-hero-shell {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(480px, .98fr);
      width: min(1240px, 100%);
      min-height: 650px;
      margin-inline: auto;
      overflow: hidden;
      background: var(--white);
      border: 1px solid rgba(0, 35, 77, 0.10);
      border-radius: 32px;
      box-shadow:
        0 34px 90px rgba(0, 35, 77, 0.13),
        0 2px 5px rgba(0, 35, 77, 0.04);
    }

    /* Conteúdo */

    .avt-hero-copy {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(55px, 6vw, 88px);
      background:
        radial-gradient(
          circle at 7% 90%,
          rgba(255, 102, 0, 0.07),
          transparent 30%
        ),
        #fff;
    }

    .avt-hero-eyebrow {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 10px;
      margin: 0 0 24px;
      color: var(--blue);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 1.7px;
      text-transform: uppercase;
    }

    .avt-hero-eyebrow::before {
      content: "";
      width: 29px;
      height: 4px;
      background: linear-gradient(
        90deg,
        var(--orange),
        var(--orange-light)
      );
      border-radius: 999px;
    }

    .avt-hero-copy h1 {
      max-width: 650px;
      margin: 0;
      color: var(--navy);
      font-size: clamp(42px, 4.7vw, 62px);
      font-weight: 700;
      line-height: 1.07;
      letter-spacing: -2.6px;
    }

    .avt-hero-copy h1 span {
      color: var(--blue);
      background: linear-gradient(
        105deg,
        var(--blue),
        var(--blue-light)
      );
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .avt-hero-description {
      max-width: 590px;
      margin: 25px 0 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.8;
    }

    .avt-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 13px;
      margin-top: 31px;
    }

    .avt-hero-button {
      display: inline-flex;
      min-height: 54px;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 21px;
      border-radius: 14px;
      font-size: 12px;
      font-weight: 700;
      text-decoration: none;
      transition:
        transform 190ms ease,
        box-shadow 190ms ease;
    }

    .avt-hero-button:hover,
    .avt-hero-button:focus-visible {
      transform: translateY(-3px);
    }

    .avt-hero-button-primary {
      color: #fff;
      background: linear-gradient(
        135deg,
        var(--orange),
        var(--orange-light)
      );
      box-shadow: 0 14px 30px rgba(255, 102, 0, 0.24);
    }

    .avt-hero-button-primary:hover,
    .avt-hero-button-primary:focus-visible {
      box-shadow: 0 18px 38px rgba(255, 102, 0, 0.34);
    }

    .avt-hero-button-secondary {
      color: #fff;
      background: linear-gradient(
        135deg,
        var(--navy),
        var(--blue)
      );
      box-shadow: 0 14px 30px rgba(0, 70, 120, 0.18);
    }

    .avt-button-arrow {
      font-size: 18px;
      font-weight: 400;
      transition: transform 180ms ease;
    }

    .avt-hero-button:hover .avt-button-arrow {
      transform: translateX(3px);
    }

    .avt-hero-points {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 30px;
    }

    .avt-hero-point {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 12px;
      color: #365772;
      background: #f2f7fa;
      border: 1px solid #dfebf2;
      border-radius: 999px;
      font-size: 9px;
      font-weight: 600;
    }

    .avt-hero-point::before {
      content: "";
      width: 7px;
      height: 7px;
      background: linear-gradient(
        135deg,
        var(--orange),
        var(--orange-light)
      );
      border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.09);
    }

    /* Painel visual */

    .avt-hero-visual {
      --move-x: 0px;
      --move-y: 0px;
      position: relative;
      display: flex;
      min-width: 0;
      align-items: center;
      justify-content: center;
      padding: 60px 45px;
      color: #fff;
      background:
        radial-gradient(
          circle at 88% 10%,
          rgba(255, 102, 0, 0.55),
          transparent 25%
        ),
        radial-gradient(
          circle at 14% 95%,
          rgba(0, 161, 213, 0.35),
          transparent 33%
        ),
        linear-gradient(
          145deg,
          var(--navy-deep) 0%,
          #003761 55%,
          #006a9f 100%
        );
      overflow: hidden;
    }

    .avt-hero-visual::before,
    .avt-hero-visual::after {
      content: "";
      position: absolute;
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 50%;
      pointer-events: none;
    }

    .avt-hero-visual::before {
      right: -180px;
      bottom: -170px;
      width: 480px;
      height: 480px;
    }

    .avt-hero-visual::after {
      right: -75px;
      bottom: -66px;
      width: 270px;
      height: 270px;
    }

    .avt-visual-stage {
      position: relative;
      z-index: 2;
      width: min(100%, 510px);
      transform: translate(
        var(--move-x),
        var(--move-y)
      );
      transition: transform 180ms ease-out;
    }

    .avt-visual-label {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 15px;
      margin-bottom: 20px;
    }

    .avt-visual-label strong {
      color: #fff;
      font-size: 11px;
      letter-spacing: 1.3px;
      text-transform: uppercase;
    }

    .avt-online {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: rgba(255, 255, 255, 0.78);
      font-size: 9px;
      font-weight: 600;
    }

    .avt-online::before {
      content: "";
      width: 8px;
      height: 8px;
      background: #34d399;
      border-radius: 50%;
      box-shadow: 0 0 0 5px rgba(52, 211, 153, 0.12);
      animation: avtPulse 2.2s infinite;
    }

    .avt-dashboard {
      position: relative;
      overflow: hidden;
      color: var(--text);
      background: rgba(255, 255, 255, 0.97);
      border: 1px solid rgba(255, 255, 255, 0.6);
      border-radius: 22px;
      box-shadow: 0 32px 70px rgba(0, 12, 28, 0.34);
    }

    .avt-dashboard-top {
      display: flex;
      height: 47px;
      align-items: center;
      gap: 7px;
      padding: 0 17px;
      background: #f6f9fb;
      border-bottom: 1px solid #e2ebf1;
    }

    .avt-dashboard-top span {
      width: 8px;
      height: 8px;
      background: #c8d4de;
      border-radius: 50%;
    }

    .avt-dashboard-top span:first-child {
      background: var(--orange);
    }

    .avt-dashboard-address {
      width: 48%;
      height: 21px;
      margin-left: 10px;
      background: #e9eff3;
      border-radius: 7px;
    }

    .avt-dashboard-body {
      display: grid;
      grid-template-columns: 76px 1fr;
      min-height: 350px;
    }

    .avt-dashboard-sidebar {
      display: flex;
      align-items: center;
      flex-direction: column;
      gap: 19px;
      padding: 25px 15px;
      background: linear-gradient(180deg, #00234d, #004b79);
    }

    .avt-sidebar-logo {
      width: 34px;
      height: 11px;
      margin-bottom: 8px;
      background: linear-gradient(
        90deg,
        var(--orange),
        var(--orange-light)
      );
      border-radius: 999px;
    }

    .avt-sidebar-icon {
      width: 27px;
      height: 27px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 8px;
    }

    .avt-sidebar-icon.active {
      background: rgba(255, 255, 255, 0.16);
      border-color: rgba(255, 255, 255, 0.35);
    }

    .avt-dashboard-main {
      padding: 25px 22px 21px;
    }

    .avt-dashboard-heading {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 15px;
    }

    .avt-heading-copy strong {
      display: block;
      color: var(--navy);
      font-size: 14px;
    }

    .avt-heading-copy span {
      display: block;
      margin-top: 5px;
      color: #8a9cab;
      font-size: 8px;
    }

    .avt-dashboard-action {
      width: 76px;
      height: 27px;
      background: linear-gradient(
        135deg,
        var(--orange),
        var(--orange-light)
      );
      border-radius: 8px;
    }

    .avt-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 9px;
      margin-top: 22px;
    }

    .avt-metric {
      min-width: 0;
      padding: 14px 11px;
      background: #f5f9fb;
      border: 1px solid #e1ebf1;
      border-radius: 11px;
    }

    .avt-metric span {
      display: block;
      color: #8a9ba9;
      font-size: 7px;
    }

    .avt-metric strong {
      display: block;
      margin-top: 7px;
      color: var(--navy);
      font-size: 15px;
    }

    .avt-chart {
      display: flex;
      height: 130px;
      align-items: flex-end;
      gap: 10px;
      margin-top: 15px;
      padding: 18px 18px 0;
      background:
        repeating-linear-gradient(
          to bottom,
          transparent 0,
          transparent 27px,
          #e9f0f4 28px
        ),
        #fbfdfe;
      border: 1px solid #e1ebf1;
      border-radius: 12px;
    }

    .avt-chart span {
      flex: 1;
      min-width: 8px;
      background: linear-gradient(
        180deg,
        var(--blue-light),
        var(--blue)
      );
      border-radius: 6px 6px 0 0;
      transform-origin: bottom;
      animation: avtBars 1.1s cubic-bezier(.2,.8,.2,1) both;
    }

    .avt-chart span:nth-child(1) { height: 38%; }
    .avt-chart span:nth-child(2) { height: 58%; }
    .avt-chart span:nth-child(3) { height: 45%; }
    .avt-chart span:nth-child(4) {
      height: 76%;
      background: linear-gradient(
        180deg,
        var(--orange-light),
        var(--orange)
      );
    }
    .avt-chart span:nth-child(5) { height: 68%; }
    .avt-chart span:nth-child(6) { height: 91%; }

    .avt-floating-card {
      position: absolute;
      z-index: 4;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 11px 13px;
      color: var(--text);
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(0, 35, 77, 0.10);
      border-radius: 13px;
      box-shadow: 0 16px 34px rgba(0, 22, 46, 0.21);
      animation: avtFloat 4.5s ease-in-out infinite;
    }

    .avt-floating-card strong {
      display: block;
      color: var(--navy);
      font-size: 9px;
    }

    .avt-floating-card span {
      display: block;
      margin-top: 3px;
      color: #8295a5;
      font-size: 7px;
    }

    .avt-floating-icon {
      display: grid;
      flex: 0 0 32px;
      width: 32px;
      height: 32px;
      place-items: center;
      color: #fff;
      background: linear-gradient(
        135deg,
        var(--orange),
        var(--orange-light)
      );
      border-radius: 9px;
      font-size: 9px;
      font-weight: 800;
    }

    .avt-floating-card.ai {
      top: 79px;
      right: -19px;
    }

    .avt-floating-card.process {
      right: 20px;
      bottom: -22px;
      animation-delay: -2s;
    }

    .avt-floating-card.process .avt-floating-icon {
      background: linear-gradient(
        135deg,
        var(--navy),
        var(--blue-light)
      );
    }

    .avt-solution-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-top: 19px;
    }

    .avt-solution-strip span {
      display: flex;
      min-height: 40px;
      align-items: center;
      justify-content: center;
      gap: 7px;
      padding: 8px;
      color: rgba(255, 255, 255, 0.82);
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 11px;
      font-size: 8px;
      font-weight: 600;
      text-align: center;
    }

    .avt-solution-strip span::before {
      content: "";
      width: 6px;
      height: 6px;
      background: var(--orange);
      border-radius: 50%;
    }

    /* Entrada */

    .avt-hero-copy > *,
    .avt-visual-stage {
      opacity: 0;
      transform: translateY(22px);
    }

    .is-ready .avt-hero-copy > *,
    .is-ready .avt-visual-stage {
      opacity: 1;
      transform: translateY(0);
      transition:
        opacity 650ms ease,
        transform 650ms cubic-bezier(.2,.8,.2,1);
    }

    .is-ready .avt-hero-copy > :nth-child(2) {
      transition-delay: 80ms;
    }

    .is-ready .avt-hero-copy > :nth-child(3) {
      transition-delay: 150ms;
    }

    .is-ready .avt-hero-copy > :nth-child(4) {
      transition-delay: 220ms;
    }

    .is-ready .avt-hero-copy > :nth-child(5) {
      transition-delay: 290ms;
    }

    .is-ready .avt-visual-stage {
      transition-delay: 180ms;
    }

    @keyframes avtPulse {
      0%, 100% {
        box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.12);
      }
      50% {
        box-shadow: 0 0 0 8px rgba(52, 211, 153, 0);
      }
    }

    @keyframes avtFloat {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-7px);
      }
    }

    @keyframes avtBars {
      from {
        transform: scaleY(0);
      }
      to {
        transform: scaleY(1);
      }
    }

    @media (max-width: 1040px) {
      .avt-test-hero {
        padding: 24px;
      }

      .avt-hero-shell {
        grid-template-columns: 1fr 1fr;
      }

      .avt-hero-copy {
        padding: 55px 42px;
      }

      .avt-hero-visual {
        padding: 50px 28px;
      }

      .avt-floating-card.ai {
        right: 4px;
      }
    }

    @media (max-width: 820px) {
      .avt-test-hero {
        display: block;
        min-height: auto;
        padding: 16px;
      }

      .avt-hero-shell {
        grid-template-columns: 1fr;
        min-height: auto;
        border-radius: 25px;
      }

      .avt-hero-copy {
        padding: 58px 34px 48px;
      }

      .avt-hero-copy h1 {
        max-width: 660px;
      }

      .avt-hero-visual {
        min-height: 570px;
        padding: 55px 48px 70px;
      }

      .avt-visual-stage {
        width: min(100%, 560px);
      }
    }

    @media (max-width: 560px) {
      .avt-test-hero {
        padding: 9px;
      }

      .avt-hero-shell {
        border-radius: 22px;
      }

      .avt-hero-copy {
        padding: 44px 23px 40px;
      }

      .avt-hero-eyebrow {
        margin-bottom: 20px;
        font-size: 9px;
        letter-spacing: 1.2px;
      }

      .avt-hero-copy h1 {
        font-size: 37px;
        line-height: 1.08;
        letter-spacing: -1.5px;
      }

      .avt-hero-description {
        margin-top: 20px;
        font-size: 13px;
        line-height: 1.75;
      }

      .avt-hero-actions {
        display: grid;
        margin-top: 27px;
      }

      .avt-hero-button {
        width: 100%;
        min-height: 52px;
      }

      .avt-hero-points {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 25px;
      }

      .avt-hero-point {
        width: 100%;
      }

      .avt-hero-visual {
        min-height: 450px;
        padding: 42px 15px 60px;
      }

      .avt-visual-label {
        padding-inline: 5px;
      }

      .avt-dashboard {
        border-radius: 17px;
      }

      .avt-dashboard-body {
        grid-template-columns: 52px 1fr;
        min-height: 282px;
      }

      .avt-dashboard-sidebar {
        gap: 15px;
        padding: 20px 10px;
      }

      .avt-sidebar-icon {
        width: 23px;
        height: 23px;
      }

      .avt-dashboard-main {
        padding: 20px 12px 16px;
      }

      .avt-dashboard-action {
        width: 54px;
      }

      .avt-metrics {
        gap: 5px;
        margin-top: 18px;
      }

      .avt-metric {
        padding: 10px 6px;
      }

      .avt-metric strong {
        font-size: 12px;
      }

      .avt-chart {
        height: 105px;
        gap: 6px;
        padding: 14px 10px 0;
      }

      .avt-floating-card.ai {
        top: 68px;
        right: 2px;
      }

      .avt-floating-card.process {
        right: 8px;
        bottom: -23px;
      }

      .avt-floating-card {
        padding: 8px 9px;
      }

      .avt-floating-icon {
        flex-basis: 27px;
        width: 27px;
        height: 27px;
      }

      .avt-solution-strip {
        grid-template-columns: 1fr;
        margin-top: 42px;
      }

      .avt-solution-strip span {
        min-height: 37px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation: none !important;
        scroll-behavior: auto !important;
        transition: none !important;
      }

      .avt-hero-copy > *,
      .avt-visual-stage {
        opacity: 1;
        transform: none;
      }
    }

/* Integração da Hero com o menu fixo da Home */

body .avt-test-hero {
  min-height: 100svh;
  padding: 112px 34px 34px;
  scroll-margin-top: 78px;
}

.is-ready .avt-hero-visual .avt-visual-stage {
  transform: translate(
    var(--move-x, 0px),
    var(--move-y, 0px)
  );
}

@media (max-width: 1040px) {
  body .avt-test-hero {
    padding: 102px 24px 24px;
  }
}

@media (max-width: 820px) {
  body .avt-test-hero {
    min-height: auto;
    padding: 92px 16px 16px;
  }
}

@media (max-width: 560px) {
  body .avt-test-hero {
    padding: 84px 9px 9px;
  }
}

/* AVANTHY HOME HERO V4 — FIM */

/* AVANTHY HERO FULL WIDTH — INÍCIO */

/*
 * Hero em largura total, posicionada imediatamente
 * abaixo do menu global.
 */

body .avt-test-hero {
  width: 100%;
  min-height: 100svh;
  margin: 0;
  padding: 70px 0 0;
  background: #ffffff;
  overflow: hidden;
}

body .avt-hero-shell {
  grid-template-columns:
    minmax(0, 1.18fr)
    minmax(460px, .82fr);
  width: 100%;
  max-width: none;
  min-height: calc(100svh - 70px);
  margin: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  box-shadow: none;
}

body .avt-hero-copy {
  padding: clamp(55px, 5.2vw, 82px);
}

body .avt-hero-copy h1 {
  width: 100%;
  max-width: 780px;
  font-size: clamp(42px, 3.65vw, 56px);
  font-weight: 700;
  line-height: 1.11;
  letter-spacing: -1.8px;
  text-wrap: balance;
}

.avt-title-row {
  display: block;
}

.avt-title-accent {
  width: fit-content;
  color: var(--blue);
  background: linear-gradient(
    105deg,
    var(--blue),
    var(--blue-light)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body .avt-hero-description {
  max-width: 650px;
}

body .avt-hero-visual {
  min-height: calc(100svh - 70px);
}

body .avt-visual-stage {
  width: min(100%, 540px);
}

@media (max-width: 1120px) {
  body .avt-hero-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  body .avt-hero-copy {
    min-height: 610px;
    padding: 72px clamp(35px, 7vw, 78px);
  }

  body .avt-hero-copy h1 {
    max-width: 790px;
  }

  body .avt-hero-visual {
    min-height: 590px;
    padding: 65px 50px 78px;
  }

  body .avt-visual-stage {
    width: min(100%, 620px);
  }
}

@media (max-width: 820px) {
  body .avt-test-hero {
    padding: 72px 0 0;
  }

  body .avt-hero-copy {
    min-height: auto;
    padding: 62px 34px 52px;
  }

  body .avt-hero-visual {
    min-height: 560px;
    padding: 55px 35px 72px;
  }
}

@media (max-width: 560px) {
  body .avt-test-hero {
    padding: 72px 0 0;
  }

  body .avt-hero-copy {
    padding: 47px 23px 42px;
  }

  body .avt-hero-copy h1 {
    max-width: 100%;
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: -1.25px;
    text-wrap: balance;
  }

  .avt-title-row {
    display: inline;
  }

  .avt-title-row:not(:last-child)::after {
    content: " ";
  }

  body .avt-hero-description {
    margin-top: 22px;
  }

  body .avt-hero-visual {
    min-height: 480px;
    padding: 43px 15px 62px;
  }

  body .avt-visual-label {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  body .avt-visual-label strong {
    max-width: 240px;
    line-height: 1.5;
  }
}

/* AVANTHY HERO FULL WIDTH — FIM */


/* AVANTHY PROCESS CARD POSITION — INÍCIO */

/* Mantém o card acima da faixa de soluções no desktop. */
body .avt-floating-card.process {
  right: 20px;
  bottom: 66px;
}

/* No celular, o card entra no fluxo e não cobre Automações. */
@media (max-width: 560px) {
  body .avt-floating-card.process {
    position: relative;
    right: auto;
    bottom: auto;
    width: max-content;
    max-width: 100%;
    margin: 14px 0 0 auto;
  }

  body .avt-solution-strip {
    margin-top: 22px;
  }
}

/* AVANTHY PROCESS CARD POSITION — FIM */


/* AVANTHY HERO TITLE COLORS V2 — INÍCIO */

body .avt-hero-copy h1 {
  max-width: 830px;
  font-size: clamp(42px, 3.9vw, 59px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
}

body .avt-hero-copy h1 .avt-title-blue {
  width: fit-content;
  max-width: 100%;
  color: #004f88;
  background: linear-gradient(
    105deg,
    #002f64 0%,
    #0065a3 55%,
    #008fca 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body .avt-hero-copy h1 .avt-title-orange {
  width: fit-content;
  max-width: 100%;
  color: #ff6600;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #ff6600;
}

@media (max-width: 560px) {
  body .avt-hero-copy h1 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: -1.3px;
  }

  body .avt-hero-copy h1 .avt-title-row {
    display: inline;
  }

  body .avt-hero-copy h1 .avt-title-row:not(:last-child)::after {
    content: " ";
  }
}

/* AVANTHY HERO TITLE COLORS V2 — FIM */


/* AVANTHY TITLE DESCENDERS FIX — INÍCIO */

body .avt-hero-copy h1 {
  line-height: 1.15;
  overflow: visible;
}

body .avt-hero-copy h1 .avt-title-row {
  padding-bottom: 0.10em;
  margin-bottom: -0.10em;
  overflow: visible;
}

@media (max-width: 560px) {
  body .avt-hero-copy h1 {
    line-height: 1.17;
  }

  body .avt-hero-copy h1 .avt-title-row {
    padding-bottom: 0.08em;
    margin-bottom: -0.08em;
  }
}

/* AVANTHY TITLE DESCENDERS FIX — FIM */
