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

}


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 */
.header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 15px 0;
}
.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: 600;
    padding: 8px 20px;
    border-radius: 5px;
    text-transform: uppercase;
}
.header .btn-contact:hover {
    background-color: #E55B00;
}
.header .page-links a {
    color: #333333;
    font-family: 'Montserrat', 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 {
    font-size: 3.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.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: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}
.btn-primary:hover {
    background-color: #E55B00;
    border-color: #E55B00;
}
/* 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;
}
.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: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: #333333;
}
.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-bottom: 1rem;
}
.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;
}
.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 mviles */
@media (max-width: 767px) {
    .traditional-tours-section .carousel-inner .row > div {
        flex: 0 0 100%; /* Cada tarjeta ocupar el 100% en pantallas extra pequeas */
        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;
}
.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;
}
.news-card img {
    height: 150px;
    object-fit: cover;
}
/* 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-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 versin de impresin */
@media print {
    .navbar, .btn-contact {
        display: none; /* Oculta el men y el botn de contacto */
    }
    body {
        font-size: 12pt; /* Aumenta el tamao 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; /* Estndar 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, podras hacer esto para que se muestre ... */
  .footer {
    display: block; /* Muestra el footer */
  }
  
}    


