:root {
    --primary-color: #1a1a1a;
    --secondary-color: #8b7355;
    --menu-bg-left: #333;
    --menu-bg-right: #f8f9fa;
    --highlight-color: #b87d4b;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6, .nav-link, .btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

p, .text-muted {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.navbar-nav .nav-link {
    font-weight: 400;
}

.top-banner {
    background-color: #00006c;
    color: white;
    padding: 0.6rem;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 900;
}

.navbar {
    background-color: var(--menu-bg-right);
    padding: 0;
}

.navbar-brand {
    background-color: #00006c;
    padding: 0.5rem 1rem;
}

.navbar-brand img {
    height: 40px;
}

/* Estilo base para los enlaces de la barra de navegación */
.nav-link {
    color: var(--primary-color) !important;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin: 0 0.5rem;
    padding: 8px 16px; 
    font-weight: 400;
    display: block; 
    transition: background 0.3s ease, transform 0.2s ease;
    border-radius: 2px; 
}

/* Estilo cursor sobre el enlace (hover) */
.nav-link:hover {
    background: linear-gradient(45deg, #CBC0B7, #CBC0B7); 
    color: #fff; 
    transform: scale(1.05); 
}

/* Para la barra de navegación en general */
.navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* contenedor barra de navegación use flexbox */
.navbar-nav {
    display: flex;
    justify-content: flex-start; 
    width: 100%;
}

/* Botón "SEGUIMIENTO DE RESERVACIÓN" a la derecha 
#seguimiento-reservacion {
    margin-left: auto; 
}*/

           
/* LRO CAMBIO DE TAMAÑO DE BOTON DE CONTACTO*/
.contact-info {
    background-color: var(--highlight-color);
    color: white;
    padding:1rem 1rem; 
    text-align:center
    font-weight: 100px;
    width: 100%; 
    max-width: 200px; 
}

.language-switcher {
    position: relative;
    display: inline-block;
}

.language-switcher img {
    height: 20px;
    margin-right: 0.5rem;
}

.language-switcher .dropdown-menu {
    min-width: 100px;
}

.hero-section {
    position: relative;
    height: 100vh; 
    overflow: hidden; 
}

.hero-slide {
    position: relative;
    height: 100%;
}
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-slide video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none; 
}

.hero-title {
    font-family: sans-serif;
    font-size: 3rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    z-index: 5;
}


.img-overlay {
    position: absolute; 
    top: 10px;
    left: 20px; 
    z-index: 10; 
}

.img-overlay img.responsive-image {
    max-width: 50%; 
    height: auto; 
    display: block; 
}
 
.custom-slogan {
    position: absolute; 
    bottom: 0;
    left: 50%;
    transform: translateX(-50%); /
    max-width: 80%; 
    height: auto; 
    z-index: 10; 
}


.textoJustificado {
    text-align: justify; 
    margin: 0 auto; 
    max-width: 90%; 
}


.lead {
    font-size: 1.25rem; 
    line-height: 1.6; 
}


@media (max-width: 768px) {
    .img-overlay {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .img-overlay {
        max-width: 95%;
    }
}


/* LRO Estilos básicos para la barra de reserva*/
/* Barra de reserva */

.reservación {
    background-color:#003900 ;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.812);
    margin: 50px 0;
    border-radius: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%; 
}

.logo-g {
    width: 1100pxpx;
    margin-left: 10px;
    margin-right: 0;
    display: block;
    margin-top: -1px;
    align-items: center;
    text-align: center;
}
.btn-reservar1  {
    background-color: #6c935d;
    color: rgb(255, 255, 255);
    cursor: pointer;
    padding: 15px 14px;
    border: white !important;
    border-radius: 0px;
    font-size: 16px;
    width: 100%;
    max-width: 200px;
    margin-left: -10px;
    align-self: center;
    margin-top: 8px !important;
   
}
/* Estilo para el contenedor de la tabla de ocupación */
.occupancy-table-container {
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 5px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 5px;
    z-index: 10;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #ccc;
}

/* Estilo para las opciones dentro de la tabla */
.occupancy-option {
    margin-bottom: 15px;
}

/* Estilo para las etiquetas dentro de las opciones */
.occupancy-option label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

/* Estilo para los select dentro de las opciones */
.occupancy-option select {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    color: #333;
    transition: border-color 0.3s ease;
}

/* Estilo para el hover del select*/
.occupancy-option select:hover {
    border-color: #4CAF50;
}

/* Estilo para el botón de aceptar */
.btn-acep {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s ease;
    text-align: center;
    margin-top: 10px;
}

/* Estilo para el hover del botón */
.btn-acep:hover {
    background-color: #45a049;
}

.hotel-select-1 {
    padding: ;
    font-size: ;
    border-radius: 0px;
    outline: none;
    width: 100%;

}


/* Contenedor para las imágenes dentro de los campos */
.input-container, .hotel-select-1 {
    position: relative;
}

/* Estilo general para los iconos dentro de los campos */
.input-container .input-icon, .hotel-select-1 .input-icon {
    position: absolute;
    right: 10px; /
    top: 50%;
    transform: translateY(-50%); 
    width: 30px; 
    height: 20px; 
    margin-top: -20px;
}


.input-container input, .hotel-select-1 select {
    padding-right: 40px; 
}


.hotel-select-1 select {
    padding-right: 40px;
}


.row {
    margin-bottom: 15px;
}

.bordes {
    border: 1px solid #cccccc00;
    padding: 10px;
    border-radius: 0px;
}

.col-1, .col-3 {
    display: flex;
    align-items: center;
}

.form-control {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border-radius: 0px;
    border: 1px solid #ccc;
}

input:focus, select:focus {
    border-color: #4CAF50; 
    outline: none;
    border-radius: 0px;
}

.form-control {
    padding-right: 40px; 
    margin-top: 5px;
}


.btn-adjust:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.input-container {
    position: relative;
    width: 100%;
}
/* Estilos generales para el botón */
.btn-reservar1 {
    background-color: #007bff; 
    color: white; 
    border: none; 
    padding: 12px 12px; 
    font-size: 14px; 
    border-radius: 0px; 
    cursor: pointer; 
    text-align: center; 
    width: 100%; 
    transition: all 0.3s ease; 
    margin-top: 3px !important;
}

/* Efecto hover: cuando el mouse pasa sobre el botón */
.btn-reservar1:hover {
    background-color: #0056b3; /* Color de fondo más oscuro */
    color: #f8f9fa; /* Color del texto cambia cuando se pasa el ratón */
}

/* Efecto cuando el botón está deshabilitado */
.btn-reservar1:disabled {
    background-color: #ccc; /* Color de fondo cuando está deshabilitado */
    color: #6c757d; /* Color del texto cuando está deshabilitado */
    cursor: not-allowed; /* Cambia el cursor para indicar que no se puede hacer clic */
}

/* Efecto de enfoque (cuando el botón recibe el foco) */
.btn-reservar1:focus {
    outline: none; /* Elimina el borde azul por defecto al hacer foco en el botón */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Sombra de enfoque */
}




.resort-logos {
    background-color: #f4f4f0;
    padding: 2rem 0;
    text-align: center;
}

.resort-logos h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.resort-logos p {
    color: #666;
    margin-bottom: 2rem;
}

.resort-logo {
    height: 50px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    margin: 0 1rem;
}

.resort-logo:hover {
    opacity: 1;
}

.footer {
    background-color: #333;
    color: white;
    padding: 4rem 0;
    width: 100%;
}

.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 300;
}

.footer .social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.footer .app-downloads img {
    height: 40px;
    margin-right: 1rem;
}

.footer-bottom {
    background-color: #222;
    padding: 1rem 0;
    text-align: center;
}

.footer-bottom img {
    height: 30px;
    margin: 0 1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-bottom img:hover {
    opacity: 1;
}

.vr {
    opacity: 0.25;
    height: 100%;
    min-height: 100px;
}

.destination-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.destination-links a {
    transition: all 0.3s ease;
    font-weight: 400;
}

.destination-links a:hover:not(.active) {
    background-color: #f8f9fa;
    padding-left: 1rem;
}

.destination-links .active {
    background-color: #B87D4B;
    color: white !important;
}

.destination-links .fa-chevron-right {
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.destination-image {
    height: 600px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.yacht-section {
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.yacht-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.yacht-content {
    background-color: white;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-left: -50px;
    z-index: 1;
    position: relative;
}

.yacht-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.yacht-description {
    font-size: 1rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 300;
}

.yacht-buttons .btn {
    background-color: black;
    color: white;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    margin-right: 1rem;
    border: none;
    transition: background-color 0.3s ease;
}

.yacht-buttons .btn:hover {
    background-color: #333;
}

.concert-section {
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.concert-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.concert-content {
    background-color: white;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-right: -50px;
    z-index: 1;
    position: relative;
}

.concert-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.concert-description {
    font-size: 1rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 300;
}

.concert-buttons .btn {
    background-color: black;
    color: white;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border: none;
    transition: background-color 0.3s ease;
}

.concert-buttons .btn:hover {
    background-color: #333;
}

.gallery-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    flex: 1;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    opacity: 0;
    transition: all 0.5s ease, transform 0.5s ease;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0);
    transform: translateY(-20px);
}

.gallery-item:hover .overlay1 {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    transform: translateY(0);
}

.gallery-item .line {
    width: 0;
    height: 2px;
    background-color: var(--highlight-color);
    transition: width 0.5s ease;
    margin-top: 0.5rem;
}

.gallery-item:hover .line {
    width: 50%;
}

.gallery-text {
    flex: 1;
    padding-left: 2rem;
}

.gallery-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.gallery-text p {
    color: #666;
    font-weight: 300;
}
body > .container:first-of-type {
    min-height: 100vh;
}

.img-foot-big {
    height: auto;
    width: 215px;
    }
    
.img-foot {
    height: 30px;
    width: auto;
}

.img-overlay{
    position: absolute;
    margin-bottom: -5%;
    width: auto;
    height: auto;
    display: block;
    
}

.museo-logo {
    width:10px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    margin: 0 1rem;
}

/* Hero section styles */

/* LRO para la sección de carrusel Galeria  */

/* Contenedor de la imagen */
.carousel-image-container {
    position: relative;
    width: 100%;
    height: auto;
   
}

/* Estilo para las imágenes dentro del carrusel */
.carousel-item img {
    width: 100%;
    height: auto;
   
}

/* Estilo para la imagen sobrepuesta */
.overlay-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 30%;
    max-height: 50%;
    object-fit: contain;
    pointer-events: none;
    z-index: 10;  /* Asegúrate de que la imagen sobrepuesta esté por encima de la imagen */
}

/* Estilo para las leyendas del carrusel */
.carousel-caption {
    position:absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
    width: 90%;
    z-index: 15;  
}

.carousel-caption h5 {
    font-weight: bold;
    margin-bottom: 10px;
    color: white; 
}

.carousel-caption p {
    font-size: 1rem;
    color: white; 
}


.hero-hotel {
    position: relative;
    height: 70vh;
    background-image: url('items/images/placeholder.svg?height=800&width=1200&text=Nuevo+Nayarit-Vallarta');
    background-size: cover;
    background-position: center;
    display: block;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-hotel::before {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-hotel-content {
    position: relative;
    z-index: 2;
}

.hero-hotel h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* Asegúrate de que la sección hero-hotel ocupe toda la altura de la ventana */
.hero-hotel {
    position: relative;
    width: 100%;
    height: 150vh; 
    overflow: hidden;
}

/* Hacer que el video ocupe el 100% del ancho y de la altura de la sección */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

/* Asegura que el contenido dentro de hero-hotel-content esté por encima del video */
.hero-hotel-content {
    position: relative;
    z-index: 2;
    
}


 /* LRO Apartado de servicios en la galeria  */
  
  .servicios {
    margin-top: 30px;
  }
  
  .titulo-servicios {
    font-size: 36px; 
    font-weight: bold;
    text-align: center;
    color: #176601;
    text-transform: uppercase;
    letter-spacing: px;
    margin-bottom: 40px;
    font-family: 'Arial', sans-serif;
  }
  
  .servicio {
    margin-bottom: 20px; 
  }
  
  .servicio-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #ffffff; 
    padding: 10px;
    border-radius: 0px; 
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0); 
    transition: all 0.3s ease; 
  }

  
  .icono-servicio {
    width: 20px; 
    height: 18px; 
    margin-right: 15px; 
  }
  
  .servicio-box p {
    font-size: 10px;
    color: #333;
    margin: 0;
    font-weight: 600;
  }
  


/* LRO DESCRIPCIÓN DE HOTELES EN GALERIA  */
/* Título de la sección */
.titulo-servicios {
    font-size: 2.5rem;
    font-weight: 600;
    color:  #176601;
    margin-bottom: 20px;
    text-align: center;

}
/*cambios GAFSACOMM*/
/* Contenedor de las tarjetas de hoteles */
.hotel-container {
    display: flex;
    flex-direction: column; 
    gap: 30px;  
    align-items: center;  
}

/* Estilo para cada tarjeta de hotel */
.hotel-card {
    display: flex;  
    width: 100%; 
    max-width: 1200px;  
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.729);
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Imagen dentro de la tarjeta */
.hotel-card img {
    width: 40%; 
    height: 250px;
    object-fit: cover;
}

/* Alternar la posición de las imágenes: primera a la izquierda, segunda a la derecha, etc. */
.hotel-card:nth-child(odd) img {
    order: -1; /* Imagen a la izquierda */
}

.hotel-card:nth-child(even) img {
    order: 1; /* Imagen a la derecha */
}

/* Contenido dentro de la tarjeta */
.hotel-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    width: 60%;  
}

/* Título del hotel */
.hotel-card-content h4 {
    font-size: 1.5rem;
    color: #34495e;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Descripción breve del hotel */
.hotel-card-content p {
    font-size: 1rem;
    color: #656f70;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Contenedor para el botón */
.hotel-card-content .btn-container {
    display: flex;
    justify-content: flex-end;
}

/* Botón de saber más */
.btn-reservar-ahora {
    background-color: #02957a;
    color: white;
    border: none;
    padding: 10px 15px !important;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    right: -100px;

}
/*Fin cambios GAFSACOMM*/

.btn-reservar-ahora:hover {
    background-color: #01704d;
}

/* Efecto hover para las tarjetas de hotel */
.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


.btn-cerrar {
    background-color: #95a5a6;
    color: white;
    border: none;
    padding: 8px 15px;
    font-size: 1rem;
    cursor: pointer;
}

.btn-cerrar:hover {
    background-color: #7f8c8d;
}

  

/* Sidebar navigation styles */
.sidebar-nav {
    background: #f5f3f0;
    padding: 0;
}

.sidebar-nav h6 {
    background: #666666;
    color: white;
    padding: 1rem;
    margin: 0;
    font-family: 'Times New Roman', serif;
    font-weight: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sidebar-nav .nav-link {
    color: #666666;
    padding: 1rem;
    border-bottom: 1px solid #e5e5e5;
    font-family: 'Times New Roman', serif;
    font-size: 15px;
    font-weight: normal;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.sidebar-nav .nav-link:after {
    content: '>';
    position: absolute;
    right: 1rem;
    opacity: 0.5;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
    background-color: #e5e2dd;
    color: #333;
}

/* Hotel section styles */
.hotel-section {
    padding: 4rem 0;
}

/* Slick slider styles */
.v-slider-for, .v-slider_general {
    width: 100%;
    margin: 0 auto;
}

.v-slider-for .slick-slide, .v-slider_general .slick-slide {
    margin: 0 10px;
}

.v-slider-for img, .v-slider_general img {
    width: 100%;
    height: auto;
}

.v-slider-modal__prev,
.v-slider-modal__next,
.v-slider__arrow_prev,
.v-slider__arrow_next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 40px;
    height: 40px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
}

.v-slider-modal__prev,
.v-slider__arrow_prev {
    left: 10px;
}

.v-slider-modal__next,
.v-slider__arrow_next {
    right: 10px;
}

.i-arrow-light::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
}

.v-slider-modal__prev .i-arrow-light::before,
.v-slider__arrow_prev .i-arrow-light::before {
    transform: rotate(-135deg);
}

.v-slider-modal__next .i-arrow-light::before,
.v-slider__arrow_next .i-arrow-light::before {
    transform: rotate(45deg);
}

.v-slider {
    position: relative;
    overflow: hidden;
}
.v-slide {
    display: none;
    text-align: center;
}
.v-slide.active {
    display: block;
}
.v-slide img {
    max-width: 100%;
    height: auto;
}
.gallery_caption {
    text-align: center;
    margin-top: 20px;
}
.slide-gallery-caption {
    background-color: white;
}
.gallery_caption:after {
    content: '';
    display: block;
    height: 1px;
    width: 100%;
    margin: 15px auto 10px;
    background-color: #c7c6c6;
}
.gallery_span {
    content: '';
    height: 2px;
    display: inline-block;
    width: 25px;
    margin: 0 15px 5px 15px;
    background-color: #c29c74;
}
.v-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}
.v-slider__arrow_prev {
    left: 20px;
}
.v-slider__arrow_next {
    right: 20px;
}
@media only screen and (max-width: 600px) {
    .gallery_caption:after {
        height: 2px;
        width: 90%;
    }
}

/* Slick slider center mode styles */
.v-slider .slick-slide {
    margin: 0 5px;
    transition: transform 0.3s ease;
    opacity: 0.5;
}

.v-slider .slick-center {
    transform: scale(1.2);
    transition: transform 0.3s ease;
    opacity: 1;
}

.v-slider img {
    width:100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Services grid styles */
.services-grid {
    background-color: #f5f3f0;
    padding: 1rem;
}

.services-grid .col-3 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.services-grid img {
    max-width: 30px;
    height: auto;
}

/* Estilos para la sección de Sitios de Interés */
.points-of-interest {
    padding: 3rem 1.5rem;
}
.points-of-interest h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
}
.poi-grid {
    max-width: 80rem;
    margin: 0 auto;
}
.poi-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}
.poi-row:first-child {
    grid-template-columns: repeat(3, 1fr);
}
.poi-row:last-child {
    grid-template-columns: 1fr;
}
.poi-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    height: 400px;
}
.poi-item-wide {
    grid-column: span 1;
}
.poi-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.poi-item:hover img {
    transform: scale(1.1);
}
.poi-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    transform: translateY(100%);
    transition: transform 0.5s;
}
.poi-item:hover .poi-content {
    transform: translateY(0);
}
.poi-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
.poi-subtitle {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}
.poi-description {
    font-size: 0.875rem;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .poi-row:first-child,
    .poi-row:last-child {
        grid-template-columns: 1fr;
    }
    .poi-item-wide {
        grid-column: span 1;
    }
}



/* Estilos para el modal */
.modal-content {
    border: none;
    border-radius: 0.5rem;
}

.modal-header {
    border-bottom: none;
    z-index: 99;
}

.modal-footer {
    border-top: none;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.menu-item {
    text-align: center;
}

.menu-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 0.25rem;
}

.menu-item p {
    margin-top: 0.5rem;
    font-weight: bold;
}

/* Estilos responsivos */
@media (max-width: 991.98px) {
    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }

    .navbar-nav .dropdown-toggle::after {
        float: right;
        margin-top: 0.5em;
    }

    .navbar-nav .nav-item.dropdown {
        position: static;
    }

    .navbar-nav .dropdown-menu {
        display: none;
       
    }

    .navbar-nav .dropdown-menu.show {
        display: block;
    }
}

