/********** Template CSS **********/
:root {
    --primary: #86B817;
    --secondary: #FE8800;
    --light: #F5F5F5;
    --dark: #14141F;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 245px;
    bottom: 45px;
    z-index: 99;
}

.text-primary {
  color: #f89343 !important;
  font-weight: 600;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  transition: .5s;
  text-transform: uppercase;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}

.btn-primary {
  color: #000;
  background-color: #b3281b;
  border-color: #c76a0a;
}

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: "Abel";
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: #fff !important;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 80px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 2px solid #4e5151;
    background-color: #4e5151;
    z-index: 999;
    border-top: 2px solid #4e5151;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #4e5151;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/* Intenta evitar que el botón del acordeón obtenga un focus visible que cause scroll */
.accordion-button:focus {
    box-shadow: none !important;
    outline: none !important;
}

 .entry-title {
    width: 100%;
    display: flex;
 }

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Capa oscura semitransparente */
    z-index: 1; /* Debe estar sobre la imagen, pero debajo del contenido */
}

.carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10; /* Debe estar sobre el overlay y la imagen */
    padding: 0; /* Asegura que la superposición cubra toda la altura */
}

.carousel-caption h1, .carousel-caption h2, .carousel-caption h3,   {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Sombra para mejor legibilidad */
}

/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(20, 20, 31, .2), rgba(20, 20, 31, .4)), url(../img/bg-hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: #025833;
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: #025833;
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: #000;
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Destination ***/
.destination img {
    transition: .5s;
}

.destination a:hover img {
    transform: scale(1.1);
}

.btn.btn-primary, .btn.btn-secondary {
  color: #f0c44e;
}
.btn-primary {
  color: #f0c44e;
  background-color: #025833;
  border-color: #025833;
    
}
.btn-primary:hover {
  color: #fff;
  background-color: #ef9007;
  border-color: #ef9007;
    
}

/*** Package ***/
.package-item {
  /* ox-shadow: 3px 3px 25px rgba(0, 0, 0, .08); */
  border: 1px solid #dedede;
  background-color: #fff;
  box-shadow: 2px 2px 4px #ddd;
  border-radius: 20px 20px 20px 20px;
}

.package-item img {
    transition: .5s;
    height: 250px;
  object-fit: cover;
  max-width: 100%;
  display: block;
}

.package-item:hover img {
    transform: scale(1.1);
}


/*** Booking ***/
.booking {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/booking.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 20px;
    border-bottom: 1px solid var(--primary);
}

.team-item .btn:hover {
    background: var(--primary);
    color: #FFFFFF;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
   /*  background:rgba(255, 255, 255, 1);  */   /* linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);*/
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
   /* background: rgba(255, 255, 255, 1); */ /* linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);*/
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #458e2b !important;
    border-color: #458e2b !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: #000;
    border-color: #000;
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #458E2B;
    font-weight: normal;
    border: 1px solid #458E2B;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #FD5C00;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

h3.tourH3, h4.tourH4 {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 800;
}
h6.tourh6 {
  font-size: 1rem;
  background-color: #f5f5f5;
  padding-left: 10px;
}
article h3 {
  background-color: #e6f9e1;
  padding-bottom: 15px;
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: left;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  color: #004ba1;
}
article.ul {
   
   list-style: none;
   margin-left: 0;
   padding-left: 0;
}
article ul li {
   margin-left: 1em;
}
article ul li::before {
  /*content: "\2022"; */
  color: green;
  font-weight: bold;
  display: inline-block; 
  width: 1em;
  margin-left: -1em;
}


.intro-column .ul-title000::after {
  content: "";
  display: block;
  width: 180px;
  height: 10px;
  border-bottom: 2px solid #313131;
  margin: 0 auto;
}

h2.ul-title  {
  color: #f7943c;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 20px;
  font-size: 1.625rem;
  font-weight: bolder;
}

/* Alignments ----------- */
article img.alignleft { 
    /*rtl:ignore*/
    float: left;

    /*rtl:ignore*/
    margin-right: 1em;
    margin-bottom: 1em;
}

article img.alignright {
    /*rtl:ignore*/
    float: right;

    /*rtl:ignore*/
    margin-left: 1em;
    margin-bottom: 1em;
}

article img.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
}

.h1, h1, .h2, h2 {
    font-family: 'Cinzel',serif;
    letter-spacing: -1px;
    font-weight: 600;
    font-size: 35px;
}
.h3, h3 {
font-size: 1.5rem;
line-height: 1.2em;
font-weight: 700;
font-family: 'Dosis', 'Nunito', sans-serif;
letter-spacing: 0;
}


/* Subtítulos y botones */
.h4, h4, .h5, h5, .h6, h6 {
  font-family: 'Dosis', sans-serif;
}


/* Párrafos y textos largos */
body, p, li {
  font-family: 'Abel', sans-serif;
}

/* ===========================
   🧩 Estilo tipográfico general
   =========================== */

/* Fuente general del sitio */
body {
  font-family: 'Abel', sans-serif;
  font-size: 16px;           /* Tamaño base (ajústalo según tu diseño) */
  line-height: 1.6;          /* Altura de línea agradable para lectura */
  color: #222;               /* Color de texto principal */
  background-color: #fff;    /* Fondo general */
  margin: 0;
  padding: 0;
}

/* Aplicar la misma fuente a párrafos, listas y otros textos */
p, li, a, span, div {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

/* Titulares */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Abel', sans-serif;
  font-weight: 600;
  color: #111;
  line-height: 1.3;
  margin-bottom: 0.5em;
}

/* Asegurar que los enlaces tengan buena legibilidad */
a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}




