/* ========== Página Influencers ========== */
/* Reutiliza: styles.css (page-subpage, subpage-header, header-logo-subpage, hero-*, content-section*, page-footer). Section 1 = carrusel. Solo particularidades. */

.page-influencers {
  color: var(--tarifario-text);
  overflow-x: hidden;
}

/* ---------- Section 1: Carrusel galería ---------- */
.influencers-gallery-section {
  padding-bottom: 3rem;
}
.influencers-carousel-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.2);
}
.influencers-carousel__img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  background-color: var(--tarifario-bg-content);
}
.carousel-control-prev,
.carousel-control-next {
  width: 3rem;
  height: 3rem;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  opacity: 0.9;
  background-color: rgba(32, 115, 229, 0.8);
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-control-prev {
  left: 1rem;
}
.carousel-control-next {
  right: 1rem;
}
.carousel-control-prev i,
.carousel-control-next i {
  font-size: 1.5rem;
  color: #fff;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  background-color: var(--post-accent);
}
.carousel-indicators {
  margin-bottom: 0.5rem;
}
.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
}
.carousel-indicators .active {
  background-color: var(--post-accent);
}
