.bcn-intro-highlights--strengths {
  position: relative;
  z-index: 10;
}

.bcn-intro-highlights--strengths .floating_content {
  margin-top: 0 !important;
}
.bcn-intro-highlights.bcn-home-intro__floating {
  margin-top: var(--bcn-floating-overlap, -110px);
  position: relative;
  z-index: 10;
}

.bcn-intro-highlights .bcn-home-intro__topbar {
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--bcn-color-surface, #ffffff);
  color: var(--bcn-color-surface, #ffffff);
  padding: 20px 0;
}

.bcn-intro-highlights .bcn-home-intro__topbar a {
  color: var(--bcn-color-surface, #ffffff);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 400;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 16px 16px;
}

.bcn-intro-highlights .bcn-home-intro__phone {
  font-size: 1.4rem;
  font-weight: 700;
}

.bcn-intro-highlights .bcn-home-intro__email {
  background-image: url("../assets/icons/envelope-solid-blanco.svg");
  padding-left: 20px;
}

.bcn-intro-highlights .bcn-home-intro__address {
  background-image: url("../assets/icons/map-marker-solid-blanco.svg");
  padding-left: 20px;
}

.bcn-intro-highlights .bcn-home-intro__cta {
  margin-left: auto;
  padding-right: 32px;
  background-image: url("../assets/icons/flecha_derecha_blanca.svg");
  background-position: right center;
  background-size: 22px;
  font-size: 1.4rem;
  font-weight: 300;
}

.bcn-intro-highlights .bcn-home-intro__strengths {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--bcn-color-surface, #ffffff);
  box-shadow: var(--bcn-shadow-card, 3px 10px 30px 0 rgba(0, 0, 0, 0.1));
}

.bcn-intro-highlights .bcn-home-intro__strength {
  display: flex;
  gap: 12px;
  padding: 20px;
}

.bcn-intro-highlights .bcn-home-intro__strength-icon {
  width: 40px;
  flex: 0 0 40px;
}

.bcn-intro-highlights .bcn-home-intro__strength-copy {
  color: var(--bcn-color-text, #575756);
}

.bcn-intro-highlights .bcn-home-intro__strength-copy h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.bcn-intro-highlights .bcn-home-intro__strength-copy p {
  margin: 0;
  font-size: 0.7rem;
}

@media (max-width: 991px) {
  .bcn-intro-highlights.bcn-home-intro__floating {
    margin-top: var(--bcn-floating-overlap-mobile, -168px);
  }

  .bcn-intro-highlights .bcn-home-intro__topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .bcn-intro-highlights .bcn-home-intro__cta {
    margin-left: 0;
  }

  .bcn-intro-highlights .bcn-home-intro__phone,
  .bcn-intro-highlights .bcn-home-intro__cta {
    font-size: 0.8rem;
  }

  .bcn-intro-highlights .bcn-home-intro__strengths {
    grid-template-columns: 1fr;
  }
}