/* TEXTOS SUPERIOR */

.text__listas_sup .container {
   padding:0px 20px;
}

.text__listas_sup .container h1 {
   font-size:1.6em;
   font-weight: normal;
}

@media(max-width:768px) {
   .text__listas_sup .container h1 {
      font-size:1.5rem;
   }
}

section.section__destacadas {
   background:var(--pseudo-black);
   margin-top:0px;
   padding:25px 0px;
}

section.section__destacadas .container {
   padding:0px 20px;
   text-align:center;
   position:relative;
}

@media(max-width:768px) {
   section.section__destacadas .container {
      padding:0px !important;
   }

   section.lista__section .container {
      padding:0px !important;
   }

}

section.section__destacadas .container .title__destacadas {
   color:var(--white);
   margin:0;
   text-align:center;
   margin-bottom:20px;
   text-transform:uppercase;
   font-size:42px;
   display:inline-block;
}

@media(max-width:768px) {
   section.section__destacadas .container .title__destacadas {
      font-size:25px;
   }
}

section.section__destacadas .container .title__destacadas .resaltado {
   color:var(--primary-color);
}

/* DESTACADAS NOVEDADES */

.container__novedades {
   padding:25px 0px;
}

.container__novedades:nth-child(odd) {
   background-color:var(--pseudo-black);
}

.container__novedades:nth-child(odd) .title__destacadas__novedades {
   color:var(--white);

}

.container__novedades:nth-child(odd) .textocorto__destacadas__novedades{
   color:var(--white);
}

@media(max-width:768px) {
   .container__novedades .container .container {
      padding:0;
   }
}

.textocorto__destacadas__novedades{
   color:var(--pseudo-black);
   display: block;
   margin-top: 15px;
   text-align: left;
}

.textocorto__destacadas__novedades p{
   line-height: 20px;
}


.title__destacadas__novedades {
   color:var(--pseudo-black);
   margin:0;
   text-align:left;
   text-transform:uppercase;
   font-size:42px;
   text-align:center;
   padding-bottom:5px;
}


@media(max-width:768px) {
   .title__destacadas__novedades {
      font-size:25px;
   }
}

.title__destacadas__novedades .resaltado {
   color:var(--primary-color);
}





section.section__destacadas .slider__lista__destacadas__wrapper__inner {
   display:flex;
   gap:1rem;
   flex-wrap:wrap;
   justify-content:center;
}



section.section__destacadas .card__destacada {
   overflow:hidden;
   height:450px;
   width:270px;
}

@media(max-width:768px) {
   section.section__destacadas .card__destacada {
      width:auto;
   }
}

section.section__destacadas .content__card {
   border-radius:8px;
   overflow:hidden;
   transition:all 0.3s;
   position:relative;
   height:100%;

}

section.section__destacadas .content__card img {
   width:100%;
   transition:all 0.3s;
   height:100%;
   object-fit:cover;
}

section.section__destacadas .content__card:hover img {
   transform:scale(1.10);
   transition:all 0.3s;
}


section.section__destacadas .content__card .info__card {
   position:absolute;
   bottom:0;
   width:100%;
   opacity:1;
   width:100%;
   color:var(--white);
   text-align:center;
   background-color:var(--pseudo-black);
   opacity:0.7;
border-bottom-left-radius:5px;
border-bottom-right-radius:5px;
padding:0px 15px;
box-sizing:border-box;
transition: transform 0.2s linear;
}

.content__card .info__card .add_favoritos {
   position:absolute;
   top:-40px;
   left:20px;
   -webkit-animation:heartButton 1s;
         animation: heartButton 1s;

}

.content__card .info__card .add_favoritos .container {
   padding: 0px 10px;
}

.content__card .info__card .add_favoritos i {
   font-size:22px;
   color:#ff000d;
}

.content__card .info__card .add_favoritos i.red-text {
   -webkit-animation:heartButton 1s;
         animation: heartButton 1s;
         color:red;
         text-shadow: 2px 2px var(--pseudo-black);
}


.new__card__content__card .add_favoritos {

   top:-40px;
   left:20px;
   -webkit-animation:heartButton 1s;
         animation: heartButton 1s;
         display: flex;
         gap: 0.5rem;
         align-items: center;

}

.new__card__content__card .icons-absolute {
   position: absolute;
   top: 10px;
   right: 10px;
   font-size: 30px;
   z-index:1;
}

