/* =====================================================
   SUPER 32 — SLIDER IMPACTO VISUAL (SIN CTA)
===================================================== */

.s32-heroC {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #000;
}

.s32C-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.s32C-slide.active {
  opacity: 1;
}

.s32C-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  transition: transform 4s ease;
}

.s32C-slide.active img {
  transform: scale(1);
}

.s32C-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.15));
  z-index: 2;
}

.s32C-content {
  position: absolute;
  z-index: 5;
  left: 65px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 650px;
}

/* TITULO MULTILÍNEA + TYPEWRITER */
.s32C-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  position: relative;
}

/* Typewriter en primera línea */
.s32C-title span {
  display: inline-block;
  overflow: hidden;
  border-right: 3px solid #F7CB15;
  white-space: nowrap;
  animation: typing 2s steps(22, end) forwards, blink .7s infinite;
}

/* Animaciones */
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  0%, 100% { border-color: transparent; }
  50% { border-color: #F7CB15; }
}

/* SUBTÍTULO */
.s32C-sub {
  font-size: 22px;
  margin-top: 15px;
  opacity: 0;
  transform: translateY(18px);
  transition: .65s ease 2.2s;
}

.s32C-slide.active .s32C-sub {
  opacity: 1;
  transform: translateY(0);
}

/* DOTS */
.s32C-dots {
  position: absolute;
  bottom: 22px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.s32C-dots button {
  width: 38px;
  height: 4px;
  background: rgba(255,255,255,0.4);
  border: none;
  margin: 0 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: .25s;
}

.s32C-dots button.active {
  background: #F7CB15;
  box-shadow: 0 0 6px #F7CB15;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .s32-heroC { height: 380px; }
  .s32C-title { font-size: 38px; }
}

@media (max-width: 600px){
  .s32-heroC { height: 290px; }
  .s32C-content { left: 30px; max-width: 85%; }
  .s32C-title { font-size: 28px; }
  .s32C-sub { font-size: 14px; }
}
