/* ==========================================
   CORRECCI0N PARA FONT-AWESOME REGULAR000 
   ========================================== */
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 400; /* Fijate que este peso es 400 (Regular) */
  font-display: swap; /* <--- ESTA ES LA LiNEA CLAVE */
  src: url('../webfonts/fa-regular-400.woff2') format('woff2'),
       url('../webfonts/fa-regular-400.ttf') format('truetype');
}


/* Corrección para Bootstrap Icons externa */
@font-face {
  font-family: 'bootstrap-icons';
  font-display: swap;
  src: url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/fonts/bootstrap-icons.woff2') format('woff2');
}
/* ==========================================
   CORRECCIÓN FONT-DISPLAY PARA FONTAWESOME 
   ========================================== */
@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/webfonts/fa-solid-900.woff2') format('woff2');
}

@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/webfonts/fa-brands-400.woff2') format('woff2');
}

/*** Spinner Start ***/

html, body {
  overflow-x: hidden;
}
/*** 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;
}


/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/

.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}


/*** Section Title Start ***/

.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/

.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}


/*** Topbar End ***/


/*** Navbar ***/

.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding: 35px 15px;
    color: var(--bs-white) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-white) !important;
}

.navbar-light .navbar-brand h1 {
    color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
}

.navbar-brand img {
    width: 224px !important;
    height: 90px !important;
    object-fit: contain; /* Esto evita que se deforme aunque cambies las medidas */
    background-color: transparent; /* Opcional, por si queda espacio vacío */
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 66px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}





/*** Spinner Start ***/

html, body {
  overflow-x: hidden;
}
/*** 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;
}


/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/

.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}


/*** Section Title Start ***/

.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/

.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}


/*** Topbar End ***/


/*** Navbar ***/

.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding: 35px 15px;
    color: var(--bs-white) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-white) !important;
}

.navbar-light .navbar-brand h1 {
    color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
}

.navbar-brand img {
    width: 224px !important;
    height: 90px !important;
    object-fit: contain; /* Esto evita que se deforme aunque cambies las medidas */
    background-color: transparent; /* Opcional, por si queda espacio vacío */
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 66px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    
    
    /* --- BARRA FIJA MÓVIL AL SCROLLEAR --- */
    .navbar-light, .sticky-top.navbar-light {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999 !important;
        background: var(--bs-white) !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); /* Sombra suave para que se diferencie del contenido */
    }

    /* Compensa el espacio que deja la barra flotante para que el carrusel no salte hacia arriba */
    body {
        padding-top: 75px; 
    }

    /* Evita que el menú se corte si es muy largo añadiendo un scroll interno */
    .navbar-collapse {
        max-height: 75vh;
        overflow-y: auto;
    }
    /* --- FIN BARRA FIJA MÓVIL --- */
    
    
    .navbar-light .navbar-brand h1 {
        color: var(--bs-primary);
    }
    
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
        margin-left: auto;
    }
    
    .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;
        color: var(--bs-dark) !important;
    }
    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active {
        color: var(--bs-primary) !important;
    }
    
/* Ajuste de la barra contenedora para dar espacio al logo */
    .navbar-light {
        padding-top: 4px !important;
        padding-bottom: 4px !important;
        padding-left: 5px !important; /* Pega la barra casi al borde izquierdo */
    }

    /* Enlace del logo a la izquierda sin márgenes sobrantes */
    .navbar-light .navbar-brand {
        margin: 0 !important;
        padding: 0 !important;
        display: flex;
        align-items: center;
    }

    /* Expansión máxima de la imagen del logo */
    .navbar-light .navbar-brand img {
        width: auto !important; /* Permite ajustar el ancho dinámicamente */
        height: 65px !important; /* Fuerza la altura casi al límite de la barra */
        max-height: none !important; /* Elimina restricciones previas */
        object-fit: contain;
    }
}




@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: var(--bs-primary);
        transition: .5s;
        z-index: -1;
    }
    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }
    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}










@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: var(--bs-primary);
        transition: .5s;
        z-index: -1;
    }
    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }
    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}