/* Botones y llamadas a la acción */
.btn, .cta {
  font-family: 'Heebo', sans-serif;
  font-weight: 600;
}

/* Opcional: Elementos decorativos o destacados */
.blockquote, .highlight {
  font-family: 'Dosis', sans-serif;
}

/************** faqs *****/
@import url('https://fonts.googleapis.com/css?family=Tajawal');
@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');


article#accordion-style-1 h1, article#accordion-style-1 h2, article#accordion-style-1 h3,
article#accordion-style-1 a{
    color:#007b5e;
}
article#accordion-style-1 .btn-link {
    font-weight: 400;
    color: #007b5e;
    background-color: transparent;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: bold;
    padding-left: 25px;
}

article#accordion-style-1 .card-body {
    border-top: 2px solid #007b5e;
}

article#accordion-style-1 .card-header .btn.collapsed .fa.main{
    display:none;
}

article#accordion-style-1 .card-header .btn .fa.main{
    background: #007b5e;
    padding: 13px 11px;
    color: #ffffff;
    width: 35px;
    height: 41px;
    position: absolute;
    left: -1px;
    top: 10px;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    display:block;
}


#fijocol1 {
    position: -webkit-sticky; /* Safari */ 
    position: sticky;
    top: 93px;
    width: 100%;
    z-index: 1030;
    height: fit-content;
    }

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #022d3c;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.125);
  font-weight: 700;
  font-size: 1.2rem;
}
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #022d3c;
  text-align: left;
  background-color: #ecf4e9;
  border: 0;
  border-radius: 0;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;
  font-weight: 600;
}    


.bg-miprecio {
  background-color: rgba(0,0,0,0.5);
}
.bg-celeste {
  background-color: #d1d2d3 !important
}

.antesicon::before { 
  display: inline-block;
  font-style: normal;
  font-weight: 600 !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  padding: 7px 7px;
  color: #004ba1;

 }

 
 ul {
    list-style-type: disc; /* Cambia el tipo de viñeta */
    margin-left: 20px; /* Ajusta el margen a la izquierda */
}

ul li {
    font-size: 16px; /* Cambia el tamaño de la fuente */
    color: #333; /* Cambia el color del texto */
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: block !important;
        flex-basis: auto;
    }
}

.stars i {
    color: #f89343;
}





.parallax-hero {
  position: relative;
  background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/booking.jpg);/* Cambia por tu imagen */
  background-attachment: fixed; /* Efecto parallax */
  background-size: cover;
  background-position: center;
  height: 100vh; /* Ocupa toda la pantalla */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 0 20px;
}

