body{
  font-family: 'Montserrat';
  font-weight: 500!important;
}

.navbar button:focus{
  outline: none!important;
}
/* ===== Enhanced Rooms Carousel ===== */
.carousel-section {
  position: relative;
}
.carousel-section .carousel-inner {
  overflow: visible;
}
.carousel-section .card {
  border: 0;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform .25s ease, box-shadow .25s ease;
  height: 100%;
}
.carousel-section .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
.carousel-section .card .card-img-top {
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  height: 240px;
  width: 100%;
  object-fit: cover;
}
.carousel-section .card-body {
  padding: 18px;
}
.carousel-section .card-title {
  font-weight: 700;
  color: #3c2f1a;
}
.carousel-section .card .btn {
  width: 100%;
}
.carousel-section .fa-solid,
.carousel-section svg {
  color: #635015;
}



/* Carousel controls */
#roomsCarousel .carousel-control-prev,
#roomsCarousel .carousel-control-next {
  width: 48px;
  height: 48px;
  top: 45%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(60,47,26,0.85);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
#roomsCarousel .carousel-control-prev-icon,
#roomsCarousel .carousel-control-next-icon {
  filter: invert(1) grayscale(1);
}

/* Indicators */
#roomsCarousel .carousel-indicators {
  bottom: -20px;
}
#roomsCarousel .carousel-indicators li {
  background: #cbb79a;
}
#roomsCarousel .carousel-indicators .active {
  background: #635015;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .carousel-section .card .card-img-top {
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  .carousel-section .card {
    margin-bottom: 16px;
  }
  .carousel-section .card .card-img-top {
    height: 180px;
  }
}
.content {
  display: none;
}

.top-bar {
  width: 100%;
  background-color: #333;
  color: white;
  padding: 10px 20px;
  display: flex;
  align-content: center;
  align-items: center;
  height: 30px;
  justify-content: flex-end;
}

.language-selector {
  display: flex;
  align-items: center;
}

.language-selector select {
  font-family: 'Merienda' !important;
  padding: 5px;
  margin-left: 10px;
  font-size: 16px;
  background-color: transparent;
  color: white;
  border: 0px;
}

.language-selector select {
  padding: 5px;
  margin-left: 10px;
  font-size: 16px;
}

.language-selector option {
  color: black !important; /* Texto negro en las opciones desplegables */
  background-color: white !important; /* Fondo blanco de opciones */
}


#loader {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #654d11; 
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: opacity 1s ease-out;
}

 .fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}

.header {
  background-color: #635015!important;
  text-align: center;
  font-family: 'Merriweather';
  font-size: 20px;
}
.navbar{
  background-color: #635015!important;
  display: flex;
  flex-wrap: wrap;
}
.header .navbar-nav .nav-item{
  padding: 10px;
  align-content: center;
}
h1,h2,h3 {
  font-family: 'Merienda' !important;
}
.header li a{
  color: white!important;
}
.header .highlight{
  background-color: #B4CA64;
  color: black!important;
}
.features {
  padding: 50px 0;
}
.feature-box {
  margin-bottom: 30px;
}
.footer {
  background-color: #f8f9fa;
  padding: 20px 0;
  text-align: center;
}
.footer p{
  color: white!important;
}
.footer strong{
  color: #B4CA64!important;
}

.banner {
  color: white;
  padding: 100px 0;
  text-align: center;
  position: relative;
}

/* Flecha flotante para scroll */
.scroll-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
  animation: floatDown 2s ease-in-out infinite;
}

.scroll-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateX(-50%) scale(1.1);
}

.scroll-arrow i {
  color: white;
  font-size: 20px;
  animation: bounce 1.5s ease-in-out infinite;
}

@keyframes floatDown {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}
.banner h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 5px 11px #7b7b7b;
  ;
}
.banner-footer-activities h1{
  text-shadow: 2px 5px 11px #1E1E1E!important;
}
.banner p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.banner .btn-primary, .banner .btn-secondary {
  padding: 10px 20px;
  font-size: 1.2rem;
}

.banner-sup{
  /*background-image: url('../img/banner-sup.jpg');*/
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  height: 59.05rem;
  justify-content: flex-start;
  display: flex;
  align-items: center;
}

