

/* Section */

.hero-cta {
  position: relative;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  z-index: 2;
}

.hero-cta--overlap {
  margin-bottom: calc(var(--hero-cta-overlap, 0px) * -1);
  z-index: 3;
}

/* Overlay */

.hero-cta__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* Content */

.hero-cta__content {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}

.hero-cta__content-inner {
  display: block;
}

.hero-cta__content-inner--side {
  display: flex;
  align-items: center;
  gap: 88px;
}

.hero-cta__main {
  flex: 1;
}

.hero-cta__buttons--side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 0;
}

.hero-cta__content-inner--side.hero-cta__content-inner--left .hero-cta__buttons--side {
  order: 2;
}

.hero-cta__content-inner--side.hero-cta__content-inner--right .hero-cta__buttons--side {
  order: 0;
}

/* Title */

.hero-cta__title-wrapper {
  margin-bottom: 0;
  max-width: 900px;
}

.hero-cta__graphic {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
}

.hero-cta__graphic--left {
  justify-content: flex-start;
  padding-left: 77px;
}

.hero-cta__graphic--center {
  justify-content: center;
}

.hero-cta__graphic--right {
  justify-content: flex-end;
  padding-right: 77px;
}

.hero-cta__graphic img {
  display: block;
  max-width: 520px;
  height: auto;
}

@media (max-width: 1440px) {
  .hero-cta__graphic img {
    max-width: 480px;
  }
}

@media (max-width: 900px) {
  .hero-cta__graphic img {
    max-width: 320px;
  }
  .hero-cta__content-inner--side {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .hero-cta__buttons--side {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .hero-cta__graphic img {
    max-width: 280px;
  }
}

@media (max-width: 767px) {
  .hero-cta__graphic img {
    max-width: 140px;
  }
  .hero-cta__graphic--left {
    padding-left: 24px;
  }
  .hero-cta__graphic--right {
    padding-right: 24px;
  }
}

.hero-cta__title {
  margin: 0;
}

.txt--dark .hero-cta__title {
  color: #FFF;
}

/* Text */

.hero-cta__text {
  margin-top: 0;
}

.hero-cta__title-wrapper + .hero-cta__text {
  margin-top: 30px;
}

/* .hero-cta__text,
.txt--dark .hero-cta__text {
  color: #FFF;
  font-family: "Open Sans", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 45px */
} */

/* Buttons */

.hero-cta__buttons {
  margin-top: 0;
  max-width: 900px;
}

.hero-cta__title-wrapper + .hero-cta__buttons,
.hero-cta__text + .hero-cta__buttons {
  margin-top: 48px;
}

.hero-cta__steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
  margin-top: 0;
}

.hero-cta__step {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.hero-cta__step-number {
  width: 70px;
  height: 70px;
  background: #EEE;
  opacity: 0.4;
  transition: opacity 0.2s ease-in-out;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}

.hero-cta__step:hover .hero-cta__step-number {
  opacity: 1;
}

.hero-cta__step-label {
  color: #FFF;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}

/* .hero-cta__buttons {
  display: flex;
  flex-wrap: wrap;
} */

/* Responsive */

@media (max-width: 1139px) and (min-width: 768px) {
  /* Text */
  .hero-cta__text {
    font-size: 26px; /* ~87% de 30px */
  }
}

@media (max-width: 767px) {
  .hero-cta .container {
    padding-left: 0;
    padding-right: 0;
  }
  /* Text */
  .hero-cta__text {
    font-size: 22px; /* ~73% de 30px */
  }
  .hero-cta__step-number {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }
  .hero-cta__step-label {
    font-size: 20px;
  }
}