/* Oscurece la imagen para que el texto resalte */
.parallax-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Contenido encima */
.hero-content {
  position: relative;
  z-index: 2;
}

/* Estilos de texto */
.hero-content h1 {
  font-family: 'Cinzel', serif;
  color: #ef9100;
  -webkit-text-stroke: 1.5px #ffffff;
  text-stroke: 1.5px #ffffff;
  font-weight: 800;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
  font-size: 3rem;
}

.hero-content p {
  font-family: 'Abel', sans-serif;
  font-size: 1.2rem;
  margin-top: 15px;
  margin-bottom: 25px;
}

/* Botón */
.hero-content .btn {
  font-family: 'Heebo', sans-serif;
  font-weight: 600;
  background-color: #ef9100;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  color: white;
  transition: background 0.3s ease;
}

.hero-content .btn:hover {
  background-color: #004ba1;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}


/*map */
#map {
  height: 400px;
  width: 100%;
  border: 3px solid #004ba1;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.leaflet-popup-content-wrapper {
  border-radius: 10px;
}

.leaflet-popup-content {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #333;
}
@media (max-width: 576px) {
  #map {
    height: 300px;
  }
}
/* Estilo personalizado para los popups */
.leaflet-popup-content {
  background-color: #ffffff; /* Fondo blanco */
  color: #004ba1; /* Texto color azul */
  font-size: 14px;
  padding: 10px;
}

.leaflet-popup-tip {
  background-color: #ffffff; /* Color del triángulo que apunta hacia el marcador */
}

