/**
 * Card de confiança na hero (substitui o antigo .float-box de seguidores entregues).
 * Mesma zona: col direita da .sf-hero, ~200×160px.
 */

.sf-hero .gl-home-hero-trust-wrap {
  position: relative;
  z-index: 2;
  width: 200px;
  margin: -74px auto 0 auto;
  right: -70px;
}

.gl-home-hero-trust {
  box-sizing: border-box;
  position: relative;
  width: 200px;
  height: 160px;
  padding: 13px 12px 11px;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(148, 95, 253, .18);
  background: linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, #faf7ff 45%, #f3edff 100%);
  box-shadow: 0 4px 0 rgba(148, 95, 253, .06), 0 18px 40px rgba(32, 23, 58, .12);
  font-family: "Nunito", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 4px;
  margin-left: 0;
  margin-top: 0;
}

@media (min-width: 992px) {
  .gl-home-hero-trust {
    margin-left: -155px;
    margin-top: 47px;
  }
}

.gl-home-hero-trust::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff3366, #945ffd 45%, #34d08c);
  opacity: 0.95;
}

.gl-home-hero-trust__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 2px;
  padding: 3px 10px 4px;
  border-radius: 999px;
  background: rgba(148, 95, 253, .08);
  border: 1px solid rgba(148, 95, 253, .12);
}

.gl-home-hero-trust__stars {
  display: inline-flex;
  gap: 1px;
  color: #ffbc42;
  font-size: 11px;
  line-height: 1;
  letter-spacing: -0.06em;
  text-shadow: 0 1px 6px rgba(255, 188, 66, .35);
}

.gl-home-hero-trust__rating {
  font-size: 12px;
  font-weight: 950;
  color: #20173a;
  letter-spacing: -0.02em;
  line-height: 1;
}

.gl-home-hero-trust__out-of {
  font-weight: 800;
  color: #6b6289;
  font-size: 10px;
}

.gl-home-hero-trust__count {
  margin: 2px 0 0;
  padding: 0 2px;
  width: 100%;
  max-width: 100%;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #945ffd;
  font-variant-numeric: tabular-nums;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.gl-home-hero-trust__caption {
  margin: 0;
  max-width: 100%;
  padding: 0 2px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  color: #5f5678;
}

.gl-home-hero-trust--loaded .gl-home-satisfied-customers__value {
  animation: glHomeHeroTrustPop .28s cubic-bezier(.2, .9, .2, 1) both;
}

@keyframes glHomeHeroTrustPop {
  from {
    opacity: 0.4;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 991.98px) {
  .sf-hero .gl-home-hero-trust-wrap {
    right: auto;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .gl-home-hero-trust__count {
    font-size: 19px;
  }
}
