/* Empresas e instituciones */

.ft-emp-hero {
  --ft-emp-teal: #14b8ba;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: clamp(30rem, 62vh, 38rem);
  background: linear-gradient(145deg, #141833 0%, #21264a 52%, #2a3058 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.ft-emp-hero-glow {
  position: absolute;
  inset: -20% auto auto -12%;
  width: min(42rem, 70vw);
  height: min(42rem, 70vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 186, 0.22) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
  animation: ft-emp-glow 8s ease-in-out infinite;
}

.ft-emp-hero-dots {
  position: absolute;
  inset: 12% auto auto 6%;
  width: 9rem;
  height: 9rem;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1.2px, transparent 1.3px);
  background-size: 14px 14px;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.ft-emp-hero-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  flex: 1 1 auto;
  min-height: 0;
}

.ft-emp-hero-panel {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 5rem 0 2rem;
}

.ft-emp-hero-copy {
  width: 100%;
  max-width: 40rem;
  padding-left: clamp(1.25rem, 6vw, 5rem);
  padding-right: 1.5rem;
}

.ft-emp-hero-decor {
  width: 9.5rem;
  color: var(--ft-emp-teal);
  margin-bottom: 0.85rem;
  opacity: 0.95;
}

.ft-emp-hero-decor svg {
  width: 100%;
  height: auto;
  display: block;
}

.ft-emp-hero-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.28rem 0.45rem;
  margin: 0 0 1rem;
  font-size: clamp(2.15rem, 4.6vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.ft-emp-hero-title-main,
.ft-emp-hero-title-end {
  color: #fff;
}

.ft-emp-hero-title-accent {
  color: var(--ft-emp-teal);
}

.ft-emp-hero-heart {
  display: inline-flex;
  color: var(--ft-emp-teal);
  font-size: 0.52em;
  transform: translateY(-0.12em);
  animation: ft-emp-heart 3.2s ease-in-out infinite;
}

.ft-emp-hero-heart-svg {
  width: 1.15em;
  height: 1.15em;
  display: block;
}

.ft-emp-hero-lead {
  margin: 0 0 1.55rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 34rem;
}

.ft-emp-hero-accent {
  color: var(--ft-emp-teal);
  font-weight: 700;
}

.ft-emp-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: var(--ft-emp-teal);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(20, 184, 186, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.ft-emp-hero-cta:hover {
  transform: translateY(-2px);
  background: #12a8ad;
  color: #fff;
  box-shadow: 0 16px 32px rgba(20, 184, 186, 0.34);
}

.ft-emp-hero-cta-icon {
  display: grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
}

.ft-emp-hero-media {
  position: relative;
  min-height: 100%;
}

.ft-emp-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
  transform: scale(1.02);
  transition: transform 1.1s ease;
}

.ft-emp-hero:hover .ft-emp-hero-media img {
  transform: scale(1.05);
}

.ft-emp-hero-quote {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(3.5rem, 8vh, 5.5rem);
  z-index: 3;
  width: min(15.5rem, 72%);
  padding: 1rem 1.05rem 1.05rem;
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(18, 38, 72, 0.18);
  color: var(--ft-navy);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  animation: ft-emp-float 4.8s ease-in-out infinite;
  animation-delay: 0.8s;
}

.ft-emp-hero-quote.is-visible {
  opacity: 1;
  transform: none;
}

.ft-emp-hero-quote-mark {
  display: block;
  font-size: 2rem;
  line-height: 0.8;
  color: var(--ft-emp-teal);
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.ft-emp-hero-quote p {
  margin: 0 0 0.45rem;
  font-size: 0.88rem;
  line-height: 1.45;
  font-weight: 650;
  color: var(--ft-navy);
}

.ft-emp-hero-quote-heart {
  color: var(--ft-emp-teal);
  font-size: 0.9rem;
}

.ft-emp-hero-features-wrap {
  position: relative;
  z-index: 3;
  margin-top: auto;
  padding: 1.35rem clamp(1.25rem, 5vw, 4.5rem) 3.1rem;
  background: linear-gradient(180deg, rgba(18, 22, 48, 0.35) 0%, rgba(14, 18, 40, 0.82) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}

.ft-emp-hero-features {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
  max-width: 72rem;
}

.ft-emp-hero-features li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: center;
  opacity: 0;
  transform: translateY(0.55rem);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: var(--ft-emp-feat-delay, 0s);
}

.ft-emp-hero-features li.is-visible {
  opacity: 1;
  transform: none;
}

.ft-emp-hero-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: rgba(20, 184, 186, 0.18);
  color: var(--ft-emp-teal);
  flex-shrink: 0;
  line-height: 0;
  box-shadow: inset 0 0 0 1px rgba(20, 184, 186, 0.28);
}

.ft-emp-hero-svg {
  display: block;
  width: 1.55rem;
  height: 1.55rem;
}

.ft-emp-hero-feature-icon .ft-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
  color: inherit;
}