/* VIC 01 */
     body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
            background-color: #f8f9fa;
        }

        .container-custom { max-width: 100%; }
        .header-title { color: #343a40; font-weight: 700; font-size: 2.5rem; text-align: center; }
        .header-subtitle { color: #28a745; font-weight: 600; font-size: 1.8rem; text-align: center; }
        .header-separator { width: 80px; height: 4px; background-color: #28a745; margin: 0.5rem auto 2rem auto; border-radius: 2px; }

        .header-title h2 {
              color: #343a40; 
              font-weight: 700;
              font-size: 2.5rem;
              text-align: center;
        }
        .header-subtitle h3 {
              color: #28a745;
              font-weight: 600;
              font-size: 1.8rem;
              text-align: center;
          }
        /* --- Tarjeta Contenedora General --- */
        .card-custom {
            border: 1px solid #dee2e6;
            border-radius: 0.5rem;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
            background-color: #fff;
            margin-bottom: 2rem;
        }
        .card-right-container {
            padding: 1.5rem;
        }
        
        /* Contenedor del Resumen de Precio (con borde y radius) */
        .card-right {
            border: 1px solid #dee2e6;
            border-radius: 0.5rem;
            padding: 1rem;
            position: relative;
            box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
            padding-top: 1rem; /* Padding normal ya que las insignias no sobresalen */
            padding-bottom: 0.5rem;
        }

        /* --- Contenedor de las Insignias (Nuevo para alinear internamente) --- */
        .badge-container {
            position: relative;
            display: flex;
            justify-content: space-between;
            margin: -1rem -1rem 0.5rem -1rem; /* Margen negativo para pegarlo al borde superior */
            border-top-left-radius: 0.5rem;
            border-top-right-radius: 0.5rem;
            overflow: hidden; /* Para contener los elementos superpuestos */
        }

        /* --- 1. Insignia Best Seller (Arriba, Izquierda, Interno) --- */
        .best-seller-badge {
            background-color: #dc3545; /* Rojo */
            color: #fff;
            padding: 0.3rem 1.8rem;
            font-size: 0.8rem;
            font-weight: 700;
            border-top-left-radius: 0.5rem;
            /* La inclinación se aplica solo a este elemento, sin salirse del borde de .card-right */
            transform: skewX(-20deg); 
            padding-left: 2rem;
            position: relative;
            z-index: 10;
        }
        .best-seller-badge span {
             /* Corregir la inclinación del texto */
            display: inline-block;
            transform: skewX(20deg); 
        }

        /* --- 2. Pestaña Tour Price (Arriba, Derecha, Interno) --- */
        .tour-price-tab {
            background-color: #f7f7f7; /* Fondo ligeramente gris */
            color: #6c757d; /* Texto gris */
            border-top: 1px solid #dee2e6;
            border-right: 1px solid #dee2e6;
            padding: 0.3rem 1.2rem;
            font-size: 0.9rem;
            font-weight: 700;
            border-top-right-radius: 0.5rem;
            z-index: 5;
            position: relative;
            right: -80%;
            
            /* Ajuste para que se vea como una pestaña que baja desde la esquina */
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            transform: translateY(-1px); /* Pegar al borde superior */
        }
        
        /* Ajustar título para que quede debajo de las insignias */
        .card-right h5 {
            margin-top: 1rem;
            font-weight: 700;
            color: #343a40;
            margin-bottom: 0.2rem;
            font-size: 1.3rem;
            text-align: center;
        }
        
        /* --- Área de Precios con Marco, Sombra y Línea Divisoria Central --- */
        .price-container {
            border: 1px solid #e9ecef;
            border-radius: 0.5rem;
            padding: 1rem 0;
            margin: 1rem 0 1.5rem 0;
            box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.05);
            background-color: #fff;
            display: flex;
            justify-content: space-around;
            align-items: center;
            position: relative;
        }
        /* Línea Divisoria Central */
        .price-container::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 10%;
            bottom: 10%;
            width: 1px;
            background-color: #dee2e6;
            transform: translateX(-50%);
        }
        .price-item { text-align: center; flex: 1; padding: 0 0.5rem; }
        .price-item small:first-child { color: #6c757d; font-size: 1rem; display: block; line-height: 1.2; margin-bottom: 0.4rem; }
        .price-item strong { font-size: 2.2rem; color: #ff7f00; display: inline-block; margin: 0 0.2rem; line-height: 1; }
        .price-item span { font-size: 0.75rem; color: #6c757d; font-weight: 500;} /* Moneda USD/EUR */
        .price-item small:last-child { color: #6c757d; font-size: 0.75rem; display: block; line-height: 1.2; margin-top: 0.2rem; }
        .price-item sup { font-size: 60%; top: -0.8em; margin-right: -0.2rem; }

        /* --- Meta Info y Botones (Mismos estilos anteriores) --- */
        .meta-info {
            display: flex;
            justify-content: space-around;
            align-items: flex-start;
            padding: 1rem 0;
            border-top: 1px solid #e9ecef;
            margin-bottom: 0.5rem;
        }
        .meta-item { text-align: center; flex: 1; padding: 0 0.5rem; }
        .meta-item i { font-size: 1.8rem; color: #6c757d; margin-bottom: 0.5rem; }
        .meta-item p { font-size: 0.9rem; color: #495057; font-weight: 500; line-height: 1.2;}
        .meta-item strong { display: block; font-weight: 700; color: #343a40;}
        
        .btn-info-custom {
            background-color: #ff7f00; color: #fff; border: none; padding: 0.8rem 1.5rem; border-radius: 0.3rem; font-size: 1.1rem; font-weight: 600; width: 80%; display: flex; justify-content: center; align-items: center; text-decoration: none; margin-top: 1.5rem; transition: background-color 0.3s ease;
        }
        .btn-info-custom i { margin-right: 0.8rem; font-size: 1.2rem; }
        .btn-custom { background-color: #ff7f00; color: #fff; border: none; padding: 0.8rem 1.5rem; border-radius: 0.3rem; font-size: 1.1rem; font-weight: 600; width: 100%; margin-top: 0.5rem; }
        .btn-outline-custom { background-color: #ff7f00; color: #fff; border: none; padding: 0.8rem 1.5rem; border-radius: 0.3rem; font-size: 1.1rem; font-weight: 600; width: 100%; margin-top: 0.5rem; }

        /* --- Ajustes Responsivos --- */
        @media (max-width: 991.98px) {
            .card-right-container { padding: 0 1.5rem; margin-top: 2rem; }
            .card-right { padding-top: 1rem; }
            .badge-container {
                /* Vuelven a la posición normal en móvil */
                justify-content: space-between;
                margin: 0;
                padding-bottom: 1rem;
                border-bottom: 1px solid #dee2e6;
            }
            .best-seller-badge {
                transform: none;
                padding: 0.5rem 1rem;
                border-radius: 0.3rem;
                padding-left: 1rem;
            }
            .best-seller-badge span { transform: none; }
            .tour-price-tab {
                transform: none;
                padding: 0.5rem 1rem;
                border-radius: 0.3rem;
                border: 1px solid #dee2e6;
            }
            .card-right h5 { margin-top: 1rem; }
            .price-container::after { display: none; }
            .price-container { flex-direction: column; gap: 1rem; }
            .price-item { width: 100%; }
        }
        @media (max-width: 767.98px) {
             .btn-info-custom { width: 100%; }
             .badge-container { flex-direction: column; gap: 1rem; }
        }

/*** VIC 02 **/
   
        .container-custom {
            max-width: 100%;
            padding: 20px;
        }

        /* --- Estilos de la Columna Principal y Lateral --- */
        .main-content {
            padding-right: 2rem;
        }
        .sidebar-wrapper {
            padding: 0; /* Aseguramos que el contenido lateral use todo el ancho de su columna */
        }
        
        /* --- Columna Lateral (Important Facts) --- */
        .sidebar-card {
            background-color: #fff;
            border: 1px solid #dee2e6;
            border-radius: 0.5rem;
            overflow: hidden; /* Para que el encabezado verde no sobresalga */
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
        }
        .sidebar-header {
            background-color: #28a745; /* Verde fuerte */
            color: #fff;
            padding: 1.5rem 1rem;
            text-align: center;
        }
        .sidebar-header h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }
        .sidebar-header p {
            font-size: 1.5rem;
            font-weight: 800;
            margin: 0;
            line-height: 1.2;
            text-transform: uppercase;
        }
        .sidebar-header .highlight {
            color: #ffc107; /* Amarillo para resaltar */
        }

        .sidebar-body {
            padding: 1.5rem;
            text-align: center;
        }
        .sidebar-body p {
            font-size: 0.9rem;
            color: #495057;
            margin-bottom: 1.5rem;
        }

        /* --- Bloque de Precio --- */
        .price-box {
            border: 1px solid #dee2e6;
            border-radius: 0.5rem;
            padding: 1rem;
            margin-bottom: 1.5rem;
        }
        .price-main {
            display: flex;
            justify-content: center;
            align-items: baseline;
            margin-bottom: 0.5rem;
            color: #28a745;
        }
        .price-main .price-from {
            font-size: 0.9rem;
            color: #6c757d;
            margin-right: 0.5rem;
        }
        .price-main .price-value {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1;
        }
        .price-main .price-currency {
            font-size: 1rem;
            font-weight: 500;
            color: #495057;
        }
        .price-main .price-per {
            font-size: 0.8rem;
            color: #6c757d;
            display: block;
            margin-top: 0.2rem;
        }

        /* --- Tabla de Precios Detallada --- */
        .price-table {
            display: flex;
            justify-content: space-around;
            text-align: left;
            margin-top: 1rem;
            font-size: 0.85rem;
        }
        .price-col {
            padding: 0 0.5rem;
            flex: 1;
        }
        .price-col strong {
            display: block;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #343a40;
        }
        .price-row {
            margin-bottom: 0.3rem;
            color: #495057;
            line-height: 1.3;
        }
        .price-row span {
            display: block;
        }
        .price-currency-unit {
            font-weight: 600;
            color: #28a745;
        }
        
        /* --- Estilos de Botones --- */
        .btn-black-custom {
            background-color: #000;
            color: #fff;
            padding: 0.8rem 1.5rem;
            border-radius: 0.3rem;
            font-size: 1rem;
            font-weight: 600;
            width: 100%;
            margin-bottom: 0.5rem;
            transition: background-color 0.3s ease;
        }
        .btn-black-custom:hover {
            background-color: #343a40;
            color: #fff;
        }
        
        /* --- Nota de Descuento --- */
        .discount-note {
            font-size: 0.8rem;
            color: #495057;
            padding: 1rem;
            border-top: 1px solid #dee2e6;
            text-align: center;
            background-color: #f8f9fa;
        }

        /* --- Contenido Principal (Izquierda) --- */
        .included-header {
            color: #dc3545; /* Rojo */
            font-weight: 700;
            margin-bottom: 1rem;
        }
        .included-icons {
            display: flex;
            justify-content: flex-start;
            gap: 1.5rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        .included-item {
            text-align: center;
            max-width: 100px;
        }
        .included-item img {
            width: 70px; /* Tamaño de las imágenes/iconos */
            height: 70px;
            object-fit: cover;
            border-radius: 0.3rem;
            box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.1);
        }
        .included-item p {
            font-size: 0.9rem;
            font-weight: 500;
            color: #495057;
            margin-top: 0.5rem;
        }

        /* --- Estilos de Texto del Tour --- */
        .tour-content h3 {
            font-weight: 700;
            color: #343a40;
            margin-top: 2rem;
            margin-bottom: 1rem;
        }
        .tour-content h3.question {
            color: #ffc107; /* Amarillo para las preguntas */
        }
        .tour-content p {
            line-height: 1.6;
            color: #495057;
            margin-bottom: 1.5rem;
        }
        .tour-content a {
            color: #28a745;
            font-weight: 600;
            text-decoration: none;
        }
        .tour-content a:hover {
            text-decoration: underline;
        }

        /* --- Ajustes Responsivos --- */
        @media (max-width: 991.98px) {
            .main-content {
                padding-right: 0;
            }
            .sidebar-wrapper {
                margin-top: 2rem;
            }
            .included-icons {
                justify-content: space-around;
            }
        }
        @media (max-width: 575.98px) {
            .included-icons {
                gap: 1rem;
            }
            .price-table {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }
            .price-col {
                border-bottom: 1px solid #eee;
                padding-bottom: 0.5rem;
            }
            .price-col:last-child {
                border-bottom: none;
                padding-bottom: 0;
            }
        }
    


/* Asegura que los estilos de Bootstrap no sean sobrescritos por el tema */
/* Si usas la clase .table */
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529; /* Color de texto base */
    border-collapse: collapse; /* Colapsa los bordes para una apariencia limpia */
}

/* Estilo para los encabezados */
.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
    background-color: #f8f9fa; /* Color de fondo para los headers */
    font-weight: bold;
    text-align: left;
}

/* Estilo para las celdas (td y th) */
.table > :not(caption) > * > * {
    padding: 0.75rem 0.75rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

/* Bordes (si usas la clase table-bordered) */
.table-bordered {
    border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6;
}





/* Banner */
.category-banner {
    height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.category-banner .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}
.category-banner .content {
    position: relative;
    z-index: 2;
}

/* Card */
.tour-card {
    border-radius: 12px;
}

.tour-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.best-seller-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 95px;
}

.duration-box {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #2e7d32;
    color: #fff;
    padding: 6px 14px;
    font-size: 0.85rem;
    border-radius: 6px;
    font-weight: 600;
}

.tour-category {
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .tour-img { height: 200px; }
    .best-seller-badge { width: 80px; }
}
/* Imagen responsive del tour */
.tour-img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

/* Si deseas mantener altura fija en desktop pero responsive en mobile */
@media (min-width: 768px) {
    .tour-img {
        height: 220px !important;
    }
}

@media (max-width: 767px) {
    .tour-img {
        height: auto !important;
        object-fit: cover;
    }
}

/* Para evitar que el contenedor de la imagen cree overflow */
.tour-card .position-relative {
    overflow: hidden;
}

.tour-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .tour-img {
        height: 180px;
    }
}

.best-seller-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 90px;
    z-index: 10;
}

.duration-box {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #2e7d32; /* verde */
    color: #fff;
    padding: 6px 14px;
    font-size: 0.85rem;
    border-radius: 6px;
    font-weight: 600;
    z-index: 10;
}

.bg-white {
    background-color: #f8f9fa !important;
}