.new__card__content__card .icons-absolute .item_icon {
   text-align:center;
}

.new__card__content__card .icons-absolute .item_icon img {
   height:auto !important;
   width:24px !important;
}


.new__card__content__card .add_favoritos .container {
   padding: 0px 10px;
}

.new__card__content__card .add_favoritos i {
   font-size:22px;
   color:#ff000d;
}

.new__card__content__card .add_favoritos i.red-text {
   -webkit-animation:heartButton 1s;
         animation: heartButton 1s;
         color:red;
         text-shadow: 2px 2px var(--pseudo-black);
}


.info__card .no-disponible-container {
   display:flex;
   align-items:center;
   justify-content: center;;
   background-color:var(--secondary-color);
   padding:8px;
   width:100%;
   transform: translate(-8px, 20px);
   color:var(--white);
   font-size:20px;
   gap:0.5rem;
   line-height:0;
}

@media(max-width:768px) {
   .info__card .no-disponible-container {
      transform:translate(-5px, 0);
      padding:5px;
      font-size:12px;
   }
}





@-webkit-keyframes heartButton {
   0% {
           -webkit-transform: scale(1);
           transform: scale(1);
   }

   25% {
        -webkit-transform: scale(1.3);
          transform: scale(1.3);
   }

   50% {
           -webkit-transform: scale(1);
           transform: scale(1);
   }

   75% {
           -webkit-transform: scale(1.3);
             transform: scale(1.3);
   }

   100% {
           -webkit-transform: scale(1);
           transform: scale(1);
   }
}


@keyframes heartButton {
   0% {
           -webkit-transform: scale(1);
           transform: scale(1);
   }

   25% {
           -webkit-transform: scale(1.3);
           transform: scale(1.3);
   }

   50% {
           -webkit-transform: scale(1);
             transform: scale(1);
   }

   75% {
           -webkit-transform: scale(1.3);
           transform: scale(1.3);
   }

   100% {
           -webkit-transform: scale(1);
           transform: scale(1);
   }
}





/* section.section__destacadas .content__card:hover .info__card {
   transform:translate(0px, 40px);
   transition: transform 0.2s linear;
} */

section.section__destacadas .content__card .info__card .flex-fix {
   display:flex;
   justify-content:space-between;
}

section.section__destacadas .content__card .info__card .flex-fix .name {
   display:flex;
   align-items:center;
   text-transform:uppercase;
}

section.section__destacadas  .content__card .info__card .flex-fix i.verificado__icon {
   color:var(--primary-color);
   padding-right:5px;
   font-size:20px;
}

section.section__destacadas .content__card .info__card .flex-fix i.favoritos{
   font-size:20px;
   color:var(--primary-color);
   opacity:0.9;
}

section.section__destacadas .content__card .info__card p {
   font-size:14px;
   margin:0;
   text-transform:capitalize;

}

section.section__destacadas .content__card .info__card p.ubicacion {
   font-size:12px;
   display:flex;
   align-items:center;
   gap:0.5rem;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}

section.section__destacadas .content__card .info__card p.ubicacion i {
   margin-right:5px;
}


section.section__destacadas .content__card .reviews {
   position:absolute;
   top:0;
   right:0;
   background-color:var(--pseudo-black);
   opacity:0.7;
   display:flex;
   padding:5px;
   transition:transform 0.3s;
   overflow:hidden;
}

section.section__destacadas .content__card:hover .reviews {
   position:absolute;
   top:0;
   right:0;
   background-color:var(--pseudo-black);
   opacity:0.7;
   display:flex;
   padding:5px;
   transition:transform 0.3s;
   overflow:hidden;
}

section.section__destacadas .content__card .reviews span {
   font-size:10px;
   opacity:0.3;
   color:#ffd55f;
}

section.section__destacadas .content__card .reviews span.checked {
   color:#ffd55f;
   opacity:1;
}

section.section__destacadas .content__card .ribbon {
   left:-24px;
   opacity:0.9;
   z-index:1;
}



/* SECTION LISTA NORMAL */

.lista__section .lista__normal {
   display:grid;
   grid-template-columns:repeat(6,1fr);
   gap:1rem;
}



.lista__section .lista__normal img {
   width:100%;
}


.lista__section .card__destacada {
   transition: none;
   height:430px;
}