/*** Carousel Hero Header Start ***/

.carousel-header {
    width: 100%;
    overflow: hidden;
    background: #000;
}

.carousel-header .carousel-inner {
    width: 100%;
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 0;
    overflow: hidden;
    background: #000;
}

.carousel-header .carousel-inner .carousel-item picture {
    display: block;
    width: 100%;
    height: 100%;
}

.carousel-header .carousel-inner .carousel-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding-top: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: linear-gradient(
        rgba(0, 0, 0, .5),
        rgba(0, 0, 0, .5)
    );
}

/* Controles */

.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);

    padding: 25px 30px;

    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;

    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);

    padding: 25px 30px;

    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;

    background-size: 60% 60%;
}
/* Indicadores */

.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}

/* Indicadores solo en celular */
@media (max-width: 768px) {
    .carousel-header .carousel .carousel-indicators {
        bottom: 55px !important;
    }
}


/* ==========================
   MÓVIL
   ========================== */

@media (max-width: 768px) {

    .carousel-header {
        width: 100%;
        height: auto !important;
    }

    .carousel-header .carousel-inner .carousel-item {
        aspect-ratio: 3 / 4;
        min-height: 0;
        height: auto;
    }

    .carousel-header .carousel-inner .carousel-item picture {
        width: 100%;
        height: 100%;
    }

    .carousel-header .carousel-inner .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin-top: 0;
    }

    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        width: 100%;
        height: 100%;
        margin-top: 0;
        padding: 30px 15px;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        opacity: 0;
    }

}

/*** Carousel Hero Header End ***/




/*** Single Page Hero Header Start 1contact 2 ***/

.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    /* Color de respaldo mientras carga la imagen */
    background-color: #13357b;

    padding: 150px 0 50px 0;
}

/* =========================================================
   IMAGEN DEL ENCABEZADO
   ========================================================= */
.bg-breadcrumb::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("../img/servicios.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;

    z-index: -2;
}

/* =========================================================
   CAPA AZUL SOBRE LA IMAGEN
   ========================================================= */
.bg-breadcrumb::after {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(19, 53, 123, 0.5);

    z-index: -1;
}

/* =========================================================
   CONTENIDO DEL ENCABEZADO
   ========================================================= */
.bg-breadcrumb > .container {
    position: relative;
    z-index: 1;
}

/* =========================================================
   ENLACES DEL BREADCRUMB
   ========================================================= */
.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}


.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}


/* =========================================================
   CORRECCIÓN: ENCABEZADO NOSOTROS OPTIMIZADO
   ========================================================= */
.bg-breadcrumb02 {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    /* 1. Color de respaldo instantáneo (evita el parpadeo plomo) */
    background-color: #13357b;

    padding: 150px 0 50px 0;
}

/* 2. Capa de la imagen (renderizado asíncrono limpio) */
.bg-breadcrumb02::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("../img/nosotros.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll; /* Mantenemos tu mejora para móviles */

    z-index: -2;
}

/* 3. Capa del filtro azul (carga de forma independiente) */
.bg-breadcrumb02::after {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(19, 53, 123, 0.5);

    z-index: -1;
}

/* 4. Asegura que el contenido quede por encima de las capas */
.bg-breadcrumb02 > .container {
    position: relative;
    z-index: 1;
}



.bg-breadcrumb02 .breadcrumb02-item a {
    color: var(--bs-secondary) !important;
}

.bg-breadcrumb03 {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-color: #13357b;
    padding: 150px 0 50px 0;
}

.bg-breadcrumb03::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/contactos.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; /* Mantenlo si prefieres este efecto aquí */
    z-index: -2;
}

.bg-breadcrumb03::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(19, 53, 123, 0.5);
    z-index: -1;
}

.bg-breadcrumb03 > .container {
    position: relative;
    z-index: 1;
}

.bg-breadcrumb03 .breadcrumb03-item a {
    color: var(--bs-secondary) !important;
}


/*** Single Page Hero Header End ***/


/*** About Start ***/

.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** About End ***/


/*** Services Start ***/

.service .service-content-inner {
    transition: 0.5s;
}

