/* Ads Generator */
#ads-hero {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 96px 36px;
  width: 100%;
  min-height: 37.5rem;
  height: 100%;
}

#ads-hero::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -25%;
  width: 125%;
  height: 100%;
  background-color: var(--cuarto);
  transform: skewY(-10deg);
  z-index: 5;
}

#ads-hero h1,
#ads-hero h2 {
  margin: 0;
}

.ads-hero-info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0rem;
  text-align: center;
  color: var(--white);
  z-index: 10;
}

.ads-hero-info-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #fbdf58;
  cursor: pointer;
}

.ads-hero-info-stars span {
  margin-left: 0.25rem;
  color: var(--white);
  font-size: 0.875rem !important;
  font-weight: 500;
}

.ads-hero-info h1 {
  font-size: 2rem;
}

.ads-hero-info span {
  font-size: 1.25rem;
}

.ads-hero-info img {
  position: relative;
  max-width: 400px;
  z-index: 5;
}

.ads-hero-info img::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: red;
  z-index: 10;
}

.ads-hero-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 2rem;
  z-index: 10;
}

.ads-hero-form-title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ads-hero-form-title h2 {
  font-size: 1.75rem;
}

.ads-hero-form-title span {
  font-size: 1.125rem;
}

@media (max-width: 992px) {
  #ads-hero::after {
    top: 17.5%;
    left: -25%;
    transform: skewY(-45deg);
  }
}

/* Values */
#ads-hero-values {
  position: relative;
  padding-block: 0 3rem;
  z-index: 100;
}

.values-container {
  margin-inline: auto;
  gap: 1rem;
  margin-block: 2rem 0rem;
  padding-inline: 3rem;
  width: 100%;
  height: 10rem;
  border-radius: 2rem;
}

.values-item {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.values-item i {
  margin-bottom: 1rem;
  background-color: var(--white);
  color: var(--cuarto);
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.values-item span:nth-child(2) {
  font-size: 1.25rem;
  font-weight: 700;
}

.splide__pagination__page {
  background: var(--terciario);
}

.splide__pagination__page.is-active {
  background: var(--primario);
}

@media (max-width: 992px) {
  .values-item {
    flex-direction: column;
    text-align: center;
    border-right: none;
  }

  .values-item span:nth-child(1) {
    font-size: 0.875rem;
  }

  .values-item span:nth-child(2) {
    font-size: 1.125rem;
  }
}
