body {
    font-family: 'Open Sans', sans-serif;
    color: #333333;
    line-height: 1.6; /* Mejora la legibilidad del texto */
    margin: 0; /* Elimina los m«¡rgenes predeterminados del navegador */
    padding: 0; /* Elimina el padding predeterminado del navegador */
    overflow-x: hidden; /* Evita el desbordamiento horizontal */

}

#main-content {
    display: block; /* Asegura que se comporte como un contenedor s«Ñlido */
    width: 100%;
    overflow: hidden; /* Evita scrolls horizontales accidentales que bajan puntos en UX */
    min-height: 80vh; /* Ayuda a que la p«¡gina no "salte" mientras carga el contenido */
}

/* Opcional: Si quieres que el foco de accesibilidad no se vea feo al saltar con teclado */
#main-content:focus {
    outline: none;
}
/* Oculta el contenido visualmente pero lo mantiene para lectores de pantalla */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Si el usuario usa el teclado (Tab), el enlace se muestra por seguridad */
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    padding: 10px;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background-color: #000;
    color: #fff;
    z-index: 9999;
}

img {
  max-width: 100%;
  display: block;
}
.items {
  display: flex;
  justify-content: space-between;
}

.bordetop01 {
    border-bottom: 1px solid #ff6200;
}
.miduracion {
    font-size: 1.3rem;font-weight: 700; color: #ff6200;
}
.misprecios {
    text-align: right; font-size: 1.5rem; color: #ff6200; font-weight: 800; font-family: arial;
}
.mipaxsok {
    font-size: 1rem;
    font-family: auto;
}
/* Header */
/* Centrado del logo en m«Ñviles y tama«Ðo t«¡ctil */
.logo {
    text-align: center;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}
.logo a {
    display: inline-block;
    min-width: 150px; /* Asegura el «¡rea t«¡ctil m«¿nima */
    min-height: 60px;
}
/* Evita que el logo se vea gigante en m«Ñviles si la columna es col-12 */
.logo img {
    max-width: 170px; 
    height: auto;
}

.header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 15px 0px 0px 0px;
}
.header .logo img {
    height: 90px;
    width: 170px;
}
.header .contact-info {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    color: #333333;
}
.header .contact-info i {
    color: #FF6200;
    margin-right: 8px;
}
.header .btn-contact {
    background-color: #FF6200;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 5px;
    text-transform: uppercase;
}
.header .btn-contact:hover {
    background-color: #E55B00;
}
.header .page-links a {
    color: #333333;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-right: 20px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
}
.header .page-links a:hover {
    color: #FF6200;
}
.header .social-icons a {
    color: #333333;
    font-size: 1.2rem;
    margin: 0 10px;
    transition: color 0.3s;
}
.header .social-icons a:hover {
    color: #FF6200;
}


/* Existing styles for the navbar */
.navbar {
    background-color: #2A7D2E;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .nav-link {
    color: #FFFFFF !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem; /* Base font size for larger screens */
    margin: 0 15px; /* Base margin for larger screens */
    text-transform: uppercase;
    transition: color 0.3s;
}

.navbar .nav-link:hover {
    color: #FF6200 !important;
}

/* --- Media Queries for Mobile Screens --- */
@media (max-width: 768px) {
    .navbar .nav-link {
        font-size: 0.8rem; 
        margin: 5px 0; /* Adjust margins for vertical stacking in the collapsed menu */
    }

    .navbar-collapse {
        background-color: #2A7D2E; /* Optional: Adds a solid background to the collapsed menu */
        padding: 10px;
    }

    .navbar-nav {
        width: 100%; /* Make the menu list take full width */
        text-align: center; /* Center the text for a better look */
    }
}



/* Hero Section (Carousel) */
.hero-section {
    position: relative;
    height: 100vh;
}
.hero-section .carousel {
    height: 100%;
}
.hero-section .carousel-item {
    position: relative;
    height: 100vh;
}
.hero-section .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: white;
}
.hero-content h1, .hero-content h2 {
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #f8a22f;
}
.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-family: 'Open Sans', sans-serif;
}
.btn-primary {
    background-color: #FF6200;
    border-color: #FF6200;
    padding: 0.75rem 2rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}