.service .service-content-inner:hover {
    position: relative;
    background: var(--bs-primary) !important;
}

.service .service-content-inner .service-content h5,
.service .service-content-inner .service-content p,
.service .service-content-inner .service-icon i {
    transition: 0.5s;
}

.service .service-content-inner:hover .service-content h5,
.service .service-content-inner:hover .service-content p,
.service .service-content-inner:hover .service-icon i {
    color: var(--bs-white) !important;
}


/*** Service End ***/


/*** Destination Start ***/

.destination .tab-class .tab-content .tab-pane .destination-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.destination .tab-class .tab-content .tab-pane .destination-img .destination-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    z-index: 3;
    transition: 0.5s;
}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
    padding: 20px 20px 0 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.5s;
}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon a i {
    opacity: 0;
    transition: 0.5s;
}

.destination .tab-class .nav-item {
    padding: 0 0 20px 0;
}

.destination .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.destination .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon {
    background: rgba(19, 53, 123, 0.4);
}

.destination .tab-class .tab-content .destination-img:hover .destination-overlay {
    bottom: 0;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon a i {
    opacity: 1;
}

.destination .tab-class .tab-content .destination-img img {
    transition: 0.5s;
}

.destination .tab-class .tab-content .destination-img:hover img {
    transform: scale(1.2);
}


/*** Destination End ***/


/*** Packages Start ***/

.packages .packages-item .packages-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    z-index: 1;
}

.packages .packages-item .packages-img .packages-info {
    background: rgba(0, 0, 0, .3);
}

.packages .packages-item .packages-img .packages-info small,
.packages .packages-item .packages-img .packages-info small i {
    color: var(--bs-white);
    transition: 0.5s;
}

.packages .packages-item .packages-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0px solid;
    border-radius: 10px !important;
    visibility: hidden;
    transition: 0.7s;
    z-index: 3;
}



.packages .packages-item .packages-img small,
.packages .packages-item .packages-img small i {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover small,
.packages .packages-item .packages-img:hover small i {
    color: var(--bs-white) !important;
}

.packages .packages-item .packages-img img {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover img {
    transform: scale(1.3);
}

.packages .packages-item .packages-img .packages-price {
    position: absolute;
    width: 100px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    background: var(--bs-primary);
    color: var(--bs-white);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 5;
}

.packages .packages-carousel {
    position: relative;
}

.packages .packages-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -50px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-next {
    position: absolute;
    top: -50px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev i,
.packages .packages-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev:hover,
.packages .packages-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.packages .packages-carousel .owl-nav .owl-prev:hover i,
.packages .packages-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}


/*** Packages End ***/


/*** Explore Tour Start ***/

.ExploreTour .tab-class .nav-item {
    padding: 0 0 20px 0;
}

.ExploreTour .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.ExploreTour .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}


/* National Tour Start */

.ExploreTour #NationalTab-1 .national-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #NationalTab-1 .national-item img {
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #NationalTab-1 .national-item .national-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-content {
    background: rgba(19, 53, 123, .6);
}

.ExploreTour #NationalTab-1 .national-item .national-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-plus-icon {
    opacity: 1;
}

.ExploreTour #NationalTab-1 .national-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 40px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-primary);
    color: var(--bs-white);
}


/* International Tour Start */

.ExploreTour #InternationalTab-2 .international-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .international-item img {
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #InternationalTab-2 .international-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 30px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-primary);
    color: var(--bs-white);
}

.ExploreTour #InternationalTab-2 .international-item .international-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .3);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-content {
    background: rgba(19, 53, 123, .6);
}

.ExploreTour #InternationalTab-2 .international-item .international-content .international-info a {
    font-size: 14px;
}

.ExploreTour #InternationalTab-2 .international-item .international-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-plus-icon {
    opacity: 1;
}


/* carousel Start */

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .international-item {
    position: relative;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}


/*** Explore Tour End ***/


/*** Gallery Start ***/

.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-item img {
    min-height: 300px;
    object-fit: cover;
}