@media(max-width:768px) {
   .lista__section .card__destacada  {
      width:100%;
      height:300px;
   }
}


@media(min-width:768px) {
   .lista__section .content__card {
      width:217px;
   }
}

.lista__section .content__card {
   border-radius:8px;
   border:2px solid var(--primary-color);
   overflow:hidden;
   position:relative;
   height:100%;
}

.lista__section .content__card:hover {
   border:2px solid var(--pseudo-black);
   transition: 0.2s linear;
}

.lista__section .content__card img {
   width:100%;
   transition:all 0.3s;
   height:100%;
   object-fit:cover;
}

.lista__section .content__card:hover img {
   transform:scale(1.10);
   transition:all 0.3s;
}


.lista__section .content__card .info__card {
   position:absolute;
   bottom:0;
   width:100%;
   opacity:1;
   width:100%;
   color:var(--white);
   text-align:center;
   background-color:var(--pseudo-black);
border-bottom-left-radius:5px;
border-bottom-right-radius:5px;
box-sizing:border-box;
transition: transform 0.2s linear;
}

.lista__section .content__card .info__card .flex-fix > * {
   padding:0px 15px;
}

.lista__section .content__card .info__card .flex-fix > .nombre-relacionada {
   text-transform:uppercase;
}

/* .lista__section .content__card:hover .info__card {
   transform:translate(0px, 40px);
   transition: transform 0.2s linear;
} */

.lista__section .content__card .info__card .flex-fix {
   display:flex;
   justify-content:space-between;
   flex-direction:column;
   align-items: start;
}

.lista__section .content__card .info__card .flex-fix .name {
   display:flex;
   align-items:center;
   text-transform:uppercase;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}

.lista__section .content__card .info__card .flex-fix i.verificado__icon {
   color:var(--primary-color);
   padding-right:5px;
   font-size:20px;
}

.lista__section .content__card .info__card p {
   font-size:14px;
   margin:0;


}

.lista__section .content__card .info__card p.name {
   text-transform:uppercase;
}

.lista__section .content__card .info__card p.ubicacion {
   font-size:12px;
   display:flex;
   align-items:center;
   gap:0.5rem;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
   width:100%;
   background:var(--white);
   color:var(--pseudo-black)
}


.lista__section .content__card .reviews {
   position:absolute;
   top:0;
   right:0;
   background-color:var(--pseudo-black);
   opacity:0.7;
   display:flex;
   padding:8px 15px;
   transition:transform 0.3s;
   overflow:hidden;
   box-sizing:border-box;
   width:100%;
   justify-content:space-between;
   align-items:center;
}

.lista__section .content__card .reviews.sin-tupla {
   justify-content:center !important;
}

.lista__section .content__card .reviews .text-tupla {
   font-size:12px;
   text-transform:uppercase;
}

.lista__section .content__card .reviews .stars-box {
   line-height:0;
}

/* .lista__section .content__card:hover .reviews {
   transform: translate(100px, 0px);
   transition:transform 0.3s linear;
}
 */
.lista__section .content__card .reviews span {
   font-size:8px;
   opacity:0.3;
   color:#ffd55f;
}

.lista__section .content__card .reviews span.checked {
   color:#ffd55f;
   opacity:1;
}

.lista__section .content__card .ribbon {
   left:-24px;
   opacity:0.9;
   z-index:9;
}

.lista__section .card__destacada .subtitle {
   text-align:left;
   color:var(--pseudo-black);
   font-weight:600;
}


.lista__section .cargar-mas__wrapper {
   justify-content:center;
   margin:25px auto;
   background:var(--background-gold);
   border-radius:5px;
   width:25%;
   color:var(--white);
   box-sizing:border-box;
   grid-column: 1 / span 5;
}

.lista__section .cargar-mas__wrapper.botonvermas{
   background:var(--background-gold);
   border-radius:5px;
   font-size: 16px;
   padding: 7px 25px;
   font-weight: 400;
   width:fit-content;
   margin:15px auto;
   color:var(--white);
   transition: all 0.1s linear;
   justify-content:center;
   box-sizing:border-box;
   grid-column: 1 / span 5;
}

.lista__section .cargar-mas__wrapper.botonvermas:hover {
   color: var(--white);
   transform: scale(1.05);
   transition: all 0.1s linear
}

