/* Banner ReDi Systems — prenet-banner.css (paleta ReDi) */

.prenet-banner {
  width: 100%;
  max-width: 300px;
  height: 250px;
  background: #00113a;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

/* Acento naranja ReDi — línea decorativa superior */
.prenet-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #F26522;
  z-index: 30;
}

.prenet-banner .pb-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 28px 44px;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.prenet-banner .pb-slide.pb-active {
  opacity: 1;
  pointer-events: auto;
}

.prenet-banner .pb-num {
  font-family: Georgia, serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255,255,255,.28);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.prenet-banner .pb-text {
  font-family: 'Outfit', 'DM Sans', 'Montserrat', Arial, sans-serif;
  font-size: 19px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.45;
}

.prenet-banner .pb-text em {
  font-style: normal;
  color: rgba(255,255,255,.78);
  font-weight: normal;
  font-size: 16px;
}

.prenet-banner .pb-url {
  margin-top: 18px;
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
  color: rgba(255,255,255,.45);
}

.prenet-banner .pb-cta {
  margin-top: 8px;
  display: inline-block;
  font-family: 'Outfit', 'DM Sans', Arial, sans-serif;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,.45);
  padding-bottom: 2px;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.prenet-banner .pb-marca {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: 'Outfit', 'DM Sans', Arial, sans-serif;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  z-index: 10;
  pointer-events: none;
}

.pb-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  z-index: 20;
  background: rgba(0,17,58,.7);
}

.pb-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,.40);
  font-size: 14px;
  transition: color .2s;
  user-select: none;
  flex-shrink: 0;
}

.pb-arrow:hover {
  color: rgba(255,255,255,.9);
}

.pb-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.pb-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  cursor: pointer;
  transition: background .3s, transform .3s;
}

.pb-dot.pb-dot-active {
  background: #F26522;
  transform: scale(1.3);
}

.pb-progress-bar {
  position: absolute;
  bottom: 36px;
  left: 0;
  height: 1px;
  background: rgba(255,255,255,.10);
  width: 100%;
  z-index: 10;
}

.pb-progress-fill {
  height: 100%;
  background: #F26522;
  width: 0%;
}

/* Responsive — pantallas angostas */
@media (max-width: 374px) {
  .prenet-banner {
    max-width: 100%;
    height: 220px;
  }

  .prenet-banner .pb-slide {
    padding: 24px 20px 36px;
  }

  .prenet-banner .pb-text {
    font-size: 16px;
  }

  .prenet-banner .pb-text em {
    font-size: 14px;
  }

  .prenet-banner .pb-num {
    font-size: 9px;
    margin-bottom: 12px;
  }

  .prenet-banner .pb-cta {
    font-size: 10px;
  }
}
