/* ==========================================================================
   IBPLD Conversion layer — consulting, authority, journeys, CTA, footer
   Does not alter existing identity/proto section layouts.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Consultoria / Inteligência
   -------------------------------------------------------------------------- */

.intelx {
  background: var(--proto-bg);
  padding: 4.75rem 0 5rem;
  border-top: 1px solid rgba(22, 23, 25, 0.06);
}

.intelx__shell {
  width: min(100%, var(--proto-max));
  margin-inline: auto;
  padding-inline: var(--proto-gutter);
}

.intelx__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--proto-steel);
}

.intelx__concept {
  margin: 0 0 0.85rem;
  max-width: 16ch;
  font-size: clamp(1.25rem, 4vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--proto-soft);
}

.intelx__title {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(1.85rem, 5.5vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.intelx__process {
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.intelx__step {
  position: relative;
  padding-left: 1.85rem;
}

.intelx__step-node {
  position: absolute;
  left: 0.2rem;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border: 1px solid var(--proto-champagne);
  border-radius: 50%;
  background: radial-gradient(circle, var(--proto-wine) 0 2px, transparent 2.2px);
}

.intelx__step-thread {
  position: absolute;
  left: 0.5rem;
  top: 1.25rem;
  bottom: -1.5rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(200, 182, 154, 0.7), rgba(200, 182, 154, 0.15));
}

.intelx__step:last-child .intelx__step-thread {
  display: none;
}

.intelx__step-index {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--proto-champagne);
}

.intelx__step-title {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.intelx__step-text {
  display: block;
  margin-top: 0.35rem;
  max-width: 28rem;
  color: var(--proto-soft);
  line-height: 1.55;
  font-size: 0.975rem;
}

.intelx__areas {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(22, 23, 25, 0.08);
}

.intelx__areas-label {
  margin: 0 0 1.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--proto-steel);
}

.intelx__areas-layout {
  display: none;
}

.intelx__accordion {
  display: grid;
  gap: 0.35rem;
}

.intelx__acc-item {
  border-bottom: 1px solid rgba(22, 23, 25, 0.08);
  padding: 0.35rem 0 0.85rem;
}

.intelx__acc-item summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
}

.intelx__acc-item summary::-webkit-details-marker {
  display: none;
}

.intelx__acc-item p {
  margin: 0.35rem 0 0;
  color: var(--proto-soft);
  line-height: 1.6;
  max-width: 36rem;
}

.intelx__area-focus {
  margin-top: 0.85rem !important;
  font-size: 0.875rem;
}

.intelx__area-focus span {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--proto-champagne);
}

.intelx__cta-block {
  margin-top: 3.25rem;
}

.intelx__cta-line {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 22ch;
}

.intelx__cta-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.intelx__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.3rem;
  background: var(--proto-ink);
  color: #F5F3EE;
  text-decoration: none;
  font-weight: 700;
}

.intelx__cta:hover {
  background: var(--proto-wine);
  color: #F5F3EE;
}

.intelx__textlink {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 700;
  text-decoration: none;
  color: var(--proto-wine);
}

.intelx__textlink::after {
  content: "→";
  margin-left: 0.4rem;
}

@media (min-width: 768px) {
  .intelx__process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem 1.25rem;
  }

  .intelx__step {
    padding-left: 0;
  }

  .intelx__step-node {
    position: relative;
    left: 0;
    top: 0;
    margin-bottom: 0.85rem;
  }

  .intelx__step-thread {
    position: absolute;
    left: 1rem;
    right: -1.1rem;
    top: 0.5rem;
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(200, 182, 154, 0.75), rgba(200, 182, 154, 0.12));
  }

  .intelx__cta-actions {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .intelx {
    padding: 6rem 0 5.5rem;
  }

  .intelx__process {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
    transform: none;
  }

  .intelx__step {
    transform: none;
  }

  .intelx__step-text {
    font-size: 0.875rem;
  }

  .intelx__accordion {
    display: none;
  }

  .intelx__areas-layout {
    display: grid;
    grid-template-columns: minmax(12rem, 16rem) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: start;
  }

  .intelx__area-nav {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
  }

  .intelx__area-tab {
    min-height: 44px;
    text-align: left;
    border: 0;
    border-left: 2px solid transparent;
    background: transparent;
    padding: 0.65rem 0.85rem;
    font: inherit;
    font-size: 0.975rem;
    font-weight: 700;
    color: var(--proto-soft);
    cursor: pointer;
  }

  .intelx__area-tab.is-active,
  .intelx__area-tab[aria-selected="true"] {
    color: var(--proto-ink);
    border-left-color: var(--proto-wine);
  }

  .intelx__area-panel {
    display: none;
  }

  .intelx__area-panel.is-active {
    display: block;
  }

  .intelx__area-name {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.035em;
  }

  .intelx__area-summary {
    margin: 1rem 0 0;
    max-width: 34rem;
    color: var(--proto-soft);
    line-height: 1.65;
    font-size: 1.05rem;
  }
}