.novedades .botonvermas{
   background:var(--background-gold);
   border-radius:5px;
   font-size: 16px;
   padding: 7px 25px;
   font-weight: 400;
   width:fit-content;
   margin:15px auto;
   color:var(--white);
   transition: all 0.1s linear;
   justify-content:center;
   box-sizing:border-box;
   grid-column: 1 / span 5;
}

.novedades .botonvermas:hover {
   color: var(--pseudo-black);
   transform: scale(1.05);
   transition: all 0.1s linear
}

.botonvermas{
   display: grid;
   cursor: pointer;
}

.lista__section .cargar-mas__wrapper.fix-lazyload {
   height: 0px;
    margin: 0;
    padding: 0;
}

@media(max-width:768px) {
   .lista__section .cargar-mas__wrapper {
      grid-column: 1 / span 2;
   }
}
.lista__section .cargar-mas__wrapper .fa-spinner {
  display: none;
}

.rotate {
  animation: rotation 2s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

@media(max-width:768px) {
   .lista__section .cargar-mas__wrapper {
      width:100%;
   }
}

.lista__section .cargar-mas__wrapper:hover {
   background:var(--pseudo-black);
}


/* SECTION TEXT DOWN */

section.text__section__down .container {
   position:relative;
}

section.text__section__down  .swiper-pagination {
   position:relative !important;
}


section.text__section__down .container .swiper-button-next {
   right:-5%;
}

section.text__section__down .container .swiper-button-prev {
   left:-5%;
}

@media(max-width:1560px) {
   section.text__section__down .container .swiper-button-next {
      right:0%;
   }

   section.text__section__down .container .swiper-button-prev {
      left:0%;
   }
}

section.text__section__down .show-more {
   text-align:center;
}

@media(max-width:768px) {
   section.text__section__down .show-more {
      margin-top:20px;
   }
}

section.text__section__down .show-more p {
text-align:center;
display:inline-block;
border:1px solid;
padding:5px 15px;
border-radius:5px;
cursor:pointer;
margin:0;
}

section.text__section__down .show-more p:hover {
   background:#333;
   color:var(--white);
}

section.text__section__down .show-more p.active {
background:#333;
color:var(--white);
}



/* SECTION CLUSTER CIUDADES */

section.cluster__ciudades {
   background:var(--pseudo-black);
   padding:40px 0px;
   margin-bottom:0;
}

section.cluster__ciudades h2, section.cluster__ciudades p {
   margin:0;
   color:var(--white);
   margin-bottom:20px;
   text-align:center;
   font-size:24px;
   font-weight:600;
}

section.cluster__ciudades .content_localidades .list {
   /*max-height:102px;*/
   max-height:140px;

}

section.cluster__ciudades .list {
   display:grid;
   grid-template-columns:repeat(4, 1fr);
   gap:0.5rem 1rem;
   flex-wrap:wrap;
   margin:0;
   padding:0;
   list-style:none;
   margin-bottom:10px;
   overflow:hidden;
   transition:all 0.4s;
}

section.cluster__ciudades .content_localidades .list.opened {
   max-height:2000px;
   transition:all 0.4s;
}


@media(max-width:768px) {
   section.cluster__ciudades .list {
      grid-template-columns:1fr 1fr;
   }
}

section.cluster__ciudades .content_localidades .btn__ampliar{
   text-align:center;
   margin-top:30px;
}

section.cluster__ciudades .content_localidades .btn__ampliar .btn {
   border-radius:5px;
   font-size:16px;
}

a#show__more__cities{
   border-radius:5px !important;
   padding: 6px 24px !important;
   border: none !important;
   font-weight: 400 !important;
   font-size: 16px !important;
   cursor: pointer !important;
   background-color: rgb(240, 240, 240);
   color: rgb(0, 0, 0);
}

section.cluster__ciudades .busquedas__sugeridas .list {
   display:flex;
   justify-content:center;
   margin-bottom:0;

}

section.cluster__ciudades .busquedas__sugeridas .list i {
   padding-right:5px;
}

section.cluster__ciudades .list li h3, section.cluster__ciudades .list li a.button_otras_localidades, section.cluster__ciudades .list li .link-with-icon {
   border: 1px solid var(--background-body);
    padding: 5px;
    box-shadow: rgb(0 0 0 / 2%) 0px 1px 3px 0px, rgb(27 31 35 / 15%) 0px 0px 0px 1px;
    border-radius: 5px;
    display:block;
    font-size:14px;
    color:var(--white);
    text-align:center;
    transition: all 0.2s linear;
    font-weight:400;
    margin:0;
}