.ft-emp-hero-feature-copy strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.22rem;
  color: #fff;
}

.ft-emp-hero-feature-copy span {
  display: block;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.ft-emp-hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  line-height: 0;
  color: #fff;
  pointer-events: none;
}

.ft-emp-hero-wave svg {
  width: 100%;
  height: 72px;
  display: block;
}

.ft-emp-hero + .ft-subnav {
  position: relative;
  z-index: 6;
  margin-top: -2.55rem;
  background: transparent;
  border: 0;
  padding: 0 1rem 0.35rem;
}

.ft-emp-hero + .ft-subnav .ft-subnav-inner {
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  max-width: max-content;
  margin: 0 auto;
  padding: 0.45rem;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(18, 38, 72, 0.12);
}

.ft-emp-hero + .ft-subnav .ft-subnav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

/* Stats */
.ft-emp-stats {
  padding: 2.75rem 0 1.25rem;
  background: #fff;
}

.ft-emp-stats-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: 0 14px 36px rgba(18, 38, 72, 0.08);
  border: 1px solid rgba(33, 38, 74, 0.06);
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.ft-emp-stats-panel.is-visible {
  opacity: 1;
  transform: none;
}

.ft-emp-stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 1.35rem 1.25rem;
  transition: background 0.25s ease;
}

.ft-emp-stat + .ft-emp-stat {
  border-left: 1px solid rgba(15, 40, 80, 0.08);
}

.ft-emp-stat:hover {
  background: #f7fbfb;
}

.ft-emp-stat-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.95rem;
  font-size: 1.1rem;
}

.ft-emp-stat--red .ft-emp-stat-icon { background: #d5f4f5; color: #14b8ba; }
.ft-emp-stat--blue .ft-emp-stat-icon { background: #e8f0ff; color: #2563eb; }
.ft-emp-stat--green .ft-emp-stat-icon { background: #e6f7ef; color: #22a06b; }
.ft-emp-stat--orange .ft-emp-stat-icon { background: #fff0e4; color: #e07020; }

.ft-emp-stat-copy strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ft-navy);
  line-height: 1.15;
}

.ft-emp-stat-copy span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.86rem;
  color: var(--ft-text-soft);
  font-weight: 600;
}

/* Partners */
.ft-emp-partners {
  padding: 2rem 0 1.5rem;
  background: #fff;
}

.ft-emp-partners-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 1.35rem;
}

.ft-emp-partners-title {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: var(--ft-navy);
}

.ft-emp-partners-title .ft-icon {
  color: var(--ft-red);
  font-size: 1.35rem;
}

.ft-emp-partners-title .ft-hero-mark {
  padding-bottom: 0.28rem;
}

.ft-emp-partners-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--ft-navy);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.ft-emp-partners-link:hover {
  color: var(--ft-red);
  transform: translateX(2px);
}