.banner-mid{
  background-image: url('../img/banner-mid.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  height: 50rem;
  justify-content: flex-start;
  display: flex;
  align-items: center;
}
.btn-primary{
  background-color: #635015!important
}
.btn-secondary{
  background-color: #1E1E1E!important;
}
.btn-third{
  background-color: #B4CA64!important;
}
.btn{
  border-radius: 10px;
  height: 56px; /* altura uniforme */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
}
.vehiculePopUpPopup{
  background-image: url('../img/vehicle-4x4.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 10px solid #F0F0F0;
  border-radius: 20px;
  filter: drop-shadow(1px 4px 6px black);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vehiculePopUpPopup .close{
  color: white;
  font-size: 50px;
  z-index: 10;
  position: relative;
}

.modal-header, .modal-body{
  border: 0px!important;
  background: transparent;
}

.modal-content{
  justify-content: space-between!important;
}

.modal-body{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content-text{
  text-align: center;
  color: white;
  
  padding: 30px 20px;
  border-radius: 15px;
  /*backdrop-filter: blur(5px);
  background: rgba(0,0,0,0.6);
  */
}

.modal-reminder{
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.modal-title{
  color: #B4CA64 !important;
  font-size: 2rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.modal-description{
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
  margin: 0;
}
.navbar{
  padding: 0px!important;
}

.navbar-light .navbar-nav .nav-link{
  font-size: 1.1rem;
}

.content-section {
  padding: 0px 0;
  position: relative;
  z-index: 10;
}
.content-section img {
  width: 100%;
  height: auto;
}
.content-section .container-fluid{
  padding: 0!important;
}
.content-section.main h2{
  color: #635015;
  font-size: 3rem;
}

.content-section.coffee{
  background-color: #F2D370;
}
.content-section.coffee .btn-third{
  font-size: 1rem;
}

.content-section.coffee h2{
  color: #1E1E1E;
  font-size: 3rem;
}
.content-section.coffee .btn-primary{
  background-color: #F0F0F0!important;
  color: #1E1E1E;
  border: 0px!important;
  height: 56px; /* uniforme */
  width: auto;
  font-size: 20px;
  font-weight: 700!important;
}

.content-section.coffee .btn-secondary{
  background-color: #1E1E1E!important;
  color: #F0F0F0;
  border: 0px!important;
  height: 56px; /* uniforme */
  width: auto;
  font-size: 1rem;
  font-weight: 700!important;
  padding: 10px;
  margin-top: 20px;
}


.content-section.main p{
  font-size: 1.25rem;
}
.content-section.main h4{
  font-size: 1.25rem;
  font-weight: 600;
}
.p-10{
  padding: 10rem;
}
.banner.banner-sup p{
  font-weight: 600;
}
.banner.banner-sup h1{
  font-size: 5rem;
}
.btn{
  font-weight: 600!important;
}

.carousel-item .btn{
  width: 100%;
  height: 56px; /* uniforme */
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.carousel-item img{
  width: auto;
  height: auto;
}

#access{
  background-color: white!important;
}

/* Suavizar salida/entrada de slides cuando no hay fade */
.carousel .carousel-item {
  transition: transform .6s ease, opacity .6s ease; /* timing más suave */
}

.carousel-section{
  background-color: #F2D370;
  padding: 3rem 0px;
}

.map-image {
  zoom: 1.7!important;
}

/* Estilos para carruseles separados */
#roomsCarouselDesktop {
  display: block;
}

#roomsCarouselMobile {
  display: none;
}

/* Mejora visual móvil del carrusel */
@media (max-width: 767.98px) {
  /* Mostrar carrusel móvil y ocultar desktop */
  #roomsCarouselDesktop {
    display: none;
  }
  
  #roomsCarouselMobile {
    display: block;
  }
  
  #roomsCarouselMobile .carousel-inner{ padding: 0 40px; } /* respiración a los costados */
  #roomsCarouselMobile .card{ border-radius: 16px; overflow: hidden; }
  #roomsCarouselMobile .card .card-img-top{ height: 220px; }
  #roomsCarouselMobile .carousel-control-prev{ left: 6px; }
  #roomsCarouselMobile .carousel-control-next{ right: 6px; }
  /* Separación sutil entre slides al transicionar */
  #roomsCarouselMobile .carousel-item{ padding: 0 10px; }
  #roomsCarouselMobile .carousel-item .card{ margin: 0 6px; }
  
  /* Centrar la tarjeta en móvil */
  #roomsCarouselMobile .carousel-item .row {
    justify-content: center;
  }
  
  #roomsCarouselMobile .carousel-item .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  /* Altura fija para todas las tarjetas en móvil - elimina efecto acordeón */
  #roomsCarouselMobile .card {
    height: 600px; /* Altura fija para todas las tarjetas */
    display: flex;
    flex-direction: column;
  }
  
  #roomsCarouselMobile .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem;
    height: 220px;
  }
  
  #roomsCarouselMobile .room-footer {
    margin-top: auto;
  }
  
  /* Asegurar que las imágenes tengan altura consistente */
  #roomsCarouselMobile .card-img-top {
    height: 220px;
    object-fit: cover;
  }
  
  /* Hover permanente para tarjeta activa en móvil */
  #roomsCarouselMobile .carousel-item.active .card {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  }
  
  #roomsCarouselMobile .carousel-item.active .card .card-overlay {
    opacity: 1;
  }
  
  #roomsCarouselMobile .carousel-item.active .card .room-features-overlay {
    opacity: 1;
    transform: translateY(0);
  }
  
  #roomsCarouselMobile .carousel-item.active .card .room-badge {
    opacity: 1;
  }
}