.btn-primary:hover {
    background-color: #E55B00;
    border-color: #E55B00;
    transform: translateY(-2px); /* Un peque«Ðo salto al pasar el mouse */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Top Seller Tours Section */
.tours-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}
.tours-section h2 {
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2a7d2e;
    text-transform: uppercase;
}
.tours-section p {
    font-size: 1.1rem;
    font-family: 'Open Sans', sans-serif;
    color: #555555;
    max-width: 800px;
    margin: 0 auto 2rem;
}
.tour-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.tour-card img {
    height: 350px;
    object-fit: cover;
}
.tour-card .card-body {
    background-color: #FFFFFF;
    border-radius: 10px;
    margin-top: -30px;
    margin-left: 0px;
    margin-right: 0px;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.tour-card .card-title {
    font-family: 'Playfair Display', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ff6200;
}
.tour-card .card-title i {
    color: #FF6200;
}
.tour-card .star-rating {
    color: #FFD700;
    font-size: 0.9rem;
}
.tour-card .card-text {
    font-size: 0.9rem;
    color: #555555;
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
    text-align: justify;
}
.tour-card .tour-details {
    font-size: 0.85rem;
    color: #666666;
}
.tour-card .tour-details i {
    color: #FF6200;
    margin-right: 8px;
}
.tour-card .btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}
/* Traditional Tours Section (Carousel) */
.traditional-tours-section {
    padding: 4rem 0;
    background-color: #FFFFFF;
}
.traditional-tours-section h2 {
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2a7d2e;
    text-transform: uppercase;
}
.traditional-tours-section p {
    font-size: 1.1rem;
    font-family: 'Open Sans', sans-serif;
    color: #555555;
    max-width: 800px;
    margin: 0 auto 2rem;
}
.traditional-tours-section .carousel-inner {
    padding: 0 15px;
}
.traditional-tours-section .carousel-item {
    transition: transform 0.5s ease;
}
.traditional-tours-section .carousel-control-prev,
.traditional-tours-section .carousel-control-next {
    width: 5%;
    /*background: rgba(0, 0, 0, 0.3); */
}
.traditional-tours-section .carousel-control-prev-icon,
.traditional-tours-section .carousel-control-next-icon {
    background-color: #FF6200;
    border-radius: 50%;
    padding: 20px;
}
/* Ajustes para el carrusel en m«Ñviles */
@media (max-width: 767px) {
    .traditional-tours-section .carousel-inner .row > div {
        flex: 0 0 100%; /* Cada tarjeta ocupar«¡ el 100% en pantallas extra peque«Ðas */
        max-width: 100%;
    }
}