section.cluster__ciudades .list li h3:hover, section.cluster__ciudades .list li a:hover {
   background-color:var(--white);
   color:var(--pseudo-black);
   transition: all 0.2s linear;
}



/* NUEVA CARD DE LISTAS */

section.section__destacadas .new__card__with__text {
   overflow:hidden;
   width:340px;
   text-align:left;
}

@media(max-width:768px) {
   section.section__destacadas .new__card__with__text {
      width:auto;
   }
}

.lista__normal__new {
   grid-template-columns:repeat(5,1fr) !important;
}


/* TWO COLUMNS MOBILE */

@media(max-width:768px) {
   .lista__normal__new .new__design_ubication {
      flex-direction:column;
      gap:1rem;
   }
   .slider__lista__destacadas__wrapper .slider__lista__destacadas__wrapper__inner {

      grid-template-columns: 1fr;
   }

   .slider__lista__destacadas__wrapper {
      grid-template-columns:1fr 1fr !important;
   }
   .slider__lista__destacadas__wrapper .new__card__with__text {
      width:45% !important;
   }
   .slider__lista__destacadas__wrapper .new__card__with__text:first-child {
      grid-column: 1 / span 2 !important;
   }





   .slider__lista__destacadas__wrapper h3 {
      font-size:16px !important;
   }


   .slider__lista__destacadas__wrapper .subtitle {
      font-size:13px !important;
   }
   @media(max-width:768px) {
      .slider__lista__destacadas__wrapper .subtitle {
      }
   }

   .slider__lista__destacadas__wrapper .text__card {
      font-size:14px !important;
   }

   .slider__lista__destacadas__wrapper .new__design_ubication {
      flex-direction:column;
      gap:1rem;
   }

   .slider__lista__destacadas__wrapper .new__design_ubication a {
      font-size:10px !important;
   }
}




@media(max-width:1370px) {
   .lista__normal__new {

   }
   .lista__normal__new .new__card__with__text {
      width:auto !important;
   }

   .lista__normal__new h3 {
      font-size:16px !important;
   }

   .lista__normal__new .subtitle {
      font-size:13px !important;
      padding-bottom:5px;
   }

   .lista__normal__new .text__card {
      font-size:14px !important;
   }


   .lista__normal__new .new__design_ubication a {
      font-size:16px !important;
   }

}

@media(max-width:768px) {
   .lista__normal__new .bottom_card_container .new__design_ubication a {
      font-size:10px !important;
   }
}

/* LISTA TABLET */

@media(max-width:1024px) {
   .lista__normal__new {
      display: flex !important;
    flex-wrap: wrap !important;
    justify-content:center;
   }

   .lista__normal__new .new__card__with__text {
      width:45% !important;
   }
}

@media(min-width:1024px) and (max-width:1380px) {
   .lista__normal__new {
   display: flex !important;
    flex-wrap: wrap !important;
    justify-content:center;
   }

   .lista__normal__new .new__card__with__text {
      width:32% !important;
   }

   .lista__normal__new .new__card__with__text img {
      height: 400px !important;
   }

}

