/* ==== HERO SLIDER ==== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 94vh;
    overflow: hidden;
    border-bottom: 18px solid #ffc10d;
    padding: 0px;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slider .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
  pointer-events: none; /* 🔑 evita que bloquee los clics */
}


.hero-slider .content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
}

.hero-slider h1 {
    font-size: 2.9rem;
    margin-bottom: 1rem;
    font-weight: 400;
    font-family: 'Bakbak One';
    color: #fff;
    text-transform: uppercase;
}

.hero-slider p {
    font-size: 1.35rem;
    margin-bottom: 2rem;
    color: #eee;
    font-family: system-ui;
    font-weight: 500;
}

.hero-slider .btn {
  display: inline-block;
  background: #ffc20b;
  color: #222;
  font-weight: 600;
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero-slider .btn:hover {
  background: #e6aa00;
}

/* Controles */
.hero-slider .controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 3;
}
.hero-slider .controls span {
  cursor: pointer;
  font-size: 2rem;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4%;
  transition: background 0.3s;
}
.hero-slider .controls span:hover {
    background: rgb(0 0 0 / 7%);
}

/* ==== RESPONSIVE ==== */
@media (max-width: 992px) {
  .hero-slider h1 { font-size: 2.2rem; }
  .hero-slider p { font-size: 1rem; }
}
@media (max-width: 576px) {
  .hero-slider { height: 70vh; }
  .hero-slider h1 { font-size: 1.8rem; }
  .hero-slider .controls {top: 65%;}
}