.gallery .gallery-item .gallery-content {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-content .gallery-info {
    position: relative;
    margin-bottom: -100%;
    opacity: 0;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.gallery .gallery-item:hover .gallery-content .gallery-info,
.gallery .gallery-item:hover .gallery-plus-icon {
    opacity: 1;
    margin: 0;
}

.gallery .gallery-item img {
    transition: 0.5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item:hover .gallery-content {
    background: rgba(19, 53, 123, 0.8);
}

.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}

.gallery .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}


/*** Gallery End ***/


/*** Tour Booking Start ***/

.booking {
    background: linear-gradient(rgba(19, 53, 123, .8), rgba(19, 53, 123, .8)), url(../img/tour-booking-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.booking .container .section-booking-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.booking .container .section-booking-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.booking .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.booking .container form .btn.btn-primary:hover {
    box-shadow: inset 800px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}


/*** Tour Booking end ***/


/*** Travel Guide Start ***/

.guide .guide-item .guide-img {
    position: relative;
}

.guide .guide-item .guide-img .guide-icon {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: -50px;
    display: flex;
    justify-content: center;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
    z-index: 9;
}

.guide .guide-item .guide-img .guide-img-efects {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.guide .guide-item .guide-img .guide-img-efects::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects::after {
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background: rgba(19, 53, 123, .5);
}

.guide .guide-item .guide-img-efects img {
    transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects img {
    transform: scale(1.1);
}

.guide .guide-item .guide-title {
    position: relative;
    background: var(--bs-light);
    transition: 0.5s;
}

.guide .guide-item .guide-title::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title::after {
    height: 100%;
    background: var(--bs-primary) !important;
    color: var(--bs-white);
}

.guide .guide-item .guide-title .guide-title-inner,
.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title .guide-title-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 2;
}

.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    color: var(--bs-white);
}


/*** Travel Guide End ***/


/*** Blog Start ***/

.blog .blog-item .blog-img {
    position: relative;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    background: rgba(255, 255, 255, .2);
    color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
    opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
    height: 100%;
    background: rgba(19, 53, 123, .6);
    opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
    overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
    transform: scale(1.2);
}


/*** Blog End ***/


/*** Testimonial Start ***/

.testimonial .testimonial-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
    position: relative;
    width: 100px;
    height: 100px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--bs-primary);
    border-style: dotted;
    border-radius: 50%;
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -55px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -55px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-comment {
    background: var(--bs-primary) !important;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-img {
    border: 3px solid var(--bs-white);
    border-style: dotted;
    transition: 0.5s;
}


/*** Testimonial End ***/


/*** Contact Start ***/

.contact .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
    box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}


/*** Contact End ***/



/*** Subscribe Start ***/

.subscribe {
    min-height: 600px;
    background: linear-gradient(rgba(19, 53, 123, .6), rgba(19, 53, 123, .6)), url(../img/subscribe-img.webp);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ESPACIO SUPERIOR DEL CONTENIDO */
.subscribe-content {
    padding-top: 100px;
}

/* CELULARES */
@media (max-width: 768px) {
    .subscribe {
        background-attachment: scroll;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 100% 100%;
    }

    .subscribe-content {
        padding-top: 50px;
    }
}

.subscribe .subscribe-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.subscribe .subscribe-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

/*** Subscribe End ***/


/*** Footer Start ***/

.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
}


/*** Footer End ***/


/*** copyright Start ***/

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}

@media (max-width: 768px) {

    .copyright {
        padding-bottom: 80px !important;
        position: relative;
        z-index: 2;
    }

}

.bg-servicios-hero {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    
    padding-top: 0px !important; 
    padding-bottom: 50px;
    
    /* CAMBIO: Forzar fijo en todos los dispositivos (incluyendo celular) */
    background-attachment: fixed !important; 
}

.bg-servicios-hero .container {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* El media query ya no necesita cambiar el attachment si lo dejamos fijo global */
@media (min-width: 992px) {
    .bg-servicios-hero {
        padding-top: 0px !important;
        padding-bottom: 60px;
    }
}

/*** mine carr ***/
.btn-call-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-call-icon {
  width: 60px;
  height: 60px;
  background-color: #13357b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,.3);
}

.btn-call-text {
  background: #13357b;
  color: white;
  padding: 12px 16px;
  border-radius: 30px;
  font-weight: bold;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: all .3s ease;
}

.btn-call-float.active .btn-call-text {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.code-title::before {
    content: "<";
}

.code-title::after {
    content: "/>";
}

.justificado {
    text-align: justify;
}



.banner-gif {
    width: 100%;
    height: 45px;
    display: block;
}

/* Celulares */
@media (max-width: 768px) {
    .banner-gif {
        width: 110%;
        max-width: none;
        margin-left: -5%;
        height: 40px; 
        object-fit: cover;
    }
}




/* ==========================================
   ESTILOS PARA EL ACORDEÓN SEO
   ========================================== */

.contenedor-texto-seo {
  max-width: 1280px;
  margin: 40px auto;
  font-family: Arial, Helvetica, sans-serif;
  padding: 0 15px;
}


/* ==========================================
   CADA ELEMENTO DEL ACORDEÓN
   ========================================== */

.acordeon-seo {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-bottom: none;
  margin: 0;
}


/* Bordes superiores */
.acordeon-seo:first-child {
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}


/* Bordes inferiores */
.acordeon-seo:last-child {
  border-bottom: 1px solid #dee2e6;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}


/* ==========================================
   BOTÓN / PREGUNTA
   ========================================== */

.acordeon-seo summary {
  min-height: 72px;
  box-sizing: border-box;

  display: flex;
  align-items: center;

  padding: 20px 65px 20px 32px;

  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;

  color: #333333;

  cursor: pointer;
  outline: none;

  list-style: none;

  position: relative;

  transition: background-color 0.2s ease;
}


/* Elimina la flecha predeterminada */
.acordeon-seo summary::-webkit-details-marker {
  display: none;
}

.acordeon-seo summary::marker {
  display: none;
}


/* Efecto hover */
.acordeon-seo summary:hover {
  background-color: #d4d4d4;
}


/* ==========================================
   ICONO +
   ========================================== */

.acordeon-seo summary::after {
  content: "+";

  position: absolute;

  right: 30px;
  top: 50%;

  transform: translateY(-50%);

  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background-color: #13357b;

  color: #ffffff;

  font-size: 22px;
  font-weight: 400;

  line-height: 30px;
}


/* ==========================================
   ICONO CUANDO ESTÁ ABIERTO MINE ACORDEON
   ========================================== */

.acordeon-seo[open] summary::after {
  content: "−";
}


/* ==========================================
   CONTENIDO
   ========================================== */

.contenido-acordeon {
  padding: 0 32px 30px 32px;

  background-color: #ffffff;

  border-top: 1px solid #dee2e6;

  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;

  color: #333333;

  font-size: 16px;
  line-height: 1.6;
}


/* ==========================================
   PÁRRAFOS
   ========================================== */

.contenido-acordeon p {
  margin-top: 20px;
  margin-bottom: 20px;
}


/* ==========================================
   ENCABEZADOS
   ========================================== */

.contenido-acordeon h2 {
  font-size: 22px;
  color: #2c3e50;
  margin-top: 20px;
}


.contenido-acordeon h3 {
  font-size: 18px;
  color: #2c3e50;
  margin-top: 25px;
  margin-bottom: 12px;
}


/* ==========================================
   LISTAS
   ========================================== */

.contenido-acordeon ul {
  padding-left: 22px;
  margin-bottom: 20px;
}


.contenido-acordeon li {
  margin-bottom: 8px;
}


/* ==========================================
   TEXTO EN NEGRITA
   ========================================== */

.contenido-acordeon strong {
  font-weight: 700;
  color: #333333;
}


/* ==========================================
   RESPONSIVE - TABLET
   ========================================== */

@media (max-width: 768px) {

  .contenedor-texto-seo {
    margin: 25px auto;
    padding: 0 10px;
  }

  .acordeon-seo summary {
    min-height: 65px;

    padding: 18px 55px 18px 20px;

    font-size: 17px;
  }

  .acordeon-seo summary::after {
    right: 20px;

    width: 28px;
    height: 28px;

    font-size: 20px;
  }

  .contenido-acordeon {
    padding: 0 20px 25px 20px;
    font-size: 15px;
  }

}


/* ==========================================
   RESPONSIVE - MÓVIL
   ========================================== */

@media (max-width: 480px) {

  .contenedor-texto-seo {
    padding: 0 8px;
  }

  .acordeon-seo summary {
    font-size: 16px;
    line-height: 1.35;

    padding-left: 16px;
    padding-right: 50px;
  }

  .acordeon-seo summary::after {
    right: 15px;

    width: 26px;
    height: 26px;

    font-size: 19px;
  }

  .contenido-acordeon {
    padding-left: 16px;
    padding-right: 16px;
  }

}

/* ==========================================
   TÍTULO DE LA SECCIÓN FAQ
   ========================================== */

.titulo-faq {
  max-width: 1280px;
  margin: 60px auto 25px;
  padding: 0 15px;

  font-family: Arial, Helvetica, sans-serif;

  /* CENTRAR TODO */
  text-align: center;
}


/* FAQ */

.titulo-faq span {
  display: block;

  margin-bottom: 8px;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;

  color: #13357b;

  text-transform: uppercase;
}


/* Preguntas frecuentes y respuestas */

.titulo-faq h2 {
  margin: 0;

  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;

  color: #13357b;
}


/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 768px) {

  .titulo-faq {
    margin: 40px auto 20px;
    padding: 0 10px;
  }

  .titulo-faq h2 {
    font-size: 26px;
  }

  .titulo-faq span {
    font-size: 13px;
  }

}


/* Optimización de renderizado y prevención de CLS en el Carrusel */
.hero-carousel-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 600 / 800; /* Proporción para pantallas móviles */
}

@media (min-width: 768px) {
  .hero-carousel-img {
    aspect-ratio: 1920 / 1080; /* Proporción para pantallas de escritorio */
  }
}





/* =========================================================
   RESEÑAS GOOGLE - SYSMKT SMART SOLUTIONS
   ========================================================= */

.google-reviews-section {
    width: 100%;
    padding: 65px 20px;
    background: transparent;
    overflow: hidden;
}

.google-reviews-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================================
   TÍTULO
   ========================================================= */

.google-reviews-header {
    text-align: center;
    margin-bottom: 35px;
}

.google-reviews-header h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #13357b;
}


/* =========================================================
   CARRUSEL
   ========================================================= */

.google-reviews-carousel {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.google-reviews-viewport {
    width: 100%;
    overflow: hidden;
}

.google-reviews-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s ease;
}


/* =========================================================
   TARJETAS
   ========================================================= */

.google-review-card {
    flex: 0 0 calc((100% - 40px) / 3);
    box-sizing: border-box;

    min-height: 235px;
    padding: 22px;

    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 3px;

    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}


/* =========================================================
   PARTE SUPERIOR
   ========================================================= */

.google-review-top {
    display: flex;
    align-items: center;
    gap: 11px;
    width: 100%;
    min-width: 0;
}

.google-review-user {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
}

.google-review-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    flex: 0 0 24px;
    margin-left: auto;
}