/*Link deshabilitado*/
a.disabled {
    pointer-events: none;
    cursor: default;
}

/*Estilos Tooltip*/
.services-grid {
    background-color: #f5f3f0;
    padding: 2rem;
    width: 100%;
    max-width: 300px;
}
.services-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.service-icon {
    position: relative;
    margin-bottom: 0.5rem;
}
.service-icon img {
    width: 30px;
    height: 25px;
    object-fit: contain;
}
.service-name {
    font-size: 11px;
    color: #666;
    margin-top: 4px;
}
.service-name.highlight {
    color: #B87D4B;
}
/* Tooltip styles */
.service-icon::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #018997;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
}
.service-icon::after {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #018997 transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.service-icon:hover::before,
.service-icon:hover::after,
.service-icon:focus::before,
.service-icon:focus::after {
    opacity: 1;
    visibility: visible;
}

.padd-15{
    padding-left: 15%;
    padding-right: 15%
}

/* Estilos actualizados para el modal de restaurante */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    z-index: 999;
}


.sticky-top1{position:-webkit-sticky;position:sticky;top:0;z-index:998!important}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border: 1px solid #888;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    overflow: hidden;
}

.modal-header {
    background-image: url('../items/images/assets/fondo.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

.modal-header h2 {
    margin: 0;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.close {
    color: white;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.menu-item {
    text-align: center;
}

.menu-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.menu-restaurant-h{
    margin-top: auto;
    margin-bottom: 15px;
    padding: 1%;
    
}


.menu-restaurant {
    text-align: center;
    vertical-align: middle;
    margin-top: 10px;
    font-size: 1.25em;
    font-weight: bold;
}


.menu-item img:hover {
    transform: scale(1.05);
}

.menu-item p {
    margin-top: 10px;
    font-weight: bold;
}

.modal-footer {
    background-color: #f8f9fa;
    padding: 50px;
    text-align: center;
    border-top: 1px solid #dee2e6;
}


/* LRO ESTILOS PARA PAGINA EVENTOS*/
/* Contenedor de los eventos */
.event-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 30px;
}

/* Tarjetas de los eventos */
.event-card {
    background: #fff;
    border-radius:0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.818);
    width: 70%; /* Hacer que las tarjetas sean horizontales */
    margin: 15px;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: scale(1.05);
}

/* Imagen del evento */
.event-card img {
    width: 40%;
    height: auto;
    object-fit: cover;
}

/* Contenido de la tarjeta */
.event-card-content {
    padding: 20px;
    width: 60%; /* Ajustamos el contenido al lado de la imagen */
}

/* Título de la tarjeta */
.event-card h4 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #333;
}

/* Descripción de la tarjeta */
.event-card p {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

/* Botón "Saber más" */
.btn-saber-mas {
    background-color: #00632b;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-saber-mas:hover {
    background-color: #0056b3;
}

/* Estilos para el modal */
.modal-content {
    padding: 20px;
    border-radius: 0px;
}

.modal-header {
    border-bottom: 1px solid #ddd;
    border-radius: 0px;
}

.modal-footer {
    border-top: 1px solid #ddd;
}

.btn-cerrar{
    border-radius: 0px;
}

/* Remover el fondo oscuro (backdrop) */
.modal-backdrop {
    display: none;
}

/*Estilos formulario de contacto*/
.contact-section-con {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 0px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.contact-info-con {
    background: white;
    padding: 40px;
    border-radius: 0px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.contact-heading {
    color: var(--highlight-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contact-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contact-info-item {
    margin-bottom: 2rem;
}

.contact-info-item i {
    color: var(--highlight-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.contact-info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-info-item a {
    color: var(--highlight-color);
    text-decoration: none;
}

.form-control-con {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 0px;
    margin-bottom: 1rem;
    width: 100%;   
}

.form-control-con:focus {
    border-color: var(--highlight-color);
    box-shadow: none;
}

.btn-submit {
    background-color: var(--highlight-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: block;
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #a06940;
    color: white;
}

.contact-banner {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../items/images/hoteles/h3-calakmul.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.contact-banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.contact-banner p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.textoJustificado{
    text-align: justify !important;
}

.tel{
    background-color:white ;
    color:  #a06940;
}

.fas{
    color: #a06940;
}

/* Estilos específicos para el slider de promociones */




@keyframes slide {
	0% { transform: translateX(0); }
	10% { transform: translateX(0); }

	15% { transform: translateX(-100%); }
	30% { transform: translateX(-100%); }

	35% { transform: translateX(-200%); }
	50% { transform: translateX(-200%); }

	55% { transform: translateX(-300%); }
	70% { transform: translateX(-300%); }

	75% { transform: translateX(-400%); }
	90% { transform: translateX(-400%); }

	95% { transform: translateX(-500%); }
	100% { transform: translateX(-500%); }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	font-family: sans-serif;
}




.wrapper {
	max-width: 1000px;
	margin: 0 auto;
}

.slider {
	position: relative;
    width: 100%;
}


.slides {
	position: relative;
	display: flex;
	overflow: hidden;
    width: 100%;
}

.slide {
    
	/*width: 100vw;*/
    width: 100%;
	flex-shrink: 0;
	animation-name: slide;
	animation-duration: 20s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

.slides:hover .slide {
	animation-play-state: paused;
}

.slide img {
	width: 100%;
	vertical-align: top;
    object-fit: cover;
}

.slide a {
	width: 150%;
	display: inline-block;
	position: relative;
}


.slide:target {
	animation-name: none;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 50;
}

.slider-controler {
    position: absolute;
	/*position: absolute;*/
	left: 0;
	right: 0;
	bottom: -5;
	text-align: center;
	padding: 1px;
	background-color: rgba(0,0,0,0.15);
	z-index: 100;
}

.slider-controler li {
	margin: 0 0.1rem;
	display: inline-block;
	vertical-align: top;
}

.slider-controler a {
    
	display: inline-block;
    vertical-align: top;
	text-decoration: none;
	color: white;
	font-size: 1.5rem;
}

@media only screen and (min-width: 1200px) {
	.slide {
		width: 100%;
	}

	.caption {
		font-size: 96px;
		bottom: 96px;
		right: 50px;
	}
}





.promocion-item {
    text-align: center;
    padding: 10px;
    margin-top: 2px;
    margin-bottom: auto;
}
.btn-reservar {
    display: inline-block;
    padding: 10px 20px;
    background-color: #a06940;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

span {
    margin-right: 10px; /
  }
  
  a {
    margin-left: 10px;
  }
  

  
