.description-welcome{
    color:var(--color-text); 
    font-family: var(--current-font-family);
    font-weight: 600;
  }
  .title-welcome{
    color:var(--color-text); 
    font-family: var(--current-font-family);
    font-weight: 700;
  }
  .nabar-custom{
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: right;
    width: 100%;
    z-index: 10; /* Asegura que esté por encima del slider */
    background-color: transparent;
    padding: 10px;
    box-sizing: border-box;     
  }
  .language-options{
    border: 3px solid var(--border-color); 
    font-family: var(--current-font-family); 
    font-weight:bold;
    border-radius: 5px 5px 5px 5px;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .btn-see-more{
    border: 1px solid var(--border-color); 
    font-family: var(--current-font-family);
    color:#fff; 
    background-color: var(--color-text);
    border-radius: 5px 5px 5px 5px;
  }
  .container-to-select-hotel{
    background-color: var(--only-background-color);
    margin-top: 3em;
  }
  .title-to-select-hotel{
    color:var(--color-text); 
    font-family: var(--current-font-family);
    font-weight: 700;
  }
  .description-to-select-hotel{
    color:var(--color-text); 
    font-size: 16px;
    font-family: var(--current-font-family);

  }
  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .slide-container{
    max-width: 1200px;
    width: 100%;
  }
  .slide-content{
    margin: 0 40px;
    overflow: hidden;
    border-radius: 25px;
  }
  .card{
    border-radius: 25px;
    background-color: #FFF;
  }
  .image-content,
  .card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
  }
  .image-content{
    position: relative;
    row-gap: 5px;
    padding: 25px 0;
  }
  .overlay{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--color-text);
    border-radius: 25px 25px 0 25px;
  }
  .overlay::before,
  .overlay::after{
    content: '';
    position: absolute;
    right: 0;
    bottom: -40px;
    height: 40px;
    width: 40px;
    background-color: var(--color-text);
  }
  .overlay::after{
    border-radius: 0 25px 0 0;
    background-color: #FFF;
  }
  .card-image-s{
    position: relative;
    height: 6em;
    width: 6em;
    border-radius: 50%;
    background: var(--only-background-color);
    padding: 3px;
  }
  .card-image-s .card-img{
    height: 100%;
    display: flex;
    width: 100%;
    object-fit: cover;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    border-radius: 50%;
    border: 4px solid var(--color-text); 
  }
  .name{
    font-size: 18px;
    color:var(--color-text); 
    font-family: var(--current-font-family);
    font-weight: 700;
  }
  .description{
    color:var(--color-text); 
    font-family: var(--current-font-family);
    font-size: 14px;
    text-align: center;
  }
  .button{
    border: none;
    font-size: 16px;
    color: #FFF;
    padding: 8px 16px;
    background-color: var(--color-text);
    border-radius: 6px;
    margin: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .button:hover{
    background:  var(--color-text);
  }
  .swiper-navBtn{
    color:var(--color-text);
    transition: color 0.3s ease;
  }
  .swiper-navBtn:hover{
    color: var(--color-text);
  }
  .swiper-navBtn::before,
  .swiper-navBtn::after{
    font-size: 35px;
  }
  .swiper-button-next{
    right: 0;
    color: var(--color-text);
  }
  .swiper-button-prev{
    left: 0;
    color: var(--color-text);
  }
  .swiper-pagination-bullet{
    background-color: #e0e0e0;
    opacity: 1;
  }
  .swiper-pagination-bullet-active{
    background-color: var(--color-text);
  }

  .container-card-select{
    width: 30em;
    max-width: 400;
  }
  .all-container-select-hotel{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 2em;
  }
  #primary-slider-notification{
    height: 90vh;
  }
  .class-primary{
    color:#fff; 
    font-family: var(--current-font-family);
  }
  .reservation{
      width: 100%;
      display: flex;
      justify-content: center;
      color:#fff; 
      font-family: var(--current-font-family);
  }

  /* Dispositivos móviles pequeños */
  @media screen and (max-width: 576px) {
    .slide-content{
      margin: 0 10px;
    }
    .swiper-navBtn{
      display: none;
    }
    .container-card-select{
      width: 100%;
    }
    .all-container-select-hotel{
      display:block;
    }
    #primary-slider-notification{
      height: 300;
    }
  }

  /* Teléfonos y tabletas en orientación vertical */
  @media screen and (min-width: 577px) and (max-width: 768px) {
    .slide-content{
      margin: 0 10px;
    }
    .swiper-navBtn{
      display: none;
    }
    .container-card-select{
      width: 100%;
    }
    .all-container-select-hotel{
      display:block;
    }
    #primary-slider-notification{
      height: 500;
    }
      
  }
  /* Tabletas en orientación horizontal */
  @media screen and (min-width: 769px) and (max-width: 992px) {
    .container-card-select{
      width: 45%;
    }
  }

  /* Escritorios pequeños */
  @media screen and (min-width: 993px) and (max-width: 1200px) {
    
  }

  /* Escritorios grandes */
  @media screen and (min-width: 1201px) {

    
  }