.google-review-icon img {
    display: block;
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.google-review-avatar {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    border-radius: 50%;
    overflow: hidden;

    background: #eef2f7;
}

.google-review-avatar img {
    width: 100%;
    height: 100%;

    display: block;
    object-fit: cover;
}

.google-review-user strong {
    display: block;

    font-size: 14px;
    line-height: 1.3;

    color: #202124;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.google-review-user span {
    display: block;

    margin-top: 3px;

    font-size: 11px;

    /* CORREGIDO: antes #7b7d80 */
    color: #4b4d50;
}

.google-review-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    flex: 0 0 24px;
}

.google-review-icon img {
    display: block;

    width: 22px;
    height: 22px;

    object-fit: contain;
}


/* =========================================================
   ESTRELLAS
   ========================================================= */

.google-review-stars {
    margin-top: 15px;
    margin-bottom: 12px;

    font-size: 21px;
    line-height: 1;

    color: #fbbc04;

    letter-spacing: 1px;
}


/* =========================================================
   TEXTO
   ========================================================= */

.google-review-card p {
    margin: 0 0 14px;

    min-height: 75px;

    font-size: 14px;
    line-height: 1.55;

    /* CORREGIDO: antes #5f6368 */
    color: #3f4246;
}

.google-review-card a {
    font-size: 12px;

    /* CORREGIDO: antes #6d6d6d */
    color: #4a4a4a;

    text-decoration: underline;
}