.ft-emp-partners-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.ft-emp-partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.7rem;
  min-height: 11.25rem;
  padding: 1.2rem 0.9rem 1.05rem;
  border-radius: 1.15rem;
  background: #fff;
  border: 1px solid rgba(33, 38, 74, 0.07);
  box-shadow: 0 10px 26px rgba(18, 38, 72, 0.07);
  text-decoration: none;
  color: inherit;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease var(--ft-emp-partner-delay, 0s), transform 0.45s ease var(--ft-emp-partner-delay, 0s), box-shadow 0.3s ease, border-color 0.3s ease;
}

.ft-emp-partner-card.is-visible {
  opacity: 1;
  transform: none;
}

.ft-emp-partner-card--link:hover,
.ft-emp-partner-card--link:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(18, 38, 72, 0.12);
  border-color: rgba(20, 184, 186, 0.28);
}

.ft-emp-partner-logo {
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1rem;
  background: transparent;
}

.ft-emp-partner-logo img {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: contain;
}

.ft-emp-partner-wordmark {
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 0.9rem;
  background: linear-gradient(145deg, #d5f4f5, #e8f0ff);
  color: var(--ft-navy);
  font-weight: 800;
  font-size: 0.95rem;
}

.ft-emp-partner-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--ft-navy);
  text-align: center;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.ft-emp-partner-url {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  margin-top: auto;
  color: var(--ft-celeste-dark);
  font-size: 0.75rem;
  font-weight: 700;
}

.ft-emp-partner-url .ft-icon {
  font-size: 0.7rem;
}

/* Activities */
.ft-emp-activities {
  padding: 1.5rem 0 2.5rem;
  background: #fff;
}

.ft-emp-activities-head {
  margin-bottom: 1.65rem;
  max-width: 44rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.ft-emp-activities-head.is-visible {
  opacity: 1;
  transform: none;
}

.ft-emp-activities-title {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: var(--ft-navy);
  line-height: 1.25;
}

.ft-emp-activities-title .ft-icon {
  color: var(--ft-red);
  font-size: 1.4rem;
}

.ft-emp-activities-lead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ft-text-soft);
}

.ft-emp-activities-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.ft-emp-activity-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(33, 38, 74, 0.07);
  box-shadow: 0 12px 30px rgba(18, 38, 72, 0.08);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.3s ease;
  transition-delay: var(--ft-emp-act-delay, 0s);
}

.ft-emp-activity-card.is-visible {
  opacity: 1;
  transform: none;
}

.ft-emp-activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(18, 38, 72, 0.14);
}

.ft-emp-activity-media {
  margin: 0;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #e8eef5;
}

.ft-emp-activity-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.ft-emp-activity-card:hover .ft-emp-activity-media img {
  transform: scale(1.06);
}

.ft-emp-activity-body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.15rem 1.2rem 1.35rem;
}

.ft-emp-activity-heading {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.ft-emp-activity-icon {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 0.75rem;
  background: #d5f4f5;
  color: var(--ft-red);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.ft-emp-activity-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ft-navy);
  line-height: 1.25;
}

.ft-emp-activity-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ft-text-soft);
}

/* Final CTA */
.ft-emp-cta {
  padding: 1rem 0 3.5rem;
  background: #fff;
}

.ft-emp-cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  border-radius: 1.6rem;
  overflow: hidden;
  background: linear-gradient(120deg, #12a8ad 0%, #14b8ba 48%, #0f9ea3 100%);
  box-shadow: 0 18px 42px rgba(20, 184, 186, 0.28);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.ft-emp-cta-banner.is-visible {
  opacity: 1;
  transform: none;
}

.ft-emp-cta-media {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
}

.ft-emp-cta-media img {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.8s ease;
}

.ft-emp-cta-banner.is-visible:hover .ft-emp-cta-media img {
  transform: scale(1.04);
}

.ft-emp-cta-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  padding: clamp(1.6rem, 4vw, 2.75rem);
  color: #fff;
}