/* --------------------------------------------------------------------------
   Dr. Sólon — photographic authority
   -------------------------------------------------------------------------- */

.solonx {
  background: #121316;
  color: #F5F3EE;
}

.solonx__stage {
  position: relative;
  min-height: 28rem;
  display: grid;
  align-items: end;
}

.solonx__stage.has-photo {
  min-height: 70vw;
  max-height: none;
}

.solonx__photo-wrap {
  position: absolute;
  inset: 0;
}

.solonx__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.86) contrast(1.05);
}

.solonx__stage.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 19, 22, 0.15) 0%,
    rgba(18, 19, 22, 0.35) 40%,
    rgba(18, 19, 22, 0.88) 100%
  );
}

.solonx__copy {
  position: relative;
  z-index: 1;
  width: min(100%, var(--proto-max));
  margin-inline: auto;
  padding: 4.5rem var(--proto-gutter) 3rem;
}

.solonx__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--proto-champagne);
}

.solonx__title {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(1.85rem, 5.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.solonx__name {
  margin: 1.75rem 0 0;
  font-size: 1.125rem;
  font-weight: 700;
}

.solonx__role {
  margin: 0.25rem 0 0;
  color: rgba(245, 243, 238, 0.68);
  font-size: 0.9375rem;
}

.solonx__bio {
  margin: 1rem 0 0;
  max-width: 34rem;
  color: rgba(245, 243, 238, 0.72);
  line-height: 1.6;
}

.solonx__pubs {
  background: #0f1012;
  padding: 2.75rem 0 3.5rem;
  border-top: 1px solid rgba(245, 243, 238, 0.06);
}

.solonx__pubs-shell {
  width: min(100%, var(--proto-max));
  margin-inline: auto;
  padding-inline: var(--proto-gutter);
}

.solonx__pubs-title {
  margin: 0;
  max-width: 22ch;
  font-size: clamp(1.25rem, 3.5vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.solonx__pubs-await {
  margin: 1.25rem 0 0;
  color: rgba(245, 243, 238, 0.55);
  font-size: 0.9375rem;
  max-width: 36rem;
}

.solonx__covers {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0.5rem 0 0.25rem;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.solonx__cover {
  flex: 0 0 auto;
  width: 8.5rem;
  scroll-snap-align: start;
  transition: transform 280ms var(--proto-ease);
}

.solonx__cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.solonx__cover--d2 {
  transform: translateY(0.75rem) scale(0.94);
}

.solonx__cover--d3 {
  transform: translateY(1.25rem) scale(0.88);
  opacity: 0.92;
}

@media (hover: hover) and (pointer: fine) {
  .solonx__cover:hover {
    transform: translateY(-0.35rem) scale(1.02);
    z-index: 2;
  }
}

@media (min-width: 1024px) {
  .solonx__stage.has-photo {
    min-height: 36rem;
    grid-template-columns: 1.2fr 1fr;
    align-items: stretch;
  }

  .solonx__stage.has-photo .solonx__photo-wrap {
    position: relative;
    min-height: 36rem;
  }

  .solonx__stage.has-photo::after {
    background: linear-gradient(
      90deg,
      rgba(18, 19, 22, 0.05) 0%,
      rgba(18, 19, 22, 0.35) 45%,
      rgba(18, 19, 22, 0.92) 78%
    );
  }

  .solonx__stage.has-photo .solonx__copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 4rem 2.5rem 4rem 0;
    margin-left: -18%;
  }

  .solonx__covers {
    overflow: visible;
    justify-content: flex-start;
    gap: 1.5rem;
    padding-top: 2rem;
  }

  .solonx__cover {
    width: 10rem;
  }

  .solonx__cover--d1 {
    width: 12rem;
  }
}

/* --------------------------------------------------------------------------
   Cases / testimonials
   -------------------------------------------------------------------------- */

.proofx {
  background: var(--proto-bg);
  padding: 4.75rem 0 5rem;
}

.proofx__shell {
  width: min(100%, var(--proto-max));
  margin-inline: auto;
  padding-inline: var(--proto-gutter);
}

.proofx__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--proto-steel);
}

.proofx__title {
  margin: 0;
  max-width: 18ch;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.proofx__cases,
.proofx__voices {
  margin-top: 2.75rem;
}

.proofx__case,
.proofx__voice {
  max-width: 44rem;
}

.proofx__case-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.proofx__case-logo {
  max-width: 8rem;
  max-height: 2.5rem;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.85);
}

.proofx__case-org {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.proofx__case-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--proto-champagne);
}

.proofx__case-headline {
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.proofx__case-desc {
  margin: 1rem 0 0;
  color: var(--proto-soft);
  line-height: 1.65;
}

.proofx__case-metrics {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.proofx__case-metrics li {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.proofx__case-quote,
.proofx__voice blockquote {
  margin: 2rem 0 0;
  padding: 0;
  border: 0;
}

.proofx__voice {
  position: relative;
  padding-top: 0.5rem;
}

.proofx__voice::before {
  content: "“";
  display: block;
  margin-bottom: 0.35rem;
  font-size: 3.5rem;
  line-height: 0.8;
  font-weight: 600;
  color: rgba(200, 182, 154, 0.85);
}

.proofx__case-quote p,
.proofx__voice blockquote p {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.proofx__case-quote footer,
.proofx__voice figcaption {
  margin-top: 1rem;
  display: grid;
  gap: 0.15rem;
  font-style: normal;
  color: var(--proto-soft);
  font-size: 0.875rem;
}

.proofx__case-quote cite,
.proofx__voice figcaption strong {
  font-style: normal;
  font-weight: 700;
  color: var(--proto-ink);
}

.proofx__nav {
  margin-top: 1.75rem;
  display: flex;
  gap: 0.75rem;
}

.proofx__nav button {
  min-height: 44px;
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(22, 23, 25, 0.16);
  background: transparent;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
}

.proofx__nav button:hover {
  border-color: var(--proto-ink);
}

/* --------------------------------------------------------------------------
   Journeys
   -------------------------------------------------------------------------- */

.journeyx {
  padding: 0;
}

.journeyx__shell {
  width: min(100%, var(--proto-max));
  margin-inline: auto;
  padding: 4.5rem var(--proto-gutter) 0;
}

.journeyx__title {
  margin: 0 0 2rem;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  max-width: 16ch;
}

.journeyx__split {
  display: grid;
}

.journeyx__path {
  display: block;
  min-height: 0;
  padding: 2.25rem 1.5rem 2rem;
  text-decoration: none;
  color: inherit;
  transition: background-color 240ms var(--proto-ease);
}

.journeyx__path--pro {
  background: var(--proto-bg);
  color: var(--proto-ink);
  border-top: 1px solid rgba(22, 23, 25, 0.08);
}

.journeyx__path--org {
  background: var(--proto-graphite);
  color: #F5F3EE;
}

.journeyx__path-kicker {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--proto-steel);
}

.journeyx__path--org .journeyx__path-kicker {
  color: var(--proto-champagne);
}

.journeyx__path-title {
  margin: 1rem 0 0;
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.journeyx__path-text {
  margin: 1rem 0 0;
  max-width: 28rem;
  line-height: 1.6;
  opacity: 0.78;
}

.journeyx__path-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.journeyx__path-list li {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.journeyx__path-list li::before {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.55rem;
  border-radius: 50%;
  border: 1px solid var(--proto-champagne);
  vertical-align: middle;
  background: radial-gradient(circle, var(--proto-wine) 0 1.5px, transparent 1.7px);
}

.journeyx__path-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 2rem;
  font-weight: 700;
}

.journeyx__path-cta::after {
  content: "→";
  margin-left: 0.4rem;
}

@media (hover: hover) and (pointer: fine) {
  .journeyx__path--pro:hover {
    background: #F0EDE6;
  }

  .journeyx__path--org:hover {
    background: #1d2025;
  }
}

@media (min-width: 1024px) {
  .journeyx__shell {
    padding-top: 5.5rem;
    padding-bottom: 0;
  }

  .journeyx__split {
    grid-template-columns: 1fr 1fr;
    margin-inline: 0;
    width: 100%;
  }

  .journeyx__path {
    min-height: 0;
    padding: 3rem 2.5rem;
  }
}

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */

.finalx {
  position: relative;
  min-height: 0;
  display: block;
  overflow: hidden;
  color: #F5F3EE;
}

.finalx__photo,
.finalx__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.finalx__fallback {
  background:
    radial-gradient(90% 70% at 70% 20%, rgba(200, 182, 154, 0.18) 0%, transparent 55%),
    linear-gradient(160deg, #25282C 0%, #121316 55%, #17191D 100%);
}

.finalx__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 19, 22, 0.25) 0%,
    rgba(18, 19, 22, 0.55) 45%,
    rgba(18, 19, 22, 0.88) 100%
  );
}

.finalx__content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--proto-max));
  margin-inline: auto;
  padding: 5rem var(--proto-gutter) 4rem;
}

