/********** Template CSS **********/
/* Importar la fuente Nunito desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&display=swap');

/* Aplicar Nunito a todo el sitio web */
body, p, a, li, span, input, button, textarea {
    font-family: 'Nunito', sans-serif !important;
}

/* Aplicar Nunito a los títulos y encabezados */
h1, h2, h3, h4, h5, h6, .site-title {
    font-family: 'Nunito', sans-serif !important;
    font-weight: 700; /* Hace que los títulos resalten */
}

: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: 'Nunito', sans-serif !important;
  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: 'Nunito', sans-serif !important;
    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: 165px;
    }
}

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

    .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;
    }
}


/*** 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: 'Nunito', sans-serif !important;
    letter-spacing: -1px;
    font-weight: 600;
    font-size: 35px;
}
.h3, h3 {
font-size: 1.5rem;
line-height: 1.2em;
font-weight: 700;
font-family: 'Nunito', sans-serif !important;
letter-spacing: 0;
}


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


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

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

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

/************** 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: 'Nunito', sans-serif !important;
  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: 'Nunito', sans-serif !important;
  font-size: 1.2rem;
  margin-top: 15px;
  margin-bottom: 25px;
}

/* Botón */
.hero-content .btn {
  font-family: 'Nunito', sans-serif !important;
  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;
  }
}



/* Estilos Base para la Tarjeta */
.sw-card {
    display: flex;
    flex-direction: row;
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0; /* Borde gris suave por defecto */
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-family: 'Nunito', sans-serif;
}

/* EFECTO HOVER: Borde rojo/anaranjado y sombra resaltada */
.sw-card:hover {
    border-color: #ff5500; /* Color rojo/naranja al pasar el mouse */
    box-shadow: 0 8px 20px rgba(255, 85, 0, 0.15);
    transform: translateY(-2px);
}

/* Columna de la Imagen */
.sw-card-img {
    width: 38%;
    min-width: 38%;
    position: relative;
}

.sw-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Columna del Contenido */
.sw-card-content {
    width: 62%;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.sw-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 8px 0;
}

.sw-card-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

/* Botón Normal */
.sw-card-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: #fff1eb; /* Fondo suave por defecto */
    color: #ff5500;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Cambios en el Botón al hacer Hover en la tarjeta */
.sw-card:hover .sw-card-btn {
    background-color: #ff5500; /* Fondo naranja/rojo al pasar el mouse */
    color: #ffffff;
}

/* Adaptación para Pantallas Móviles */
@media (max-width: 600px) {
    .sw-card {
        flex-direction: column;
    }
    .sw-card-img, 
    .sw-card-content {
        width: 100%;
    }
    .sw-card-img {
        height: 180px;
    }
    .sw-card-content {
        padding: 18px;
    }
}

/* parte 2 css */
/* --- SECCIÓN DE NAVEGACIÓN / REJILLA DE TARJETAS VERTICALES --- */

/* Sección Principal y Encabezado */
.grid-info-section {
    width: 100%;
    margin: 40px 0;
    font-family: 'Nunito', sans-serif;
}

.grid-info-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.grid-info-line {
    height: 3px;
    width: 60px;
    background-color: #ff5500; /* Naranja/Rojo corporativo */
    display: inline-block;
}

.grid-info-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    text-align: center;
}

/* Contenedor Grid (3 columnas por fila) */
.grid-info-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Tarjeta Vertical */
.grid-info-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}

/* Imagen de la Tarjeta */
.grid-info-card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.grid-info-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Cuerpo de la Tarjeta */
.grid-info-card-body {
    padding: 22px 18px 25px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
}

.grid-info-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.grid-info-card-desc {
    font-size: 0.88rem;
    color: #555555;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

/* Botón Verde (según modelo enviado) */
.grid-info-card-btn {
    display: inline-block;
    background-color: #008a20; /* Verde institucional del modelo */
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 22px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.grid-info-card-btn:hover {
    background-color: #006818;
    color: #ffffff;
}

/* --- ADAPTACIÓN RESPONSIVE --- */

/* Tablets (pantallas de menos de 992px -> 2 Columnas) */
@media (max-width: 992px) {
    .grid-info-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Celulares (pantallas de menos de 600px -> 1 Columna) */
@media (max-width: 600px) {
    .grid-info-container {
        grid-template-columns: 1fr;
    }
    
    .grid-info-title {
        font-size: 1.25rem;
    }
    
    .grid-info-line {
        width: 35px;
    }
}
