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 */

}

#main-content {
    display: block; /* Asegura que se comporte como un contenedor slido */
    width: 100%;
    overflow: hidden; /* Evita scrolls horizontales accidentales que bajan puntos en UX */
    min-height: 80vh; /* Ayuda a que la pgina 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 mviles y tamao tctil */
.logo {
    text-align: center;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}
.logo a {
    display: inline-block;
    min-width: 150px; /* Asegura el rea tctil mnima */
    min-height: 60px;
}
/* Evita que el logo se vea gigante en mviles 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: #2A7D2E;
    border-color: #2A7D2E;
    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 pequeo 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 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;
    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: #1a521d;
    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 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 */
  }
  
}    


.flag-icon {
    width: 24px;       /* Tamao del ancho */
    height: auto;      /* Mantiene la proporcin */
    border-radius: 2px; /* Bordes suavemente redondeados */
    transition: transform 0.2s ease;
    vertical-align: middle;
}

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

/* Ajuste para que en mviles 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 ms grande */
.btn-link, .social-icon {
    padding: 12px 20px; /* Mnimo 48px de alto/ancho total es lo ideal para Google */
    display: inline-block;
    margin: 5px; /* Separa los botones entre s */
}


/* Estilo general del Acorden */
.itinerary-accordion .accordion-item {
    border-radius: 8px !important;
    overflow: hidden;
}

.itinerary-accordion .accordion-button {
    background-color: #f8f9fa;
    color: #333;
    font-weight: 700;
    border: none;
    box-shadow: none;
    font-family: 'Montserrat', sans-serif;
}

/* Cuando el acorden est abierto */
.itinerary-accordion .accordion-button:not(.collapsed) {
    background-color: #27ae60; /* El verde de Salkantay Trek */
    color: white;
}

.itinerary-accordion .accordion-button:not(.collapsed) .day-label {
    background-color: white;
    color: #27ae60;
}

/* La etiqueta del da (Day 1, Day 2...) */
.day-label {
    background-color: #27ae60;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.itinerary-title {
    font-size: 1.1rem;
}

/* Icono de la flecha */
.itinerary-accordion .accordion-button::after {
    filter: grayscale(1);
}

.itinerary-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.itinerary-details i {
    margin-right: 5px;
}

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

.accordion-button:not(.collapsed) {
    background-color: #27ae60 !important; /* Verde Salkantay */
    color: white !important;
}

/* Cambiar el color de la flecha a blanco cuando est abierto */
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-item {
    border-radius: 10px !important;
    overflow: hidden;
}


.gyg-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* Una columna doble y dos simples */
    grid-template-rows: 200px 200px;    /* Dos filas de 200px cada una */
    gap: 8px; /* Espacio entre imgenes */
    overflow: hidden;
    height: 400px;
}

.gyg-gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Esto evita que las fotos se deformen */
    cursor: pointer;
    transition: filter 0.3s ease;
}

.gyg-gallery-grid img:hover {
    filter: brightness(0.8);
}

/* Distribucin de las imgenes */
.item-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3; /* Ocupa las dos filas de la izquierda */
}

/* Bordes redondeados especficos (GetYourGuide style) */
.rounded-start-4 { border-radius: 12px 0 0 12px; }
.rounded-tr-md { border-top-right-radius: 12px; }
.rounded-br-md { border-bottom-right-radius: 12px; }

/* Overlay de "Ver todas" en la ltima imagen */
.item-5 {
    position: relative;
}

.view-all-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #333;
    pointer-events: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Responsive para Mviles: En celulares solo se ve la principal */
@media (max-width: 768px) {
    .gyg-gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 300px;
        height: 300px;
    }
    .gallery-sub {
        display: none; /* Ocultamos las pequeas en mvil para que no se vea amontonado */
    }
    .rounded-start-4 { border-radius: 12px; }
}


/* Estilos para las flechas del modal */
.btn-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.btn-nav:hover { background: #27ae60; }
.prev { left: 20px; }
.next { right: 20px; }

#lightboxCanvas {
    max-height: 85vh;
    object-fit: contain;
}

/* Hacer que las imgenes de la galera parezcan clickeables */
.gallery-img {
    cursor: pointer;
    transition: transform 0.3s;
}
.gallery-img:hover {
    transform: scale(1.02);
}

.tour-quick-info {
    background-color: #fff;
}

.tour-quick-info h6 {
    font-size: 1rem;
    color: #2d333f;
    margin-top: 2px;
}

.tour-quick-info p {
    line-height: 1.4;
    color: #4a5358 !important;
}

.tour-quick-info i {
    width: 24px;
    text-align: center;
    color: #2d333f !important; /* Color gris oscuro profesional */
}

/* Espaciado responsivo */
@media (max-width: 768px) {
    .tour-quick-info .row > div {
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }
    .tour-quick-info .row > div:last-child {
        border-bottom: none;
    }
}


.highlights-list li {
    font-size: 1.05rem;
    color: #2d333f;
}

.highlights-list i {
    font-size: 0.9rem;
    padding-top: 4px;
}

.tour-full-description {
    font-size: 1rem;
    max-width: 900px; /* Mejora la legibilidad */
}

/* Animacin del botn leer ms */
#readMoreBtn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

#readMoreBtn:hover {
    text-decoration: underline !important;
}

.text-success {
    color: #00875a !important; /* El verde especfico de "Check" de GYG */
}


/* Nueva tarjeta de precio flotante */
.banner-price-card {
    position: absolute;
    bottom: 20px; /* Distancia desde abajo */
    right: 20px;  /* Distancia desde la derecha */
    background-color: rgba(0, 0, 0, 0.6); /* Fondo oscuro transparente */
    padding: 12px 30px;
    border-radius: 8px; /* Bordes ligeramente redondeados */
    color: #ffffff;
    font-family: sans-serif; /* O la fuente que uses en tu web */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Sombra suave para dar relieve */
    z-index: 10; /* Asegura que quede por encima de las capas de fondo */
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Alinea los textos a la derecha dentro del cuadro */
}

/* Texto "Precio" */
.banner-price-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* El nmero del precio (resaltado y ms grande) */
.banner-price-amount {
    font-size: 1.8rem; /* Tamao grande */
    font-weight: bold;
    color: #ffcc00; /* Color llamativo (puedes cambiarlo por el de tu marca) */
    margin: 2px 0;
}

/* Texto "/por persona" */
.banner-price-duration {
    font-size: 0.85rem;
    opacity: 0.8;
}

.kiara1 {
  color: #27ae60;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
}