.finalx__title {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(1.85rem, 5.5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.finalx__sub {
  margin: 1.15rem 0 0;
  max-width: 34rem;
  color: rgba(245, 243, 238, 0.75);
  line-height: 1.6;
}

.finalx__actions {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.finalx__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  background: #F5F3EE;
  color: #17191D;
  text-decoration: none;
  font-weight: 700;
}

.finalx__cta:hover {
  background: var(--proto-champagne);
  color: #17191D;
}

.finalx__textlink {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 700;
  text-decoration: none;
  color: rgba(245, 243, 238, 0.9);
}

.finalx__textlink::after {
  content: "→";
  margin-left: 0.4rem;
}

@media (min-width: 768px) {
  .finalx__actions {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
  }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.sitefoot {
  background: #17191D;
  color: rgba(245, 243, 238, 0.78);
}

.sitefoot__shell {
  width: min(100%, var(--proto-max));
  margin-inline: auto;
  padding: 3.5rem var(--proto-gutter) 2.5rem;
}

.sitefoot__brand {
  margin-bottom: 2.5rem;
}

.sitefoot__logo {
  display: inline-flex;
  text-decoration: none;
}

.sitefoot__logo img {
  width: 10rem;
  height: auto;
  filter: none;
  opacity: 1;
  object-fit: contain;
}

.sitefoot__tagline {
  margin: 0.85rem 0 0;
  max-width: 22rem;
  font-size: 0.9375rem;
  color: rgba(245, 243, 238, 0.62);
}

.sitefoot__social {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.sitefoot__social a {
  color: #F5F3EE;
  text-decoration: none;
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.sitefoot__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 1.25rem;
}

.sitefoot__col {
  min-width: 0;
}

.sitefoot__col-title {
  margin: 0 0 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--proto-champagne);
}

.sitefoot__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.sitefoot__col a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  text-decoration: none;
  color: rgba(245, 243, 238, 0.78);
  font-size: 0.9rem;
}

.sitefoot__col a:hover {
  color: #F5F3EE;
}

.sitefoot__base {
  border-top: 1px solid rgba(245, 243, 238, 0.08);
}

.sitefoot__base-inner {
  padding-top: 1.15rem;
  padding-bottom: 1.35rem;
  font-size: 0.75rem;
  color: rgba(245, 243, 238, 0.5);
}

.sitefoot__base-inner p {
  margin: 0;
}

@media (min-width: 768px) {
  .sitefoot__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .sitefoot__shell {
    display: grid;
    grid-template-columns: minmax(14rem, 18rem) 1fr;
    gap: 2.5rem;
    padding-top: 4.5rem;
    padding-bottom: 3rem;
  }

  .sitefoot__brand {
    margin: 0;
  }

  .sitefoot__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 1280px) {
  .sitefoot__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .solonx__cover,
  .journeyx__path {
    transition: none !important;
  }
}
