@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Averia+Serif+Libre:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

@font-face {
  font-family: "Recoleta";
  src: url("../fonts/Recoleta-RegularDEMO.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

/* ===== RESETEO GENERAL ===== */
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* evita barra lateral horizontal */
  background-color: #f8f9ff; /* o el color de fondo general */
  scrollbar-color:#9d52ff #f1f1f1; /* thumb color, track color */
  scrollbar-width: thin; /* o auto, o none */
}


* {
  font-family: Inter, sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* ===== HEADER GENERAL ===== */
header {
  position: relative; 
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #dddddd;
  padding: 20px 0;
  z-index: 100;
}

.welcome-text {
  text-align: center;
  font-size: 18px; 
  color: #444;
  font-weight: 500;
}

.welcome-detail {
  display: none;
  color: #555;
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.3;
  align-items: center;
  gap: 6px;
}

.notif-strong {
  font-weight: 600;
  color: #7000fe;
}

.notif-icon {
  font-size: 14px;
  color: #7000fe;
}
/*==== CONTENEDOR INTERNO ===== */
.items-header {
  width: 90%;               /* en lugar de 96% */
  margin: 0 auto;
  position: relative;
  overflow: visible;
  box-sizing: border-box;
}

/* Clearfix para los floats */
.items-header::after {
  content: "";
  display: block;
  clear: both;
}

/* ===== IZQUIERDA: TEXTO DE BIENVENIDA ===== */
.welcome-text {
  float: left;
  width: 60%;
  font-size: 16px;
  color: #717171;
  text-align: left;
  line-height: 36px;
  padding-left: 15%; 
}

/* ===== DERECHA: TOUR + USUARIO ===== */
/* .user-mobile {
  float: right;
  width: auto;
  text-align: right;
  box-sizing: border-box;
} */
/* ===== boton de tour guiado ===== */
.init-tour {
  background-color: #ebe4fe;
  border-radius: 30px;
  display: inline-block;
  padding: 4px 12px;
  cursor: pointer;
  margin-left: 27%;
  vertical-align: middle;
}

.init-tour img.play {
  width: 18px;
  height: 18px;
  vertical-align: middle;

}

.init-tour .text-tour {
  color: #7000fe;
  font-size: 14px;
  display: inline-block;
  vertical-align: middle;
}


/*modal terminos y condiciones*/

.terms {
  width: 100%;
  margin-top: 3%;
  margin-bottom: 2%;
  display: inline-block;
}

/* columna izquierda: checkbox + texto */
.check-terminos {
  margin-left: 1%;
}
.chkTerminos{
  color: grey;
  font-size: 12px;
}

/* texto de terminos */
.terms-text {
  display: inline-block;
  width: 90%;
  color: #333;
  font-size: 0.9vw;
  vertical-align: middle;
}

.terms-text span {
  text-decoration: underline;
  color: #333;
}

/* btn */
.terms-btn {
  display: inline-block;
  width: 58%;               /* ocupa el resto del espacio */
  background-color: #7000fe;
  color: #fff;
  border: none;
  padding: 1.2% 0;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  font-size: 1vw;
  opacity: 0.8;
  vertical-align: middle;
}

.btn-cerrar-terminos{
  background-color: #b6afae;
  color: #fff;
  border: none;
  padding:1.2% 1.2%;
  border-radius: 6px;
  margin-right: 2%;
}

.btn-aceptar-terminos{
  background-color: #08bd29;
  color: #fff;
  border: none;
  padding: 1.2% 1.2%;
  border-radius: 6px;
}

/* modal de confirmacion  */
#modalExito {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  z-index: 999999;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.exito-icon {
  width: 90px;
  height: 90px;
  background: #7a3cff;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 34px;
  font-weight: bold;
  margin: 0 auto 12px;
  box-shadow: 0 0 15px rgba(122, 60, 255, .5);
  animation: pop-in .4s ease;
}

@keyframes pop-in {
  0% { transform: scale(.4); opacity: .3; }
  100% { transform: scale(1); opacity: 1; }
}

.exito-text {
  font-size: 18px;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 600;
  color: #333;
}

#modalExito .modal-extra-content {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  width: 90%;
  max-width: 450px;
  margin: auto;
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
  animation: fadeInScale 0.35s ease forwards;
}