/* Categories Section */
.categories-section {
    padding: 4rem 0;
    background-color: #FFFFFF;
}
.categories-section h2 {
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2a7d2e;
    text-transform: uppercase;
}
.category-card {
    text-align: center;
    transition: transform 0.3s;
}
.category-card:hover {
    transform: scale(1.05);
}
.category-card i {
    font-size: 3rem;
    color: #FF6200;
    margin-bottom: 1rem;
}
/* News Section */
.news-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}
.news-section h2 {
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2a7d2e;
    text-transform: uppercase;
}
.news-card img {
    height: 250px;
    object-fit: cover;
}
.titblogs {
    font-weight: 700;
    color: #2a7d2e;
    text-align: center;
}
/* Footer */
.footer {
    background-color: #333333;
    color: #FFFFFF;
    padding: 4rem 0;
    font-family: 'Open Sans', sans-serif;
}
.footer h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}
.footer a {
    color: #FF6200;
    text-decoration: none;
    font-size: 0.9rem;
}
.footer a:hover {
    color: #E55B00;
    text-decoration: underline;
}
.footer .social-icons a {
    font-size: 1.5rem;
    margin: 0 10px;
}
.footer .newsletter input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    width: 70%;
}
.footer .newsletter button {
    background-color: #FF6200;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 0 5px 5px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}
.footer .newsletter button:hover {
    background-color: #E55B00;
}






/* Parallax Section */
:root {
    --primary: #2c7744;
    --secondary: #f8a22f;
    --accent: #e74c3c;
    --light: #f8f9fa;
    --dark: #1a2e35;
}
        
        .parallax-section {
            position: relative;
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            isolation: isolate;
        }
        
        /*https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80    tamaÃ±o de la imagen*/
        .parallax-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url(../images/machu.webp);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: -2;
            transform: scale(1.1);
        }
        
        .parallax-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(26, 46, 53, 0.3) 0%, rgba(13, 26, 31, 0.5) 100%);
            z-index: -1;
        }
        
        .content-container {
            max-width: 800px;
            text-align: center;
            padding: 2rem;
            animation: fadeInUp 1.2s ease-out;
            font-family: 'Montserrat', sans-serif;
            color: white;
        }
        
        .subtitle {
            color: var(--secondary);
            font-size: 1.2rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }
        
        .main-title {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        
        .highlight {
            color: var(--secondary);
            position: relative;
        }
        
        .description {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            line-height: 1.7;
        }
        
        .btn-adventure {
            background: linear-gradient(45deg, var(--secondary), #ff9a3d);
            color: white;
            border: none;
            padding: 15px 40px;
            font-family: 'Open Sans', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            box-shadow: 0 10px 25px rgba(248, 162, 47, 0.4);
            position: relative;
            overflow: hidden;
        }
        
        .btn-adventure:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(248, 162, 47, 0.6);
        }
        
        .btn-adventure:after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .btn-adventure:hover:after {
            left: 100%;
        }
        
        .btn-adventure i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }
        
        .btn-adventure:hover i {
            transform: translateX(5px);
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }
        
        .scroll-indicator i {
            font-size: 2rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-20px) translateX(-50%);
            }
            60% {
                transform: translateY(-10px) translateX(-50%);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .main-title {
                font-size: 3.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .parallax-section {
                min-height: 500px;
            }
            
            .main-title {
                font-size: 2.8rem;
            }
            
            .description {
                font-size: 1.1rem;
            }
            
            .btn-adventure {
                padding: 12px 35px;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .main-title {
                font-size: 2.2rem;
            }
            
            .subtitle {
                font-size: 1rem;
            }
            
            .content-container {
                padding: 1rem;
            }
            
            .parallax-bg {
                background-attachment: scroll;
            }
        }
        




/* Reglas para la versi«Ñn de impresi«Ñn */
@media print {
    .navbar, .btn-contact {
        display: none; /* Oculta el men«â y el bot«Ñn de contacto */
    }
    body {
        font-size: 12pt; /* Aumenta el tama«Ðo de la fuente para que sea legible en papel */
        margin: 0;
        padding: 0;
        -webkit-print-color-adjust: exact; /* Para navegadores basados en WebKit (Chrome, Safari) */
       color-adjust: exact; /* Est«¡ndar para otros navegadores */
    }
    
    img {
        max-width: 100%;
        height: 400px;
    }
    
   /* ... si tienes esto, es lo que causa el problema ... */
  .footer, .header, .sidebar {
     /* <-- display: none; Elimina esto si quieres que aparezcan */
  }

  /* ... en cambio, podr«¿as hacer esto para que se muestre ... */
  .footer {
    display: block; /* Muestra el footer */
  }
  
}    


.flag-icon {
    width: 24px;       /* Tama«Ðo del ancho */
    height: auto;      /* Mantiene la proporci«Ñn */
    border-radius: 2px; /* Bordes suavemente redondeados */
    transition: transform 0.2s ease;
    vertical-align: middle;
}

.flag-icon:hover {
    transform: scale(1.2); /* Efecto de zoom peque«Ðo al pasar el mouse */
    filter: brightness(1.1);
}

/* Ajuste para que en m«Ñviles no queden pegadas al borde */
@media (max-width: 991px) {
    .navbar-nav.flex-row {
        margin-top: 15px;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 10px;
    }
}

.whatsapp-float {
  position: fixed;
  width: 70px;
  height: 65px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  text-decoration: none;
  color: #fff;
}
/* Dale espacio interno a los botones para que el «¡rea de clic sea m«¡s grande */
.btn-link, .social-icon {
    padding: 12px 20px; /* M«¿nimo 48px de alto/ancho total es lo ideal para Google */
    display: inline-block;
    margin: 5px; /* Separa los botones entre s«¿ */
}

/* Estilo para el ítem del acordeón activo */
.accordion-item {
    border: 1px solid #dee2e6; /* Borde gris suave para todos */
    margin-bottom: 10px;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa !important; /* Gris claro resaltado al estar activo */
    color: #ff6200 !important; /* Texto negro para contraste */
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
    font-weight: bold;
}

/* Color de la flecha cuando está activo */
.accordion-button:not(.collapsed)::after {
    filter: brightness(0); /* Hace la flecha negra */
}

/* Quitar el borde azul por defecto de Bootstrap al hacer click */
.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}






/* Contenedor principal del banner */
.tour-banner {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 8px; /* Opcional: bordes redondeados */
}

.banner-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px; /* Altura mínima para desktop */
}

/* Imagen de fondo */
.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7); /* Oscurece un poco la imagen para que el texto resalte */
    z-index: 1;
}