.new__card__with__text {
   border-radius:5px;
   overflow:hidden;
   position:relative;
   background-color:var(--white);
   box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

@-moz-document url-prefix() {
   .new__card__with__text {

   }

}

.new__card__with__text:hover img {
   transform:scale(1.10);
   transition: all 0.1s;
}

.new__card__with__text p,.new__card__with__text h3 {
   margin:0;
   color:var(--pseudo-black);
}

.new__card__with__text .name__card {
   color:red;
   display:flex;
   justify-content:space-between;
   font-size:24px;
   margin-top:0px;
   text-transform:uppercase;
   padding: 0px 5px 0px;
   border-bottom:2px solid var(--background-body);
   gap:1rem;
}


.new__card__with__text:hover .name__card {
   border-bottom:2px solid #c89f3330;
}

.new__card__with__text .name__card p,.new__card__with__text .name__card h3 {
   transition:all 0.1s linear;
   display:flex;
   gap:0.5rem;
   align-items:center;
   font-weight:600;
   font-size:16px;
   white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

@media(max-width:768px) {
   .new__card__with__text .name__card p,.new__card__with__text .name__card h3 {
      font-size:12px;
   }
}

.new__card__with__text .name__card p i,.new__card__with__text .name__card h3 i  {
   color:#5eab62;
}

.new__card__with__text:hover .name__card p,.new__card__with__text:hover .name__card h3 {
   color:var(--primary-color);
   transition:all 0.1s linear;
}


.new__card__with__text .image__card {
   overflow:hidden;
}

.new__card__with__text .image__card img {
   object-fit:cover;
   transition:all 0.1s linear;
   width:100%;
}

.new__card__with__text .info__card {
   padding:8px 8px 100px 8px;
}
@media(max-width:768px) {

   .section__destacadas .new__card__with__text .image__card img {
      height:300px !important;
   }

   .new__card__with__text .image__card img {
      height:270px !important;
   }
   .new__card__with__text .info__card {
      padding:5px 5px 45px 5px;
      text-align:center;
   }

   .lista__normal__new .info__card {
      padding:5px 5px 45px 5px;
   }

   .new__card__with__text .info__card.fix_padding_bottom {
      padding:10px 15px 115px 15px;
      text-align:center;
   }
   .new__card__with__text .info__card p {
      line-height:20px !important;
   }
}

.bottom_card_container {
   position:absolute;
   bottom:0;
   width:100%;
}

.new__card__with__text .adress__card {
   display:flex;
   flex-direction:column;
   padding-bottom:5px;
   align-items:center;
}

.new__card__with__text .adress__card.new__design_ubication {
   padding:10px;
   gap:0.5rem;
   align-items:start;
}

.new__card__with__text .adress__card.new__design_ubication {
   padding:10px;
   gap:0.5rem;
   align-items:start;
}

.lista__normal.lista__normal__new .new__design_ubication  {
   align-items:center;
}



.new__card__with__text .adress__card.new__design_ubication a {
   display:flex;
   align-items:center;
   gap:0.5rem;
}

@media(max-width:768px) {
   .new__card__with__text .adress__card.new__design_ubication {
   gap:0.5rem;
   padding:5px;
   align-items:center;
}

.lista__normal.lista__normal__new .adress__card.new__design_ubication .reviews {
   justify-content:center;
}
}

.new__card__with__text .adress__card.new__design_ubication a {
   font-size:16px;
   color:var(--pseudo-black);
   transition:all 0.2s linear;
   white-space: nowrap;
   text-overflow: ellipsis;
}

.new__card__with__text .adress__card.new__design_ubication a:hover {
   color:var(--primary-color);
}

.new__card__with__text .adress__card p {
   display:flex;
   gap:0.5rem;
   align-items:center;
}

.new__card__with__text .adress__card .content__right_card {
   display:flex;
   gap:0.5rem;
}

.new__card__with__text .more__info__card .subtitle {
   font-weight:600;
   font-size:18px;
   height:66px;
}
@media (max-width:768px) {
   .new__card__with__text .more__info__card .subtitle {
      height:auto;
   }
}
.new__card__with__text .more__info__card .subtitle p, .new__card__with__text .more__info__card .subtitle h3 {
   line-height: 1.4;
    overflow: hidden;

}

@media(min-width:768px) {
   .new__card__with__text .more__info__card .subtitle p, .new__card__with__text .more__info__card .subtitle h3 {
      margin:10px 0px;
      overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
           line-clamp: 2;
   -webkit-box-orient: vertical;
   }
}

.new__card__with__text .more__info__card .subtitle h3 {
   margin:0px !important;
   margin-bottom:10px !important;
   font-weight:600 !important;
   font-size:18px !important;
}

@media(max-width:768px) {
   .new__card__with__text .more__info__card .subtitle h3 {
      font-size:10px !important;
   }
}

.new__card__with__text .more__info__card .text__card {
   line-height:25px;
   display:block;
}

.new__card__with__text .more__info__card .text__card p{
   line-height: 1.6;
    height: 5em;
    overflow: hidden;
}



@media(max-width:768px) {
   .new__card__with__text .more__info__card .text__card {
      display:none;
   }
}


.new__card__with__text .reviews {
   opacity:1;
   width:100%;
   text-align:center;
}

.new__card__with__text .reviews.sin-etiqueta {
   padding:5px;
   box-sizing:border-box;
}

@media(max-width:768px) {
   .new__card__with__text .reviews {
      width:100%;
      text-align:center;
      display:flex;
      justify-content:flex-end;
   }
   .new__card__with__text .reviews.sin-etiqueta {
      justify-content:center;
   }
   .new__card__with__text .reviews span {
      font-size:8px !important;
   }

   .reviews.centrado{
      justify-content:center;
   }

}

.new__card__with__text .reviews span {
   font-size:10px;
   opacity:0.5;
   color:#000000ad;
}

.new__card__with__text .reviews span.checked {
   color:#000;
   opacity:1;
}

.new__card__with__text .ribbon {
   z-index:1;
}

.new__card__with__text .verificado__container{
   display:flex;
   justify-content:space-between;
   gap:1rem;
   align-items:center;
   padding:5px 15px 5px 15px;
   background: var(--background-gold);
   color:var(--white);
}

.new__card__with__text .verificado__container.no-verificado {
   background-color:var(--secondary-color);
}
@media(max-width:768px) {
   .new__card__with__text .verificado__container {
      gap:0.5rem;
      flex-direction:row;
      padding:5px;
   }
}

.new__card__with__text .verificado__container i {
   font-size:20px;
}
@media(max-width:768px) {
   .new__card__with__text .verificado__container i {
      font-size:12px;
   }
}

.new__card__with__text .verificado__container p {
   color:var(--white);
   text-transform:uppercase;
   line-height:25px;
   flex:1 1 100%;
}
@media(max-width:768px) {
   .new__card__with__text .verificado__container p {
      font-size:8px;
      line-height:15px;
   }
}


/* ARREGLOS PARA LISTA DE HABITACIONES */

.lista__habitaciones .new__card__with__text .info__card {
   padding:8px 8px 100px 8px;
}

@media(max-width:768px) {
   .lista__habitaciones .new__card__with__text .info__card {
      padding:10px 15px 75px 15px;
   }
}


.fix-text-custom {
   width:100%;
   overflow:hidden;
}

.cargar-mas { visibility: hidden;}

section.section-carousel-text .container .swiper p{
   line-height: 20px;
}

.textos-adicionales .container .swiper p:last-child {
   margin-bottom:40px;
}

.hidden{display: none !important;}

.lista__normal_slider .item-video{height: 47vh !important; width:100%;     object-fit: cover; /* o contain, según prefieras */}
.slider-video-lista{text-transform: uppercase; text-align: center;}

.new__card__with__text{min-height: 420px; }

.card__destacada,
.content__card {
   aspect-ratio: 2 / 3; /* Ajusta según tus cards reales */
   overflow: hidden;
}

.item-video {
   width: 100%;
   height: 100%;
   object-fit: cover;
}
.card__destacada .content__card {
    aspect-ratio: 2 / 3; /* o el ratio real */
    overflow: hidden;
    display: block;
}

.pagination-container {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 20px 0;
}

.pagination-btn {
    padding: 10px 18px;
    background: #E0B84C;         /* Amarillo premium */
    color: #000;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid #ffffff55;
    transition: 0.2s;
}

.pagination-btn:hover {
    background: #c9a038;
}

.pagination-btn.next{
   margin-left: 10px;
}

.pagination-btn.prev{
   margin-right: 10px;
}

.pagination-pages {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pagination-page {
     padding: 8px 14px;
    background: #2d2d2d;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.pagination-page:hover {
    background: #ffffff55;
    color: #000;
}

.pagination-page.active {
    background: #E0B84C;         /* Amarillo premium */
    color: #000;
    border: 1px solid #ffffff66;
    font-weight: bold;
}

/* versión móvil */
@media (max-width: 600px) {
    .paginador-container {
        flex-direction: column;
        gap: 15px;
    }

    .paginador-scroll {
        width: 100%;
        padding-bottom: 10px;
        justify-content: flex-start;
    }

    .paginador-page {
        min-width: 46px;
        height: 46px;
    }
}

#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none; /* oculto por defecto */
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Spinner circular */
.spinner {
    border: 6px solid #ccc;
    border-top-color: #f4c546; /* color dorado Citapasion */
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.categoria-header {
    flex-basis: 100%;
    width: 100%;
    display: block;

    background: linear-gradient(90deg, #f4c546, #f7d15f);
    color: #000;
    font-weight: 700;
    font-size: 20px;
    padding: 12px 18px;
    margin: 20px 0 10px 0;
    border-radius: 6px;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