#modalExito .modal-extra-body p {
  font-size: 17px;
  color: #333;
  margin-bottom: 20px;
}

#modalExito .btn-cerrar-exito {
  background-color: #7000fe;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 26px;
  cursor: pointer;
  transition: background 0.3s;
}

#modalExito .btn-cerrar-exito:hover {
  background-color: #8a2be2;
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

/* icono central */
.check-circle {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background-color: #7000fe;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Forzamos el icono a blanco puro */
.check-circle img {
  width: 45px;
  height: 45px;
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

/* texto */
.modal-exito-content h2 {
  font-family: 'Recoleta', serif;
  font-size: 22px;
  color: #111;
  margin-bottom: 10px;
}

.modal-exito-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
}

/* btn cerrar */
.btn-cerrar-exito {
  background-color: #7000fe;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-cerrar-exito:hover {
  background-color: #8a2be2;
}

.cerrando {
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
/* modal terminos*/
.modal-extra-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background-color: rgba(0, 0, 0, 0.8); /* fondo oscuro fuerte */
  z-index: 99999;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none; /* inactivo por defecto */
}

/* cuando esta activo */
.modal-extra-header.active {
  display: block;
  opacity: 1 !important;          
  pointer-events: auto;
}

/* Contenedor principal */
#modalTerminos .modal-extra-body h2,
#modalTerminos .modal-extra-body h3 {
  color: #7000fe;
  font-family: "Recoleta", serif;
  margin-top: 4%;
  margin-bottom: 2%;
  font-size: 130%;
}


.modal-extra-body h3 {
  color: #7000fe;
  font-family: "Recoleta", serif;
  margin-top: 4%;
  margin-bottom: 2%;
  font-size: 130%;
}

/* Texto general */
.modal-extra-body p,
.modal-extra-body ul {
  margin-bottom: 3%;
  font-size: 95%;
}


/* === FORZAR MODAL TERMINOS SOBRE TODOS LOS DEMÁS === */
#modalTerminos {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0,0,0,0.6) !important;
  z-index: 999999 !important;
  pointer-events: auto !important;
  overflow-y: auto;
}

#modalTerminos .modal-extra-content {
  background: #fff;
  width: 85%;
  max-width: 800px;
  margin: 5% auto;
  padding: 40px;
  border-radius: 20px;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
}

/* Botones siguen funcionando */
#modalTerminos .btn-aceptar-terminos,
#modalTerminos .btn-cerrar-terminos {
  cursor: pointer !important;
  pointer-events: auto !important;
}

.modal-overlay .modal-terminos {
  position: fixed;                   /* saca el modal del flujo del padre */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1 !important;             /* ignora opacidad del overlay */
  background-color: rgba(0, 0, 0, 0.8) !important;
  pointer-events: auto !important;
  z-index: 99999;
}

.modal-overlay .modal-terminos-content {
  opacity: 1 !important;
  background: #fff !important;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  color: #111;
}


/*----------------------------------------*/

/*modal de confirmacion de complementos*/

.header-content {
  display: block;
  width: 100%;
  vertical-align: middle;
  box-sizing: border-box;
  text-align: right;
}

.modal-title {
  display: inline-block;
  width: 70%;
  text-align: left;
  vertical-align: middle;
  font-family: Recoleta;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 800;
  color: rgb(26, 26, 26);
  margin: 0;
}

.remind-later-btn {
  display: inline-block;
  width: 25%;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  font-size: 87.5%;
  cursor: pointer;
  background: rgb(112, 0, 254);
  border: none;
  padding: 0.7rem 0;
  border-radius: 10px;
  transition: 0.2s ease;
  white-space: nowrap;
  margin-left: 4%;
}

.remind-later-btn:hover {
  background: rgb(130, 34, 255);
}

.remind-later-btn img {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  margin-right: 6px;
} 

/* === IMAGEN PRINCIPAL === */
.main-image-container {
  width: 100%;
  margin-top: 1rem;
  box-sizing: border-box;
}