.google-review-card a:hover {
    color: #1a56db;
}


/* =========================================================
   FLECHAS
   ========================================================= */

.google-review-arrow {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    padding: 0;

    border: none;
    background: transparent;

    /* CORREGIDO: antes #73777b */
    color: #4b4d50;

    font-size: 30px;
    line-height: 1;

    cursor: pointer;

    transition: opacity 0.2s ease;
}

.google-review-arrow:hover {
    opacity: 0.55;
}

.google-review-arrow:focus {
    outline: 2px solid #4285f4;
    outline-offset: 3px;
}


/* =========================================================
   BLOQUE INFERIOR GOOGLE
   ========================================================= */

.google-rating-box {
    display: flex;
    align-items: center;

    width: fit-content;

    margin: 22px auto 0;

    padding: 10px 20px;

    background: #13357b;

    border-radius: 3px;

    color: #ffffff;
}

.google-rating-logo {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    margin-right: 12px;

    border-radius: 50%;

    background: #ffffff;

    font-size: 23px;
    font-weight: 800;

    color: #4285f4;
}

.google-rating-information {
    margin-right: 22px;
}

.google-rating-number {
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-rating-number strong {
    font-size: 22px;
    line-height: 1;
}

.google-rating-number span {
    font-size: 17px;
    letter-spacing: 1px;
    color: #fbbc04;
}

.google-rating-text {
    margin-top: 4px;

    font-size: 11px;

    opacity: 0.95;
}

.google-rating-link {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.google-rating-link:hover {
    color: #ffffff;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .google-review-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }

}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 767px) {

    .google-review-top {
        gap: 8px;
    }

    .google-review-icon {
        width: 22px;
        height: 22px;
        flex: 0 0 22px;
    }

    .google-review-icon img {
        width: 20px;
        height: 20px;
    }

    .google-reviews-section {
        padding: 50px 15px;
    }

    .google-reviews-header h2 {
        font-size: 27px;
    }

    .google-reviews-carousel {
        gap: 4px;
    }

    .google-review-card {
        flex: 0 0 100%;
        min-height: 220px;
        padding: 20px;
    }

    .google-review-arrow {
        display: none;
    }

    .google-rating-box {
        width: 100%;
        max-width: 340px;

        box-sizing: border-box;

        justify-content: flex-start;

        padding: 10px 14px;
    }

    .google-rating-information {
        margin-right: 12px;
    }

    .google-rating-link {
        display: block;
    flex: 1;
    text-align: center;
    font-size: 11px;
        
    }

    .google-rating-number strong {
        font-size: 19px;
    }

    .google-rating-number span {
        font-size: 14px;
    }

}


/* =========================================================
   REDUCIR ANIMACIONES
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .google-reviews-track {
        transition: none;
    }

}


/* Títulos SEO acordeon*/
.contenedor-texto-seo .contenido-acordeon h1,
.contenedor-texto-seo .contenido-acordeon h2,
.contenedor-texto-seo .contenido-acordeon h3 {
    color: #13357b;
}

/* Título principal */
.contenedor-texto-seo .contenido-acordeon h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* Títulos principales de sección */
.contenedor-texto-seo .contenido-acordeon h2 {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.35;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Subtítulos de módulos */
.contenedor-texto-seo .contenido-acordeon h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 25px;
    margin-bottom: 10px;
}
/* Título del acordeón */
.contenedor-texto-seo .acordeon-seo > summary {
    color: #13357b;
    font-weight: 600;
    cursor: pointer;
}