.ft-emp-cta-trail {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  width: 7.5rem;
  color: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.ft-emp-cta-banner.is-visible .ft-emp-cta-trail-path {
  animation: ft-emp-dash 9s linear infinite;
}

.ft-emp-cta-heart {
  position: absolute;
  top: 1.35rem;
  left: clamp(1.4rem, 4vw, 2.5rem);
  color: rgba(255, 255, 255, 0.85);
  width: 1.35rem;
  animation: ft-emp-heart 3.4s ease-in-out infinite;
}

.ft-emp-cta-heart-svg {
  width: 100%;
  height: auto;
  display: block;
}

.ft-emp-cta-title {
  margin: 0.75rem 0 0;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 18ch;
}

.ft-emp-cta-accent {
  display: inline;
  color: #fff;
}

.ft-emp-cta-lead {
  margin: 0;
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.ft-emp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  align-self: flex-start;
  margin-top: 0.35rem;
  padding: 0.82rem 1.3rem;
  border-radius: 999px;
  background: #fff;
  color: var(--ft-navy);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ft-emp-cta-btn:hover {
  transform: translateY(-2px);
  color: var(--ft-navy);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.ft-emp-cta-btn-icon {
  color: var(--ft-red);
  display: grid;
  place-items: center;
}

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

@keyframes ft-emp-heart {
  0%, 100% { transform: translateY(-0.12em) scale(1); }
  50% { transform: translateY(-0.28em) scale(1.08); }
}

@keyframes ft-emp-glow {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes ft-emp-dash {
  to { stroke-dashoffset: -180; }
}

@media (max-width: 1100px) {
  .ft-emp-partners-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .ft-emp-stats-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ft-emp-stat:nth-child(3),
  .ft-emp-stat:nth-child(4) {
    border-top: 1px solid rgba(15, 40, 80, 0.08);
  }

  .ft-emp-stat:nth-child(odd) {
    border-left: 0;
  }

  .ft-emp-stat:nth-child(even) {
    border-left: 1px solid rgba(15, 40, 80, 0.08);
  }

  .ft-emp-activities-grid {
    grid-template-columns: 1fr;
  }

  .ft-emp-partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .ft-emp-hero {
    min-height: 0;
  }

  .ft-emp-hero-top {
    grid-template-columns: 1fr;
  }

  .ft-emp-hero-media {
    min-height: 16.5rem;
    order: -1;
  }

  .ft-emp-hero-media img {
    position: relative;
    height: 16.5rem;
    clip-path: none;
  }

  .ft-emp-hero-quote {
    bottom: 1rem;
    right: 1rem;
    animation: none;
  }

  .ft-emp-hero-panel {
    padding: 2.25rem 0 1.25rem;
  }

  .ft-emp-hero-features {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .ft-emp-hero-features-wrap {
    padding-bottom: 2.5rem;
  }

  .ft-emp-hero + .ft-subnav .ft-subnav-inner {
    border-radius: 1.25rem;
    max-width: 100%;
  }

  .ft-emp-cta-banner {
    grid-template-columns: 1fr;
  }

  .ft-emp-cta-media img {
    min-height: 14rem;
  }
}

@media (max-width: 700px) {
  .ft-emp-stats-panel {
    grid-template-columns: 1fr;
  }

  .ft-emp-stat,
  .ft-emp-stat + .ft-emp-stat,
  .ft-emp-stat:nth-child(even),
  .ft-emp-stat:nth-child(3),
  .ft-emp-stat:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(15, 40, 80, 0.08);
  }

  .ft-emp-stat:first-child {
    border-top: 0;
  }

  .ft-emp-partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .ft-emp-hero-quote,
  .ft-emp-hero-features li,
  .ft-emp-stats-panel,
  .ft-emp-partner-card,
  .ft-emp-activity-card,
  .ft-emp-activities-head,
  .ft-emp-cta-banner,
  .ft-emp-hero-heart,
  .ft-emp-cta-heart,
  .ft-emp-hero-glow,
  .ft-emp-cta-trail-path,
  .ft-emp-hero-media img,
  .ft-emp-activity-media img,
  .ft-emp-cta-media img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
