#gs-header {
    transition: transform 0.35s ease;
}

#gs-header.header--hidden {
    transform: translateY(-150%);
}

@media (min-width: 768px) {
    #gs-header {
        transform: translateX(-50%);
    }

    #gs-header.header--hidden {
        transform: translate(-50%, -150%);
    }
}

.hero-overlay {
  background: linear-gradient(
    to left,
    rgba(var(--overlay-color), 0.5) 0%,
    rgba(var(--overlay-color), 1) 85%
  );
}

.hero-swiper .swiper-pagination {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;

  display: flex;
  gap: 12px;
  align-items: center;

  z-index: 20;
}

.hero-swiper .swiper-pagination-bullet {
  position: relative;
  width: 60px;
  height: 3px;
  background: rgba(255,255,255,0.4);
  border-radius: 999px;
  opacity: 1;
  overflow: hidden;
}

.hero-swiper .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--color-amarillo-pr);
  border-radius: inherit;
}

.hero-swiper .swiper-pagination-bullet-active::after {
  animation: fillProgress 4s linear forwards;
}

.hero-swiper .swiper-pagination-bullet-active.is-animating::after {
  animation: fillProgress 4s linear forwards;
}

@keyframes fillProgress {
  from { width: 0%; }
  to   { width: 100%; }
}

/*******************/
.content-h2-pr {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-tx-cafe);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.content-h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-tx-cafe);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.content-p{
  text-align: justify;
}

.content-list {
  list-style: none;
  background: var(--color-azul-sec);
  padding: 15px;
  border-radius: 20px;
  margin: 1.5rem 0;
}

.content-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 12px;
  color: var(--color-tx-blanco);
  line-height: 1.6;
}

.content-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 18px;
  height: 18px;
  background-image: url("/wp-content/uploads/2026/01/check-ok-icon-color-blanco.png");
  background-size: contain;
  background-repeat: no-repeat;
}


