@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.banner-info {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  --gradient-colors: #ab005c, #e6007e, #cc0068, #ff4da6;
  background: linear-gradient(45deg, var(--gradient-colors));
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}
.page-template-template-inicio .banner-info {display: none;}
.banner-info .container {
  position: relative;
}

.banner-info .banner-inner {
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 56px;
  padding-bottom: 56px;
  box-sizing: border-box;
  z-index: 3;
}

.banner-overlay {
  background-color: rgba(0, 0, 0, 0.4);
}

.banner-info .watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Nunito Sans", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  color: #7a0841;
  line-height: 1;
  letter-spacing: 12px;
  font-size: clamp(4rem, 8vw, 8rem);
  opacity: 0.25;
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .banner-info .watermark {
    font-size: 7rem;
  }
}

@media (min-width: 1400px) {
  .banner-info .watermark {
    font-size: 9.7rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .banner-info .watermark {
    font-size: 6rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .banner-info .watermark {
    font-size: 5rem;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .banner-info .watermark {
    font-size: 4rem;
  }
}

@media (max-width: 575px) {
  .banner-info .watermark {
    font-size: 2.5rem;
    letter-spacing: 5px;
  }
}

.banner-info h1 {
  font-family: "Quicksand", "Nunito Sans", sans-serif;
  font-weight: 800;
  color: #ffffff;
  font-size: 40px;
  line-height: 48px;
  z-index: 2;
  text-align: left;
  margin: 0;
}

.banner-info span.banner-prefix {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  margin-bottom: 8px;
  display: block;
}

.banner-info p.lead {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 400px;
  background: #f5f5f5;
  padding: 16px 10px;
  font-family: "Nunito Sans", "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  text-align: center;
  margin: 0;
  z-index: 2;
}

@media (max-width: 991.98px) {
  .banner-info .banner-inner {
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .banner-info .watermark {
    display: none;
  }

  .banner-info h1 {
    position: relative;
    padding: 0;
    font-size: clamp(1.25rem, 5vw, 1.75rem);
    line-height: 1.2;
    text-align: center;
    margin: 0 0 0.5rem;
  }

  .banner-info p.lead {
    position: relative;
    width: 90%;
    max-width: 320px;
    margin: 0;
    padding: 0.75rem 1rem;
    line-height: 1.4;
  }
}

@media (max-width: 575.98px) {
  .banner-info h1 {
    font-size: clamp(1rem, 5vw, 1.5rem);
    margin-bottom: 0.5rem;
  }

  .banner-info p.lead {
    font-size: clamp(0.75rem, 3vw, 0.9rem);
    padding: 0.5rem 0.75rem;
  }
}

.banner-inner {
  position: relative;
  z-index: 3;
}

.banner-bg {
  background-attachment: scroll;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform;
  transition: transform 0.2s ease-out;
}