.activity-section {
  /*background-image: url('../img/banner-mid.jpg');*/
  background-image: url('../img/IMG_0694.jpg');
  background-size: cover;
  background-position: center;
  padding: 50px 20px;
  color: white;
  position: relative;
}

.activity-section img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.activity-content {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  color: #333 !important;
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.activity-badge {
  background: linear-gradient(135deg, #B4CA64, #9bb55a);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 25px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(180, 202, 100, 0.3);
}

.activity-subtitle {
  color: #635015 !important;
  font-size: 1rem !important;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

.activity-title {
  color: #2c3e50 !important;
  font-size: 2.8rem !important;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.activity-description {
  margin-bottom: 40px;
}

.activity-highlight {
  color: #B4CA64 !important;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 30px;
  padding: 20px;
  background: rgba(180, 202, 100, 0.1);
  border-left: 5px solid #B4CA64;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 4px 15px rgba(180, 202, 100, 0.1);
}

.activity-locations {
  margin-top: 25px;
}

.location-item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.location-item:last-child {
  border-bottom: none;
}

.location-item:hover {
  background: rgba(180, 202, 100, 0.05);
  border-radius: 12px;
  margin: 0 -15px;
  padding: 15px;
  transform: translateX(5px);
}

.location-item i {
  color: #B4CA64;
  margin-right: 15px;
  font-size: 1.3rem;
  width: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.location-item:hover i {
  color: #9bb55a;
  transform: scale(1.1);
}

.location-item span {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 500;
}

.activity-buttons {
  margin-top: 40px;
}

.btn-activity-primary {
  background: linear-gradient(135deg, #B4CA64, #9bb55a) !important;
  color: white !important;
  border: none !important;
  padding: 18px 35px !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  height: 60px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 6px 20px rgba(180, 202, 100, 0.3) !important;
  text-decoration: none !important;
}

.btn-activity-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(180, 202, 100, 0.4) !important;
  color: white !important;
}

.btn-activity-primary i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.btn-activity-secondary {
  background: #333333!important;
  color: white !important;
  border: none !important;
  padding: 18px 35px !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  height: 60px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3) !important;
  text-decoration: none !important;
}

.btn-activity-secondary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4) !important;
  color: white !important;
}

.btn-activity-secondary i {
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Imagen móvil para actividades */
.activity-image-mobile {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.activity-image-overlay {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.activity-image-mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.activity-image-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 30px 20px 20px;
  color: white;
  text-align: center;
}

.activity-image-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  letter-spacing: 1px;
}

.banner-footer-activities {
/*background-image: url('../img/banner-bottom.jpg'); */
background-image: url('../img/banner-bottom.jpg');
background-size: cover;
background-position: center;
padding: 50px 20px;
color: white;
}


.card-title {
font-size: 20px;
font-weight: 600;
min-height: 60px;
}

.activity-section .col-md-6{
background: white;
padding: 40px;
color: black;
border-radius: 20px;
}
.activity-section h1{
color: #B4CA64;
}

.activity-section .btn-third{
width: 100%;
height: 56px; /* uniforme */
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
font-weight: 700 !important;
}

.content-section.coffee p{
font-size: 1.35rem;
}

.banner-footer-activities{
background-image: url('../img/IMG_0588.jpg');
background-size: cover;
background-repeat: no-repeat;
background-position-x: center;
height: 50rem;
justify-content: flex-start;
display: flex;
align-items: center;
}

.banner-footer-activities h1{
font-size: 3rem!important;
}

.banner-footer-activities .btn-third{
width: 100%;
max-width: 400px;
padding: 15px;
font-size: 20px;
font-weight: 700 !important;
height: 56px; /* uniforme */
}

::-webkit-scrollbar {
width: 5px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
background-color: #635015;
}


.whatsapp-btn {
position: fixed;
bottom: 20px;
right: 20px;
background-color: #25d366;
/*background-color: #635015;*/
color: white;
border-radius: 50%;
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
z-index: 1000;
font-size: 35px;
}


.whatsapp-btn:hover {
background-color: #635015;
text-decoration: none;
color: white;
}

.map-image{
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 300px;
}

.coffee a.btn{
display: flex;
align-items: center;
justify-content: center;
}

.footer-2{
/*background:url('../img/footer-2.jpg');*/
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}

#map{
  background-color: #b4ca64!important;
}

.container.with-card{
/*background: white;
padding: 50px;
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
border-radius: 15px;*/
max-width: 700px;
}

.container.with-card a{
  padding: 0px 20px!important;
  margin-top: 5px;
}
.container.with-card i{
  margin-left: 10px;
  color: #c22e01;
  font-size: 25px;
}

.container.with-card h2{
color: #B4CA64;
}

.footer-2 .btn-third{

border: 0px !important;
height: 56px; /* uniforme */
width: auto;
font-size: 20px;
font-weight: 700 !important;
padding: 10px;
margin-top: 20px;
}

.mt-1{
margin-top: 1rem!important;
}

.carousel-indicators{
position: relative!important;
display: none!important; /* hide dots */
}

.carousel-indicators li{
height: 10px;
background: #635015;
border-radius: 50%;
}
.carousel-indicators li.active{
background: #887947;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
color: #635015;
}

/* Bring arrows closer to items on desktop */
@media (min-width: 992px) {
  /* Flechas alineadas al borde de los ítems visibles */
  #roomsCarousel .carousel-control-prev { left: 10vw; }
  #roomsCarousel .carousel-control-next { right: 10vw; }
  /* Separación sutil entre slides y tarjetas en desktop */
  #roomsCarousel .carousel-inner { padding: 0 32px; }
  #roomsCarousel .carousel-item { padding: 0 12px; }
  #roomsCarousel .carousel-item .card { margin: 0 8px; }
}



.carousel-item i{
color: #635015;
}

.btn-primary:hover{
border-color: #635015!important;
}
.btn-primary{
border-color: #635015!important;
}

.waterfall-view-bungalow{
font-size: 20px;
min-height: 35px;
}

.footer{
background-color: #635015;
}

.navbar-light .navbar-toggler{
border-color: transparent!important;
margin-right: 20px!important;
}

header i{
    color: white;
    font-size: 35px;
}

.btn.focus, .btn:focus{
  box-shadow: none!important;
}

.share {
  background-color: #b4ca64;
  padding: 20px 0;
}
.share a {
  color: #635015;
  margin: 0 10px;
}
.share a:hover {
  color: #46390e;
  text-decoration: none;
}

nav.container{
  border-radius:  0px 0px 25px 20px;
}

a.navbar-brand{
  padding: 0px!important;
}

.nav-item.highlight{
  border-radius: 0px 0px 20px 0px
}

.navbar-brand img{
  margin-left: 30px!important;

}

.card-img-top::before {
  content: "Premium";
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #FFD700; /* Color dorado */
  color: #000; /* Color del texto */
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  transform: rotate(-45deg);
  transform-origin: 0 0;
  z-index: 1;
}

/* Estilos para dispositivos móviles */   
@media (max-width: 767px) {
    /* Header móvil */
    h1,h2 {
    font-size: 2rem!important;
    }
    .activity-section .btn-third{
    font-size: 1rem;
    max-width: 400px;
    }
    .container.with-card h2{
    font-size: 1.6rem!important;
    }
    .content-section.main p{
    font-size: 1rem;
    }

    .coffee .col-md-6.offset-md-3, .content-section.main .col-md-6.offset-md-3{
    padding: 30px;
    }

    .banner-sup h1{
    font-size: 2.2rem;
    }
    .banner p{
    font-size: 1.1rem;
    }
    .banner .btn{ 
    height: auto; 
    font-size: 1rem; 
    padding: 10px 16px; 
    }

    nav.container{
      border-radius:  0;
    }
    
    a.navbar-brand{
      padding: 0px!important;
    }
    
    .nav-item.highlight{
      border-radius: 0px;
    }

    /* Carrusel: tipografía compacta */
    .carousel-item .card-title{ font-size: 1rem; }
    .carousel-item .card-text{ font-size: .9rem; }

    /* Coffee: títulos y párrafos más compactos */
    .content-section.coffee h2{ font-size: 2rem; }
    .content-section.coffee p{ font-size: 1.1rem; }
    .content-section.coffee .btn{ font-size: .9rem; height: auto; }

    /* Footer banner (#footer): h1 y botones stack */
    .banner-footer-activities h1{ font-size: 1.8rem!important; }
    .banner-footer-activities .row .col-6{ width: 100%; max-width: 100%; flex: 0 0 100%; }
    .banner-footer-activities .row .col-6 + .col-6{ margin-top: 12px; }
    .banner-footer-activities .btn-third{ max-width: 100%; }

    /* Modal 4x4: tipografía y caja responsiva */
    .vehiculePopUpPopup{ width: 92vw; height: 65vh; }
    .modal-footer h1{ font-size: 1.4rem; }
    .modal-footer p{ font-size: .95rem; line-height: 1.35; }

    /* Sección de actividades móvil */
    .activity-section {
        background-image: none !important;
        background: white !important;
        padding: 0 !important;
    }
    
    .activity-content {
        background: white;
        color: black !important;
        padding: 50px 25px;
        margin: 0;
        border-radius: 0;
        box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
        position: relative;
    }
    
    .activity-badge {
        background: linear-gradient(135deg, #B4CA64, #9bb55a);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        display: inline-block;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .activity-subtitle {
        color: #635015 !important;
        font-size: 0.9rem !important;
        margin-bottom: 10px;
        font-weight: 600;
        letter-spacing: 1px;
    }
    
    .activity-title {
        color: #2c3e50 !important;
        font-size: 2.2rem !important;
        margin-bottom: 25px;
        font-weight: 700;
        line-height: 1.2;
    }
    
    .activity-description {
        margin-bottom: 30px;
    }
    
    .activity-highlight {
        color: #B4CA64 !important;
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 25px;
        padding: 15px;
        background: rgba(180, 202, 100, 0.1);
        border-left: 4px solid #B4CA64;
        border-radius: 0 8px 8px 0;
    }
    
    .activity-locations {
        margin-top: 20px;
    }
    
    .location-item {
        display: flex;
        align-items: center;
        margin-bottom: 12px;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .location-item:last-child {
        border-bottom: none;
    }
    
    .location-item i {
        color: #B4CA64;
        margin-right: 12px;
        font-size: 1.1rem;
        width: 20px;
        text-align: center;
    }
    
    .location-item span {
        color: #555;
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .activity-buttons {
        margin-top: 30px;
    }
    
    .btn-activity-primary {
        background: linear-gradient(135deg, #B4CA64, #9bb55a) !important;
        color: white !important;
        border: none !important;
        padding: 15px 25px !important;
        border-radius: 25px !important;
        font-weight: 600 !important;
        font-size: 1rem !important;
        height: 55px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 4px 15px rgba(180, 202, 100, 0.3) !important;
    }
    
    .btn-activity-primary:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(180, 202, 100, 0.4) !important;
    }
    
    .btn-activity-primary i {
        margin-right: 8px;
        font-size: 1.1rem;
    }
    
    .btn-activity-secondary {
        background: #333333 !important;
        color: white !important;
        border: none !important;
        padding: 15px 25px !important;
        border-radius: 25px !important;
        font-weight: 600 !important;
        font-size: 1rem !important;
        height: 55px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3) !important;
    }
    
    .btn-activity-secondary:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(44, 62, 80, 0.4) !important;
    }
    
    .btn-activity-secondary i {
        margin-right: 8px;
        font-size: 1.1rem;
    }
    
    /* Efectos adicionales para móvil */
    .activity-image-mobile:hover img {
        transform: scale(1.05);
    }
    
    .activity-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #B4CA64, #9bb55a, #B4CA64);
    }
    
    .activity-locations .location-item:hover {
        background: rgba(180, 202, 100, 0.05);
        border-radius: 8px;
        margin: 0 -10px;
        padding: 10px;
    }
    
    .activity-locations .location-item:hover i {
        color: #9bb55a;
        transform: scale(1.1);
    }

    /* Banner principal */
    .banner-sup {
        height: 100vh !important;
        min-height: 100vh;
        position: relative;
    }
    
    .banner-sup video {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        object-fit: cover !important;
        z-index: -1 !important;
    }
    
    .banner-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    }
    
    .banner-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
        margin-bottom: 30px;
        text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    }
    
    .banner-btn {
        font-size: 1.1rem !important;
        padding: 15px 30px !important;
        height: auto !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        border: 2px solid rgba(255,255,255,0.3);
    }
    
    .banner-sup .container {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 60px;
    }

    /* Secciones de contenido */
    h1, h2 {
        font-size: 2rem !important;
        line-height: 1.2;
    }
    
    .content-section.main h2 {
        font-size: 1.8rem !important;
    }
    
    .content-section.main h4 {
        font-size: 1rem !important;
        margin-bottom: 10px;
    }
    
    .content-section.main p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Sección reserve específica */
    #reserve {
        background-color: #ffffff;
        position: relative;
        z-index: 20;
        margin-top: 0;
    }
    
    #reserve .col-12 {
        padding: 0;
    }
    
    #reserve .d-flex {
        background-color: #ffffff;
        min-height: 300px;
    }
    
    #reserve .col-12.col-md-10.offset-md-1 {
        padding: 30px 20px !important;
        margin: 0 !important;
    }
    
    /* Ajustes adicionales para el video fullscreen en móvil */
    @media (max-width: 767px) {
      .row-map{
        flex-direction: column-reverse;
      }
      html .map-image {
        zoom: 1.5!important;
      }
        body {
            overflow-x: hidden;
        }
        
        .banner-sup {
            overflow: hidden;
        }
        
        .banner-sup .row {
            margin: 0;
        }
        
        .banner-sup .col-12 {
            padding: 0 15px;
        }
        
        /* Asegurar que el contenido esté centrado verticalmente */
        .banner-sup .container {
            position: relative;
            z-index: 2;
        }
    }

    /* Carrusel móvil */
    .carousel-section {
        padding: 2rem 0 !important;
    }
    
    .carousel-item .card {
        margin-bottom: 20px;
    }
    
    .carousel-item .card-title {
        font-size: 1rem;
        min-height: 40px;
    }
    
    .carousel-item .card-text {
        font-size: 0.9rem;
    }
    
    .carousel-item .btn {
        font-size: 0.9rem;
        height: 45px !important;
    }

    /* Sección de actividades */
    .activity-section {
        padding: 40px 15px !important;
    }
    
    .activity-content {
        background: rgba(255,255,255,0.95);
        padding: 30px 20px;
        border-radius: 15px;
        margin: 0 10px;
        color: black!important;
    }
    
    .activity-section h1 {
        color: #B4CA64 !important;
        font-size: 1.8rem !important;
    }
    
    .activity-section .btn-third {
        font-size: 1rem;
        height: 50px !important;
        margin-bottom: 10px;
    }

    /* Sección de café */
    .content-section.coffee h2 {
        font-size: 1.8rem !important;
    }
    
    .content-section.coffee p {
        font-size: 1.1rem;
    }
    
    .content-section.coffee .btn {
        font-size: 1rem;
        height: 50px !important;
    }

    /* Footer banner */
    .banner-footer-activities {
        height: 40vh !important;
        min-height: 300px;
    }
    
    .banner-footer-activities h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    /* Sección del mapa */
    .container.with-card {
        padding: 30px 20px !important;
        margin: 20px 10px;
    }
    
    .container.with-card h2 {
        font-size: 1.6rem !important;
    }
    
    .container.with-card p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Mapa móvil */
    .map-image {
        min-height: 250px !important;
        height: 250px;
        order: 1 !important;
        zoom: 2.8!important;
    }
    
    .map-img {
        min-height: 250px !important;
        height: 250px !important;
        object-fit: cover !important;
        width: 100% !important;
    }
    
    #map .col-12.col-md-6.d-flex {
        order: 2 !important;
        min-height: auto;
    }
    
    #map .p-4 {
        padding: 20px 15px !important;
    }

    /* Logros */
    .footer .col-6 {
        margin-bottom: 20px;
    }
    
    .footer img {
        width: 50px !important;
        height: auto;
    }
    
    .footer .small {
        font-size: 0.8rem;
    }

    /* Botón de WhatsApp */
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 15px;
        right: 15px;
    }

    /* Modal 4x4 */
    .vehiculePopUpPopup {
        width: 95vw;
        max-width: 400px;
        height: auto;
        min-height: 300px;
        margin: 20px auto;
    }
    
    .modal-content-text {
        padding: 20px 15px;
        margin: 10px;
    }
    
    .modal-reminder {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .modal-title {
        font-size: 1.5rem !important;
        margin-bottom: 15px;
    }
    
    .modal-description {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .vehiculePopUpPopup .close {
        font-size: 35px;
        top: 10px;
        right: 15px;
    }

    /* Navegación */
    nav.container {
        border-radius: 0;
    }
    
    .nav-item.highlight {
        border-radius: 0;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 15px 10px;
        font-size: 1rem;
    }
    
    /* Asegurar que el navbar se cierre correctamente en móvil */
    .navbar-collapse {
        transition: all 0.3s ease;
    }
    
    .navbar-collapse.show {
        display: block !important;
    }
    
    .navbar-collapse:not(.show) {
        display: none !important;
    }
    
    /* Mejorar la experiencia del toggler */
    .navbar-toggler {
        border: none !important;
        padding: 4px 8px;
    }
    
    .navbar-toggler:focus {
        box-shadow: none !important;
    }
    
    .navbar-toggler i {
        font-size: 1.5rem;
        color: white;
    }
}

/* Estilos para tablets */
@media (min-width: 768px) and (max-width: 1024px) {

    body {
        font-size: 16px;
    }
    .header {
        font-size: 20px;
    }
    .content-section.main p{
      font-size: 0.75rem;
    }
    .content-section.main h2{
      font-size: 1.25rem;
    }
    .content-section.main h4{
      font-size: 15px;
    }
    .banner.banner-sup h1{
      font-size: 3rem;
    }

    /*Carousel item*/

    .carousel-item img{
      max-height: 200px;
      height: 200px;
    }

    .carousel-item .btn{
      height: auto!important;
    }

    .carousel-item .card-title{
      font-size: 1rem;
    }
    .carousel-item .card-text{
      font-size: 12px;
    }

    /* --- */

    .main.coffee .col-6{
      width: 100%;
      max-width: 100%;
      flex:auto!important;
    }

    .content-section.coffee .btn-secondary{
      font-size: .75rem!important;
      height: auto!important;
    }
    .content-section.coffee .btn-primary{
      font-size: .75rem;
      height: auto!important;
    }
    
    .content-section.coffee .btn-third{
      font-size: .75rem;
      height: auto!important;
    }

    .activity-section a.btn.btn-third {
      font-size: 1rem!important;
    }
   
    nav.container {
      border-radius: 0px 0px 10px 10px;
    }

  }

    /* Estilos para escritorios */
    @media (min-width: 1025px) {
    body {
        font-size: 18px;
    }
    .header {
        font-size: 24px;
    }
}

/* ===== Enhanced Rooms Carousel ===== */
.carousel-section {
  position: relative;
  background-color: #F2D370;
  padding: 3rem 0px;
}
.carousel-section .carousel-inner {
  overflow: visible;
}
.carousel-section .card {
  border: 0;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
  height: 100%;
  background: white;
  position: relative;
  overflow: hidden;
}
.carousel-section .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #B4CA64, #9bb55a, #B4CA64);
  z-index: 1;
}
.carousel-section .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
.carousel-section .card .card-img-top {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  height: 320px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.carousel-section .card:hover .card-img-top {
  transform: scale(1.05);
}
.carousel-section .card-body {
  padding: 20px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 375px;
}
.carousel-section .card-title {
  font-weight: 700;
  color: #2c3e50;
  font-size: 1.2rem;
  margin-bottom: 0;
  line-height: 1.4;
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
  hyphens: auto;
}
.carousel-section .card-text {
  color: #555;
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 0.95rem;
}
.carousel-section .card .btn {
  width: 70%!important;
  background: linear-gradient(135deg, #B4CA64, #9bb55a);
  border: none;
  border-radius: 30px;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(180, 202, 100, 0.3);
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.carousel-section .card .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(180, 202, 100, 0.4);
  background: linear-gradient(135deg, #9bb55a, #B4CA64);
  color: white;
  text-decoration: none;
}

.carousel-section .card .btn i{	
  color: white!important;
  font-size: 20px;
}

.carousel-section .fa-solid,
.carousel-section svg {
  color: #B4CA64;
  margin-right: 8px;
}

/* Cards de habitaciones mejoradas */
.room-card {
  position: relative;
  overflow: hidden;
}

/* Tarjeta destacada (del medio) */
.featured-card {
  transform: translateY(-15px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.25);
  z-index: 10;
  border: 2px solid #B4CA64;
}

.featured-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Tarjeta siempre en hover */
.always-hover {
  transform: translateY(-20px) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3) !important;
}

.always-hover .card-img-top {
  transform: scale(1.05) !important;
}

.always-hover .card-overlay {
  opacity: 1 !important;
}

#roomsCarouselMobile .always-hover {
  transform: translateY(10px) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
}

/* Cinta destacada vertical */
.featured-ribbon {
  position: absolute;
  top: 0;
  right: 10px;
  width: 35px;
  height: 30%;
  background: linear-gradient(180deg, #B4CA64 0%, #9bb55a 50%, #7a9a4a 100%);
  z-index: 15;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
  box-shadow: 2px 0 10px rgba(180, 202, 100, 0.3);
}

.featured-ribbon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 50%, rgba(0,0,0,0.1) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
}

.featured-ribbon::after {
  content: '★';
  position: absolute;
  top: 8px;
  right: 6px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.card-image-container {
  position: relative;
  overflow: hidden;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.room-card:hover .card-overlay {
  opacity: 1;
}

.room-badge {
  background: linear-gradient(135deg, #B4CA64, #9bb55a);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(180, 202, 100, 0.3);
  backdrop-filter: blur(10px);
  align-self: flex-start;
}
.room-badge i{
  color: white!important;
}

.garden-badge {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.room-features-overlay {
  display: flex;
  gap: 10px;
  align-self: flex-end;
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B4CA64;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feature-icon:hover {
  transform: scale(1.1);
  background: #B4CA64;
  color: white;
}

.room-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 12px;
}

.room-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(180, 202, 100, 0.1);
  padding: 4px 8px;
  border-radius: 12px;
  flex-shrink: 0;
  white-space: nowrap;
}

.room-rating i {
  color: #ffc107;
  font-size: 0.8rem;
}

.room-rating span {
  color: #2c3e50;
  font-weight: 600;
  font-size: 0.8rem;
  margin-left: 2px;
}

.room-amenities {
  margin-bottom: 25px;
}

.amenity-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.amenity-item:hover {
  background: rgba(180, 202, 100, 0.05);
  border-radius: 8px;
  margin: 0 -10px;
  padding: 8px 10px;
  transform: translateX(5px);
}

.amenity-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #B4CA64, #9bb55a);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: white;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.amenity-item:hover .amenity-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(180, 202, 100, 0.3);
}

.amenity-item span {
  color: #555;
  font-size: 0.95rem;
  font-weight: 500;
}

.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
  margin-top: auto;
}

.room-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.price-label {
  color: #999;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-amount {
  color: #2c3e50;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.price-period {
  color: #999;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Versión compacta de amenities */
.room-amenities-compact {
  margin-bottom: 0;
  flex: 1;
}

.amenity-item-compact {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  padding: 4px 0;
  transition: all 0.3s ease;
}

.amenity-item-compact:hover {
  background: rgba(180, 202, 100, 0.05);
  border-radius: 6px;
  margin: 0 -8px;
  padding: 6px 8px;
  transform: translateX(3px);
}

.amenity-item-compact i {
  color: #B4CA64;
  margin-right: 10px;
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.amenity-item-compact:hover i {
  color: #9bb55a;
  transform: scale(1.1);
}

.amenity-item-compact span {
  color: #555;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Badges adicionales */
.waterfall-badge {
  background: linear-gradient(135deg, #17a2b8, #138496);
}

.deluxe-badge {
  background: linear-gradient(135deg, #6f42c1, #5a32a3);
}

.bungalow-badge {
  background: linear-gradient(135deg, #fd7e14, #e55a00);
}

.mountain-badge {
  background: linear-gradient(135deg, #6c757d, #495057);
}

/* Carousel controls */
#roomsCarousel .carousel-control-prev,
#roomsCarousel .carousel-control-next {
  width: 48px;
  height: 48px;
  top: 45%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(60,47,26,0.85);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
#roomsCarousel .carousel-control-prev-icon,
#roomsCarousel .carousel-control-next-icon {
  filter: invert(1) grayscale(1);
}

/* Indicators */
#roomsCarousel .carousel-indicators {
  bottom: -20px;
}
#roomsCarousel .carousel-indicators li {
  background: #cbb79a;
}
#roomsCarousel .carousel-indicators .active {
  background: #635015;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .carousel-section .card .card-img-top {
    height: 240px;
  }
}

@media (max-width: 767.98px) {
  .carousel-section .card {
    margin-bottom: 16px;
  }
  .carousel-section .card .card-img-top {
    height: 200px;
  }
}

/* Bring arrows closer to items on desktop */
@media (min-width: 992px) {
  /* Flechas alineadas al borde de los ítems visibles */
  #roomsCarousel .carousel-control-prev { left: 10vw; }
  #roomsCarousel .carousel-control-next { right: 10vw; }
  /* Separación sutil entre slides y tarjetas en desktop */
  #roomsCarousel .carousel-inner { padding: 0 32px; }
  #roomsCarousel .carousel-item { padding: 0 12px; }
  #roomsCarousel .carousel-item .card { margin: 0 8px; }
}

/* Mejora visual móvil del carrusel */
@media (max-width: 767.98px) {
  #roomsCarousel .carousel-inner{ padding: 0 40px; } /* respiración a los costados */
  #roomsCarousel .card{ border-radius: 16px; overflow: hidden; }
  #roomsCarousel .card .card-img-top{ height: 220px; }
  #roomsCarousel .carousel-control-prev{ left: 6px; }
  #roomsCarousel .carousel-control-next{ right: 6px; }
  /* Separación sutil entre slides al transicionar */
  #roomsCarousel .carousel-item{ padding: 0 10px; }
  #roomsCarousel .carousel-item .card{ margin: 0 6px; }
}


