.clients-map {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 8.5rem) 1.25rem clamp(4.5rem, 9vw, 7rem);
  background:
    radial-gradient(circle at 10% 0%, rgb(247 185 47 / 18%), transparent 21rem),
    radial-gradient(circle at 90% 80%, rgb(167 45 143 / 10%), transparent 24rem),
    #fffdfb;
}

.clients-map .container {
  display: block;
  width: min(100%, 1120px);
  max-width: none;
  min-height: 0;
  margin: 0 auto;
  padding: 0;
}

.clients-map__header {
  max-width: 46rem;
  margin: 0 auto clamp(2.75rem, 6vw, 4.5rem);
  text-align: center;
  opacity: 0;
  transform: translateY(1.5rem);
}

.clients-map.is-visible .clients-map__header,
.clients-map.is-visible .clients-map__container {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease-out, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.clients-map__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #8c2b7b;
  font-family: "Poppins", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.clients-map__eyebrow::before,
.clients-map__eyebrow::after {
  width: 1.6rem;
  height: 2px;
  background: #f7b92f;
  content: "";
}

.clients-map__header h1 {
  margin: 1rem 0;
  color: #32153b;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  letter-spacing: -0.06em;
  line-height: 1.05;
  text-wrap: balance;
}

.clients-map__header p {
  max-width: 38rem;
  margin: 0 auto;
  color: #67586d;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.7;
}

.clients-map__container {
  position: relative;
  opacity: 0;
  transform: translateY(1.5rem);
}

.clients-map.is-visible .clients-map__container {
  transition-delay: 120ms;
}

.clients-map__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(116 37 102 / 14%);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 1.5rem 4rem rgb(57 23 67 / 14%);
}

.clients-map__frame::before {
  position: absolute;
  z-index: 1;
  top: 1rem;
  left: 1rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgb(116 37 102 / 12%);
  border-radius: 999px;
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 0.4rem 1rem rgb(57 23 67 / 10%);
  color: #742566;
  content: "Clientes VIDA";
  font-family: "Poppins", sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.clients-map__frame iframe {
  display: block;
  width: 100%;
  height: clamp(28rem, 58vw, 40rem);
  border: 0;
}

@media (max-width: 500px) {
  .clients-map {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .clients-map__frame {
    border-radius: 1.1rem;
  }

  .clients-map__frame iframe {
    height: 32rem;
  }
}