.main-image {
    width: 100%;
    height: 20%;
    object-fit: cover;
    border-radius: 12px;
}

/*modal de rechazo de complemento*/


#modalRechazo {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  z-index: 999999 !important;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Contenido del modal */
#modalRechazo .modal-extra-content {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  width: 90%;
  max-width: 450px;
  margin: auto;
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
  animation: fadeInScale 0.35s ease forwards;
}

/* Icono rojo */
.rechazo-icon {
  width: 90px;
  height: 90px;
  background: #ff4b4b;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 48px;
  font-weight: bold;
  margin: 0 auto 12px;
  box-shadow: 0 0 15px rgba(255, 75, 75, .5);
  animation: pop-in .4s ease;
}

/* Texto principal */
.rechazo-text {
  font-size: 20px;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 700;
  color: #333;
  font-family: "Recoleta", serif;
}

/* Texto secundario */
.rechazo-detalle {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Botón aceptar */
.btn-cerrar-rechazo {
    background-color: rgb(112, 0, 254);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 34px;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 15px;
}

.btn-cerrar-rechazo:hover {
  background-color: #e03c3c;
}

/* Reutilización de animaciones */
@keyframes pop-in {
  0% { transform: scale(.4); opacity: .3; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

/* === CUERPO DEL MODAL === */
.modal-body {
  display: block;
  width: 100%;
  box-sizing: border-box;
  vertical-align: top;
  overflow: visible;
}

.section-title {
  font-family: Recoleta;
  font-size: 1.2rem;
  font-weight: 700;
  color: rgb(26, 26, 26);
  margin: 0 0 0.5rem 0;
}

.description {
    color: rgb(102, 102, 102);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1%;
    margin-left: 1%;
    margin-top: 1%;
}

/* === ALERTA === */
.alert-container {
    display: block;
    width: 100%;
    margin-bottom: 2%;
    text-align: right;
    white-space: nowrap;
    margin-left: -130px;
}

.alert-warning {
    display: inline-block;
    width: 75%;
    background: rgba(255, 230, 208, 0.7);
    border-radius: 10px;
    padding: 1rem;
    box-sizing: border-box;
    text-align: left;
    vertical-align: middle;
    margin-right: 12%;
}

.alert-warning img {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.alert-warning div {
  display: inline-block;
  vertical-align: middle;
  width: 85%;
}

.alert-title {
  font-weight: 600;
  color: rgb(218, 132, 59);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.alert-subtitle {
  color: rgb(218, 132, 59);
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

.see-all-btn {
  display: inline-block;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgb(112, 0, 254);
  border: 1px solid rgb(112, 0, 254);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  margin-left: 2%;
  background: #fff;
  cursor: pointer;
  transition: 0.2s ease;
}

.see-all-btn:hover {
  background: rgba(112, 0, 254, 0.07);
}

/* === LISTA DE COMPLEMENTOS === */
.services-container {
  display: block;
  width: 100%;
  margin-top: 2%;
}

.services-list {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

/* === TARJETA DEL COMPLEMENTO === */
.service-card {
    display: inline-block;
    vertical-align: top;
    width: 33%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    padding: 12px 10px;
    position: relative;
    box-sizing: border-box;
    margin-top: 1%;
}

/* Animación suave al ocultar una card */
.service-card {
  transition: 
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.33, 1, 0.68, 1);
}

.service-card.hide-anim {
  opacity: 0;
  transform: scale(0.85);
}

/* --- HEADER DEL COMPLEMENTO (con cronometro)-- */

.service-expires {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  background: #fff;
  border: 1px solid rgba(112, 0, 254, 0.3);
  border-radius: 999px;
  color: #6b21a8;
  width: fit-content;
  box-sizing: border-box;
}
/* cronometro debajo de la imagen */
.countdown-top {
  margin-top: 0.3rem;
  margin-left: 20%; /* se alinea visualmente al ancho de la imagen */
}

/* cronometro debajo de los botones */
.countdown-bottom {
  margin-top: 0.8rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}


/* --- CONTENIDO INTERNO --- */
.service-content {
  display: block;
  width: 100%;
  white-space: normal;
  margin-top: 0.5rem;
}

.service-image-full {
  width: 100%;
  height: 140px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.service-image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-details {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
}


/* --- NOMBRE + PRECIO --- */
.service-header-info {
  display: block;
  width: 100%;
  margin-bottom: 0.6rem;
  vertical-align: top;
}

/* nombre */
.service-name {
  font-family: Recoleta, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  display: block;
  width: 100%;
}

/* contenedor precio + plan */
.service-price-plan {
  display: block;
  width: 70%;
  margin-left: 14%;  /* se alinea visualmente con la imagen (12%) */
  margin-top: 0.2rem;
  line-height: 1.4;
}

/* precio */

.service-plan {
    display: block;
    margin-top: 2px;
    font-size: 14px;
    font-weight: 600;
    color: #6b21a8;
    background-color: #6b21a839;
    border-radius: 5px;
    padding: 2%;
}

/* --- DESCRIPCION + BOTONES --- */
.service-actions-container {
  display: block;
  width: 100%;
  margin-top: 0.6rem;
}

.service-actions {
    display: inline-block;
    width: 100%;
    text-align: center;
}
.btn-reject,
.btn-confirm {
  display: inline-block;
  border: none;
  border-radius: 8px;
  padding: 0.55rem 1rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  transition: 0.2s ease;
}

.btn-reject {
  background: #fd6a6a;
  margin-right: 0.4rem;
}

.btn-reject:hover {
  background: #fc5353;
}

.btn-confirm {
  background: #66c866;
}

.btn-confirm:hover {
  background: #56b456;
}

/*modal carga*/
.loader-modal {
  text-align: center;
  padding: 30px;
}

.loader-modal p {
  font-size: 15px;
  color: #555;
  margin-top: 10px;
}

/* Spinner violeta oscuro */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top-color: #7000fe; /* Violeta Janos */
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 350px) {
  .fa-bars {
      font-size: 24px;
      margin-top: -104%;
      margin-left: 100%;
  }

  .welcome-detail {
    display: none;
    color: #555;
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.3;
    align-items: center;
    margin-left: 76px;
    gap: 6px;
  }

}



/*BANNERS*/

.slides-web {
   display: flex;
   width: max-content;
   animation: scrollWeb 40s linear infinite;
}

@keyframes scrollWeb {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


#bannerWeb { display: block; }
#bannerMobile { display: none; }

@media (max-width: 799px) {
  #bannerWeb { display: none; }
  #bannerMobile { display: block; }

  #bannerMobile .slides {
      display: flex;
      transition: transform 0.6s ease;
  }

  #bannerMobile .slide {
      min-width: 100%;
      height: 100%;
  }

  #bannerMobile .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
     #bannerMobile .banners-carousel {
      width: 96%;
      height: 15%;
      margin: -4% 2% 3% 2%;
  }
}

.banners-carousel {
  position: relative;
  width: 80%;
  height: 25%;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 1%;
  margin-left: 18%;
  margin-top: 2%;
}

.banners-carousel img {
  /* width: 15%; */
  height: 100%;
  object-fit: cover;
  display: block;
  object-fit: cover;
  transition: transform .3s ease;
}

.slides {
  display: flex;
  /* width: auto; */
  height: 100%;
}

.slide {
  width: 100%; /* cada slide ocupa todo el ancho */
  flex-shrink: 0;
}

.slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/*wsp button*/
.whatsapp-button-container {
    position: fixed;
    bottom: -35px;
    right: 48px;
    z-index: 1000;
    margin-bottom: 50px; 
}

.whatsapp-button {
    margin-left: -27%;
    display: inline-block;
    background-color: #25d366;
    color: #fff;
    padding: 6% 6%;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 4px 12px #25d3664d;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.whatsapp-button:hover {
    background-color: #1ebe5d;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px) scale(1.07);
}

.whatsapp-icon {
    display: inline-block; 
    width: 18px;               /* ajustable a gusto */
    height: 18px;
    vertical-align: middle;
    margin-right: 5%;          /* reemplaza el gap */
}

.whatsapp-text {
    display: inline-block;
    vertical-align: middle;
    font-family: Arial, sans-serif;
}




/* === RESPONSIVE === */
@media (max-width: 600px) {
  .modal-title {
    width: 100%;
    text-align: center;
  }

  .remind-later-btn {
    width: 70%;
    display: block;
    margin: 1rem auto;
  }

  .alert-warning {
    width: 100%;
    margin-bottom: 1rem;
  }

  .service-image,
  .service-details {
    display: block;
    width: 100%;
    margin: 0;
  }

  .service-header {
    position: static;
    text-align: right;
    margin-bottom: 0.6rem;
  }

  .service-actions {
      display: flex;
      flex-direction: column-reverse;
  }

    .btn-reject,
    .btn-confirm {
      width: 93%;
      margin-top: 5px;
      margin-left: 7px;
    }

    .alert-container {
    margin-left: -4px;
  }

  .alert-title {
    font-size: 12.5px;
  }
  .alert-subtitle {
    font-size: 11px;
  }

  .service-card{
    width: 49%;
  }

  .service-expires {
    font-size: 12px;
  }
  .service-name {
    font-size: 20px;
  }

  .modal-content {
    margin-top: -24%;
  }

  .welcome-detail {
    display: none;
    color: #555;
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.3;
    align-items: center;
    margin-left: 75%;
  }

  #bannerWeb {
    display: none;
  }

  #bannerMobile {
    display: block;
  }

  /* Forzar que el banner mobile se vea bien */
  #bannerMobile .banners-carousel img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
  }

    #bannerMobile .banners-carousel {
      width: 96%;
      height: 15%;
      margin: -4% 2% 3% 2%;
  }

  .slide img {
    width: 100%;
}


  /* IMPORTANTE: revertir reglas de desktop */
  /* .slides {
      width: 100%;
  } */
}