/* Estilo del H1 superpuesto */
.banner-title-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 15px;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.banner-title-overlay h1 {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* Rectángulo de precio abajo a la derecha */
.price-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 3;
    background: rgba(0, 0, 0, 0.5); /* Rectángulo transparente */
    backdrop-filter: blur(5px); /* Efecto de desenfoque moderno */
    color: white;
    padding: 10px 20px;
    border-left: 4px solid #ffc107; /* Línea de color para resaltar (amarillo tipo tour) */
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 4px;
}

.price-label {
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffc107; /* El precio resalta en otro color */
}

.price-unit {
    font-size: 0.7rem;
}

/* Media Query para móviles (Responsivo) */
@media (max-width: 768px) {
    .banner-container {
        min-height: 300px;
    }
    .banner-title-overlay h1 {
        font-size: 1.5rem;
    }
    .price-badge {
        bottom: 10px;
        right: 10px;
        padding: 5px 12px;
    }
    .price-amount {
        font-size: 1.4rem;
    }
}


/* Ajustes de la galería */
.gallery-item {
    cursor: pointer;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

/* Imagen principal ocupa toda la altura del bloque derecho combinado */
.main-img {
    height: 100%;
    min-height: 350px;
}

/* Badge de "Ver todo" */
.view-all-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: white;
    color: #333;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Bordes redondeados específicos (Simulando GetYourGuide) */
@media (min-width: 768px) {
    .rounded-start-3 { border-top-left-radius: 12px !important; border-bottom-left-radius: 12px !important; }
    .rounded-end-top-3 { border-top-right-radius: 12px !important; }
    .rounded-end-bottom-3 { border-bottom-right-radius: 12px !important; }
}

/* En móvil las imágenes se apilan, quitamos alturas fijas */
@media (max-width: 767px) {
    .main-img { min-height: 250px; }
    .gallery-item img { border-radius: 8px !important; }
}

/* Iconos de favoritos y compartir */
.text-muted span {
    cursor: pointer;
}
.text-muted span:hover {
    color: #0071eb;
}
/* Estilo de la tarjeta */
.card.shadow-sm {
    border-color: #e0e0e0;
    transition: box-shadow 0.3s ease;
}

/* Botón principal estilo GetYourGuide */
.btn-primary {
    background-color: #0071eb;
    border: none;
}
.btn-primary:hover {
    background-color: #005bb5;
}


/* 1. Elimina cualquier overflow en los padres */
html, body, main {
    overflow-x: hidden; /* Solo horizontal */
    overflow-y: visible !important; 
}

/* 2. Configura el Aside */
.booking-sidebar {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 20px; /* Ajusta según el tamaño de tu menú superior */
    
    /* ESTO ES LO QUE REALMENTE LO HACE FUNCIONAR EN BOOTSTRAP */
    align-self: flex-start; 
    
    z-index: 9999;
    transition: all 0.3s ease;
}

/* 3. Asegúrate de que el contenedor padre no limite la altura */
.row.align-items-start {
    display: flex;
}

/* En tablets y móviles el sticky NO debe funcionar (se vería mal) */
@media (max-width: 991px) {
    .booking-sidebar {
        position: relative;
        top: 0 !important;
        margin-top: 2rem;
    }
}




/* para informacion */
.info-section {
    max-width: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1a2b49;
    margin: 0 auto;
    padding: 0 15px;
    -webkit-font-smoothing: antialiased;
}
.info-title {
    font-weight: 700;
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
}
/* Ajuste fino para alinear el icono con el texto */
.icon-wrapper {
    width: 30px;
    display: inline-block;
    color: #1a2b49;
}
.subtitle-text {
    font-weight: 700;
    font-size: 1rem;
}
.content-text {
    color: #4a5568;
    font-size: 0.95rem;
}
.info-row {
    margin-bottom: 1.rem;
}

           
/* que llevay y servicios */
:root {
    --gyg-dark-blue: #1a2b49;
    --gyg-text-gray: #4a5568;
    --gyg-border: #dbdee2;
    --gyg-green: #00875a;
    --gyg-red: #d93025;
    --gyg-link: #0071eb;
}
.main-wrapper {
    max-width: 100%;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    color: var(--gyg-dark-blue);
    background-color: #ffffff;
    padding: 40px 15px;
    line-height: 1.5;
}

.content-row {
    padding: 32px 0;
    border-bottom: 1px solid var(--gyg-border);
}

.content-row:last-child {
    border-bottom: none;
}

.section-label {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.list-unstyled li {
    margin-bottom: 8px;
    position: relative;
}

.text-detail {
    color: var(--gyg-text-gray);
    font-size: 0.95rem;
}

.view-more {
    color: var(--gyg-link);
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    margin-top: 8px;
}

/* Estilos específicos para Qué incluye */
.include-icon {
    margin-right: 12px;
    font-size: 0.9rem;
}
.fa-check { color: var(--gyg-green); }
.fa-xmark { color: var(--gyg-red); }

.sub-section-title {
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1rem;
}

.margin-top-sub {
    margin-top: 24px;
}

@media (max-width: 767.98px) {
    .section-label {
        margin-bottom: 8px;
    }
}           

.view-more {
    color: var(--gyg-link);
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    margin-top: 8px;
    border: none;
    background: none;
    padding: 0;
}
.view-more:hover {
    text-decoration: underline;
}


/* iconos de resumen tour */
:root {
    --icon-color: #31658e; /* Azul grisáceo de la imagen */
    --text-dark: #000000;
    --border-color: #e0e0e0;
}
.icon-bar-container {
    font-family: 'Open Sans', sans-serif;
    background-color: #f8f9fa;
    background: rgb(248,249,250);
    border: 1px solid var(--border-color);
    border-radius: 0; /* Imagen muestra esquinas rectas */
}
.icon-box {
    padding: 20px 10px;
    text-align: center;
    border-right: 1px solid var(--border-color);
    transition: background 0.3s;
}

/* Quitar el borde al último elemento en escritorio */
@media (min-width: 768px) {
    .icon-box:last-child {
        border-right: none;
    }
}

/* En móviles, quitar bordes derechos y poner bordes inferiores */
@media (max-width: 767.98px) {
    .icon-box {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    .icon-box:last-child {
        border-bottom: none;
    }
}

.icon-box i {
    color: var(--icon-color);
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.icon-box .title2 {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: var(--text-dark);
    text-transform: capitalize;
}

.icon-box .subtitle2 {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 0;
}


/* tabs del contenido */
/* Variables personalizadas para evitar conflictos */
        :root {
            --stk-primary: #f37021;
            --stk-secondary: #2c5d7d;
            --stk-bg-light: #f8f9fa;
            --stk-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .stk-wrapper {
            border: 1px solid #dee2e6;
            border-radius: 12px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        /* --- Tabs Logic --- */
        .stk-nav-container {
            display: flex;
            flex-wrap: nowrap;
            background: var(--stk-secondary);
        }

        .stk-tab-btn {
            flex: 1;
            border: none;
            background: var(--stk-secondary);
            color: rgba(255,255,255,0.85);
            padding: 20px 10px;
            font-size: 0.90rem;
            font-weight: 600;
            text-transform: uppercase;
            transition: var(--stk-transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-right: 1px solid rgba(255,255,255,0.1);
        }

        .stk-tab-btn:last-child { border-right: none; }

        .stk-tab-btn:hover {
            background: #1e4158;
            color: #fff;
        }

        .stk-tab-btn.active {
            background: #fff !important;
            color: var(--stk-primary) !important;
            border-top: 4px solid var(--stk-primary);
            box-shadow: 0 -5px 15px rgba(0,0,0,0.05);
        }

        /* --- Responsive: Comportamiento Acordeón --- */
        @media (max-width: 991px) {
            .stk-nav-container {
                flex-direction: column; /* Estira cada tab a una fila completa */
                background: #eee;
            }

            .stk-tab-btn {
                width: 100%;
                justify-content: flex-start;
                padding: 18px 25px;
                border-right: none;
                border-bottom: 1px solid rgba(0,0,0,0.05);
                font-size: 1rem;
            }

            .stk-tab-btn.active {
                border-top: none;
                border-left: 6px solid var(--stk-primary);
                transform: translateX(5px);
            }

            .stk-tab-btn i {
                width: 25px;
                text-align: center;
            }
        }

        /* --- Content Styling --- */
        .stk-body {
            padding: 2.5rem;
            animation: fadeIn 0.5s ease;
        }

        .stk-orange-title {
            color: var(--stk-primary);
            font-weight: 800;
            margin: 1.8rem 0 0.8rem;
            font-size: 1.4rem;
        }

        .stk-list {
            list-style: none;
            padding-left: 0;
        }

        .stk-list li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 8px;
        }

        .stk-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            font-weight: bold;
            color: #333;
        }

        .stk-bold { font-weight: 700; color: #333; }