/* Contenedor general */
.hero-slider {
  position: relative;
  width: 100%;
  height: 562px;
  overflow: hidden;
  color: #fff;
}

/* Cartel fijo arriba */
.hero-slider .hero-banner__text {
  position: absolute;
  top: 77px;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  max-width: 1193px;
  z-index: 22;
}


/* Contenido central */
.hero-slider .hero-contenido {
  position: absolute;
  top: 245px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  width: 85%;
  max-width: 1193px;
}
.hero-titulo {
  margin: 0px;
  font-family: Smooch Sans;
  font-weight: 600;
  font-size: 78px;
  line-height: 63%;
  letter-spacing: 0%;
}
.hero-subtitulo {
  margin-top: 32px;
  margin-bottom: 32px;
  font-family: Aparajita;
  font-weight: 400;
  font-size: 36px;
  line-height: 83%;
  letter-spacing: 0%;
}
.btn-hero {
    background: transparent;
    border: 1px solid #FFFFFF;
    color: #fff;
    padding-top: 9px;
    padding-bottom: 17px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 2px;
    text-decoration: none;
    transition: 0.3s;
    font-family: Aparajita;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}
.btn-hero:hover {
  background: transparent;
}

/* Swiper */
.heroSwiper {
  width: 100%;
  height: 100%;
}
.heroSwiper .swiper-slide {
  background-size: cover;
  background-position: center;
}

/* Navegación personalizada */
.hero-navigation {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  max-width: 1193px;
  display: flex;
  justify-content: center;
  gap: 15px;
  z-index: 30;
}
.hero-bar {
  cursor: pointer;
  text-align: center;
  width: 24%;
  max-width: 287px;
}
.hero-bar .barra {
  display: block;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.3s, transform 0.3s;
}
.hero-bar.active .barra {
  background: #fff;

}
.hero-bar .desc {
    color: #fff;
    font-family: 'Montserrat',sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-top: 16px;
    margin-bottom: 0px;
    text-align: start;
}


@media (max-width: 1300px){
    .hero-slider .hero-banner__text{
        width: 85%;
        min-width: 1057px;
    }
    .hero-slider .hero-contenido,
    .hero-navigation{
        min-width: 1057px;
    }
}

@media (max-width: 1120px){
    .hero-slider .hero-banner__text{
        display: none;
     }
    .hero-slider .hero-contenido,
    .hero-navigation{
        min-width: auto;
    }
}


@media (max-width: 1120px){
    .hero-slider {
        height: 371px;
    }
    .hero-slider .hero-contenido{
        display: flex;
        flex-direction: column;
        align-items: center;
        top: 215px;
    }
    .hero-bar .desc{
        display: none;
    }
    .btn-hero{
        width: 85%;
        text-align: center;
    }
    .hero-bar .barra{
        height: 21px;
        border-radius: 50%;
    }
    .hero-bar{
        width: 21px;
    }
    .hero-navigation{
        bottom: 12px;
    }
    .hero-titulo{
        font-size: 57px;
        
    }
    .hero-subtitulo{
        font-size: 26px;
        margin-top: 16px;
        margin-bottom: 58px;
    }
}