@media (max-width: 1350px){
  html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* evita barra lateral horizontal */
    background-color: #f8f9ff; /* o el color de fondo general */
    margin-bottom: 50px;
  }

   .welcome-detail {
    display: none;
    color: #555;
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.3;
    align-items: center;
    margin-left: 33%;
  }

  .banners-carousel {
      position: relative;
      width: 96%;
      height: 16%;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      margin-bottom: 3%;
      margin-left: 2%;
      margin-top: -3%;
  }
}

/* ===== zona responsive ===== */
@media (max-width: 1351px) {
  header {
    width: 100%;
    margin-left: 0;
    padding: 34px 0;        
  }

  /* Ocultar el texto de bienvenida */
  .welcome-text {
    display: none !important;
  }

  .user-mobile {
    float: none;
    width: 100%;
    text-align: right;
  }

  /* Mostrar solo el ícono de play adaptado */
  .init-tour {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;                /* tamaño ajustado */
    height: 38px;
    background-color: #d5cce1;  /* color de fondo */
    border-radius: 50%;
    margin-right: 10px;
  }

  /* Ocultar el texto "Iniciar tour" */
  .init-tour .text-tour {
    display: none !important;
  }

  /* Ícono de play más visible */
  .init-tour i {
    font-size: 18px;
    color: #fff;
  }

  .user-setting {
    padding: 4px 8px;
  }

  .user-avatar {
    width: 28px;
    height: 28px;
  }

    .fa-bars {
      font-size: 24px;
      margin-left: 117%;
      margin-top: -20%;
  }
}

@media (min-width: 1352px) and (max-width: 1879px) {
  .init-tour {
    background-color: #ebe4fe;
    border-radius: 30px;
    display: inline-block;
    padding: 4px 12px;
    cursor: pointer;
    margin-left: 310px;
    vertical-align: middle;
  }

  .banners-carousel {
    position: relative;
    width: 80%;
    height: 33%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 1%;
    margin-left: 18%;
    margin-top: 2%;
  }
}

@media (min-width: 1880px) {
 
.init-tour {
    background-color: #ebe4fe;
    border-radius: 30px;
    display: inline-block;
    padding: 4px 12px;
    cursor: pointer;
    margin-left: 510px;
    vertical-align: middle;
  }

}
