body, .header-wrapper, .header__submenu, .list-menu {
  background: #f6f2ea !important;
}

.announcement-bar {
  background: #B98631 !important;
}

.slide-content h2 {
  font-size: clamp(2rem, 6vw, 3rem);
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
}

@media screen and (max-width: 991px) {
  .slider-container-resp {
    height: auto;
    padding: 40px 0px;
    margin: 0 auto;
  }
}

.gradient {
  background: radial-gradient(rgb(252, 196, 181), rgb(252, 196, 181) 25%, rgb(252, 232, 174) 100%);
}

.slider__questions {
  display: flex;
  margin-top: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.slider__questions--item {
  position: relative;
  padding: 16px 16px 16px 28px;
  border-radius: 8px;
  font-size: 1.5rem;
  color: #414d35;
  background-color: #e5e9de;
  border: 1px solid #414d35;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .slider__questions--item {
    display: flex;
    gap: 8px;
  }
}
.slider__questions--item input {
  opacity: 0;
}
.slider__questions--item.active {
  background-color: #596a46;
  color: white;
}
.slider__questions--item.active .slider__questions--icon {
  color: #596a46;
}
.slider__questions--icon {
  position: absolute;
  top: 12px;
  left: 9px;
  text-align: center;
  padding-top: 3px;
  background-color: white;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: 1px solid #414d35;
}
.slider__questions--name {
  margin-top: 16px;
}
.slider__questions--txt {
  display: block;
  position: relative;
  padding-right: 20px;
  top: -24px;
  left: 20px;
}
.slider__resp {
  flex-direction: row;
}
@media screen and (max-width: 991px) {
  .slider__resp {
    flex-direction: column-reverse;
    height: auto !important;
    padding: 40px 16px;
  }
}

.logo {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 180px;
  z-index: 10;
}

.btn {
  position: relative;
  padding: 10px 24px;
  border-radius: 8px;
}
.btn__primary {
  background-color: #212121;
  margin-top: 20px;
  color: white;
  text-decoration: none;
}

.tit {
  font-size: 2.6rem;
  margin-bottom: 12px;
}
.tit__sub {
  font-size: 1.4rem;
  margin-top: 8px;
  margin-bottom: 0;
}

.txt__resp {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.formulario {
  position: relative;
}

.input {
  font-size: 1.5rem;
  padding: 12px 18px;
  background-color: white;
  border: 1px solid #FFC000;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
}

.submit {
  width: 100%;
  background-color: #FFC000;
  border: none;
  border-radius: 40px;
  font-size: 1.5rem;
  padding: 8px 18px;
  color: white;
  max-width: 200px;
  margin-top: 16px;
  cursor: pointer;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  transform: translateX(0);
}

.slider__resp {
  align-items: center;
}

.slider-slide.active {
  opacity: 1;
  z-index: 2;
}

.slider-slide-resp {
  position: relative;
  left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 5%;
  border-radius: 16px;
  text-align: center;
  width: 100%;
  max-width: 600px;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 991px) {
  .slider-slide-resp {
    left: 0px;
    top: -120px;
  }
}

.slider-slide-img {
  width: 100%;
  max-width: 260px;
  border-radius: 20px;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  .slider-slide-img {
    width: 80%;
    z-index: unset;
    margin: 0 auto;
  }
}

.slide-content {
  max-width: 800px;
  padding: 20px;
}

.slider-btn {
  position: absolute;
  bottom: 0px;
  transform: translateY(-50%);
  background: #FFC000 !important;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.slider-btn:hover {
  background: #e29400;
}

.prev-btn {
  left: calc(50% - 60px);
}

.next-btn {
  right: calc(50% - 60px);
}

/* Agregar estilos para la barra de progreso */
.progress-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #fffbc5;
  z-index: 2;
}

.progress-bar {
  height: 100%;
  width: 0;
  background: #FFC000;
  transition: width 0.3s ease;
}

/* MENSAJE DE ERROR */
.formulario__grupo {
  width: 100%;
}

.formulario__grupo-input {
  position: relative;
  width: 100%;
}

.formulario__input-error {
  font-family: var(--font-auto-pro);
  font-size: 0.9rem;
  margin-bottom: 0px;
  padding: 4px 8px;
  display: none;
}

.formulario__input-error-activo {
  display: block;
}

.formulario__validacion-estado {
  position: absolute;
  right: 6px;
  top: 24px;
  z-index: 100;
  font-size: 16px;
  opacity: 0;
}

#banner_reserva .formulario__validacion-estado {
  position: absolute;
  right: unset;
  top: 18px;
  margin-left: 120px;
}

#banner_reserva .item_form:nth-child(2) .formulario__validacion-estado {
  margin-left: 144px;
}

#banner_reserva .item_form:nth-child(4) .formulario__validacion-estado {
  margin-left: 156px;
}

.formulario__mensaje, .formulario__captcha {
  height: 45px;
  line-height: 45px;
  background: #F66060;
  padding: 0 15px;
  border-radius: 3px;
  margin-bottom: 12px;
  display: none;
}

.formulario__mensaje-activo {
  display: block;
}

.formulario__mensaje-exito {
  background-color: #1eab0b;
  margin-top: 8px;
  font-size: 1.1rem;
  padding: 10px 15px;
  color: #ffffff;
  display: none;
}

.formulario__mensaje-exito-activo {
  display: block;
}

/* Estilos para Validacion */
.formulario__grupo-correcto .formulario__validacion-estado {
  color: #1ed12d;
  opacity: 1;
}

.formulario__grupo-incorrecto .formulario__label {
  color: #bb2929;
}

.formulario__grupo-incorrecto .formulario__validacion-estado {
  color: #bb2929;
  opacity: 1;
}

.formulario__grupo-incorrecto .formulario__input {
  border: 3px solid #bb2929;
}/*# sourceMappingURL=style.css.map */