/********** Template CSS **********/
:root {
    --primary: #2B758F;
    --secondary: #d1640a;
    --light: #F5F5F5;
    --dark: #14141F;
}

/* Modern Overrides */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .btn, .nav-link {
    font-family: 'Nunito', sans-serif !important;
}

.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.btn-primary { background-color: var(--primary) !important; border-color: var(--primary) !important; }
.btn-primary:hover { background-color: var(--secondary) !important; border-color: var(--secondary) !important; }
.btn-outline-primary { color: var(--primary) !important; border-color: var(--primary) !important; }
.btn-outline-primary:hover,
.btn-outline-primary.active { background-color: var(--primary) !important; color: #fff !important; }

/* End Modern Overrides */

.back-to-top {
    position: fixed;
    display: none;
    left: 45px;
    right: auto;
    bottom: 45px;
    z-index: 99;
}

.whatsapp-widget {
    position: fixed;
    right: 20px;
    bottom: 45px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    pointer-events: none;
    opacity: 0;
    transform: translateX(24px);
    transition: opacity .25s ease, transform .25s ease;
}

.whatsapp-widget.active {
    pointer-events: auto;
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    border: none;
    background: #25D366;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    box-shadow: 0 6px 18px rgba(43, 117, 143, .50);
}

.whatsapp-float:hover {
    color: #FFFFFF;
    background: #1EBE5B;
}

.whatsapp-float::after {
    content: "1";
    position: absolute;
    top: -6px;
    right: -6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #FF4F58;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-chat {
    position: absolute;
    right: 72px;
    bottom: 50%;
    transform: translateY(50%) translateX(24px);
    width: 210px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .96);
    color: #1F2F3F;
    font-size: .84rem;
    font-weight: 600;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
}

.whatsapp-chat.visible {
    opacity: 1;
    transform: translateY(50%) translateX(0);
}

.whatsapp-chat::after {
    content: "";
    position: absolute;
    top: 45%;
    right: -12px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid rgba(255, 255, 255, .96);
}

.whatsapp-status {
    font-size: .62rem;
    color: #1F2F3F;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 6px 18px rgba(43, 117, 143, .50);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 10px 22px rgba(43, 117, 143, .65);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 6px 18px rgba(43, 117, 143, .50);
    }
}

@media (max-width: 768px) {
    .whatsapp-widget {
        right: 14px;
        bottom: 16px;
    }

    .whatsapp-chat,
    .whatsapp-status {
        display: none;
    }
}

.security-slider {
    position: relative;
    background: linear-gradient(120deg, rgba(6, 138, 190, .12), rgba(254, 136, 0, .1));
    border: 1px solid rgba(6, 138, 190, .28);
    border-radius: 999px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.security-slider-label {
    font-size: .9rem;
    font-weight: 600;
    color: #1f2f3f;
    white-space: nowrap;
}

.slider-track {
    position: relative;
    width: 100%;
    padding-right: 48px;
}

.slider-track .slider-control {
    width: 100%;
}

.slider-control {
    flex: 1;
    appearance: none;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary) 0%, #dfe7ef 0%);
    outline: none;
    transition: background .3s ease;
}

.slider-control::-webkit-slider-thumb {
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--primary);
    box-shadow: 0 8px 18px rgba(6, 138, 190, .35);
    cursor: pointer;
    transition: transform .2s ease;
}

.slider-control::-webkit-slider-thumb:hover {
    transform: scale(1.08);
}

.slider-control::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(6, 138, 190, .35);
    cursor: pointer;
    transition: transform .2s ease;
}

.slider-control::-moz-range-thumb:hover {
    transform: scale(1.08);
}

.security-slider .slider-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.security-slider--verified {
    border-color: rgba(17, 81, 119, 0.5);
    box-shadow: 0 18px 32px rgba(6, 86, 110, 0.2);
}

.security-slider--verified .security-slider-label {
    color: #2B758F;
}
 
.security-slider--verified .slider-check {
    background: rgba(17, 81, 119, 0.5);
    color: #2B758F;
}

.security-slider--spring {
    animation: sliderSpring .45s ease-in-out;
}

@keyframes sliderSpring {
    0% { transform: scaleX(1); }
    40% { transform: scaleX(1.02); }
    100% { transform: scaleX(1); }
}

.button-locked {
    background: linear-gradient(135deg, #c8d5df, #9fb1c1) !important;
    border-color: #9fb1c1 !important;
    color: #f4f4f4 !important;
    box-shadow: none !important;
    opacity: .85;
    cursor: not-allowed;
}

.button-locked i {
    opacity: .8;
}

@media (max-width: 576px) {
    .security-slider {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        gap: 12px;
    }

    .security-slider-label {
        text-align: center;
        white-space: normal;
        font-size: .85rem;
    }

    .slider-track {
        width: 100%;
    }
}


/*** 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 {
    transition: .5s;
}

.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: 50px;
}


/*** Navbar ***/
.nav-bar {
    position: relative;
    margin-top: 45px;
    padding: 0 3rem;
    transition: .5s;
    z-index: 9999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (min-width: 992px) {
    .header {
        margin-top: -120px;
    }
}

.header .hero-media-shell {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--light);
    aspect-ratio: 16 / 9;
}

@media (min-width: 992px) {
    .header .hero-media-shell {
        aspect-ratio: 4 / 3;
        min-height: 460px;
    }
}

.header .hero-media-shell .header-carousel,
.header .hero-media-shell .owl-stage-outer,
.header .hero-media-shell .owl-stage,
.header .hero-media-shell .owl-item,
.header .hero-media-shell .owl-carousel-item {
    height: 100%;
}

.header .hero-media-shell .owl-carousel-item img,
.header .hero-desktop-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.header .hero-video-shell {
    background: #000;
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        left: 25px;
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #DDDDDD;
}


/*** Icon ***/
.icon {
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 50px;
}


/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}


/*** Category ***/
.cat-item div {
    background: #FFFFFF;
    border: 1px dashed rgba(14, 165, 233, .3);
    transition: .5s;
}

.cat-item:hover div {
    background: var(--primary);
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}


/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.property-item img {
    transition: .5s;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed rgba(14, 165, 233, .3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(14, 165, 233, .3) !important;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .5s;
}

.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(43, 117, 143, .35) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    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 .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.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;
}

/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}

/* Demo de ofertas internacionales */
.tour-offer-thumb {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
}

.tour-offer-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.tour-offer-trigger:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: -3px;
}

/* --- Lightbox personalizado de ofertas internacionales --- */
.tour-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}

.tour-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.25s ease;
}

.tour-lightbox-toolbar {
    position: absolute;
    top: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 0.5rem;
}

.tour-lb-btn,
.tour-lb-nav {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.tour-lb-btn:hover,
.tour-lb-btn:focus-visible,
.tour-lb-nav:hover,
.tour-lb-nav:focus-visible {
    background: var(--primary);
    outline: none;
}

/* Area con scroll donde vive la imagen */
.tour-lightbox-stage {
    position: absolute;
    top: 60px;
    bottom: 16px;
    left: 60px;
    right: 60px;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Imagen: por defecto ajusta al contenedor; JS la expande al hacer zoom */
.tour-lightbox-image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: zoom-in;
    user-select: none;
    transition: none;
}

.tour-lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.tour-lb-prev { left: 0.75rem; }
.tour-lb-next { right: 0.75rem; }

@media (max-width: 767.98px) {
    .tour-lightbox-stage {
        top: 16px;
        bottom: 64px;
        left: 48px;
        right: 48px;
    }

    .tour-lightbox-toolbar {
        top: auto;
        bottom: 0.75rem;
    }
}

/* --- Feed Instagram LundiTours --- */
.instagram-card {
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
    background: #fff;
}

.instagram-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.instagram-card-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 0.9rem 1rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(20, 20, 31, 0.85) 100%);
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s ease;
}

.instagram-card:hover .instagram-card-image {
    transform: scale(1.05);
}


/* ═══════════════════════════════════════════════════════════
   PASARELA DE PAGO — pagos.html
   ═══════════════════════════════════════════════════════════ */

/* ── Banner encabezado — hero páginas internas ── */
.page-hero {
    background: linear-gradient(135deg, #0a2540 0%, var(--primary) 55%, #0d3d6b 100%);
    padding: 100px 0 0;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

/* Textura de puntos */
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.12) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

/* Ola SVG inferior */
.page-hero-wave {
    display: block;
    width: 100%;
    height: 80px;
    margin-top: 48px;
}

/* Contenido */
.page-hero-body { position: relative; z-index: 1; }
.page-hero h1 { font-size: 2.8rem; font-weight: 800; line-height: 1.15; color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,.5); margin-bottom: .6rem; }
.page-hero .breadcrumb-item a { color: rgba(255,255,255,.75); text-decoration: none; }
.page-hero .breadcrumb-item a:hover { color: #fff; }
.page-hero .breadcrumb-item.active { color: #fff; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.5); }
.page-hero .hero-subtitle { opacity: .88; font-size: 1.05rem; margin-top: .5rem; }

/* Ícono decorativo con halo */
.page-hero-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.page-hero-icon-wrap::before {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 70%);
    animation: heroPulse 3s ease-in-out infinite;
}
.page-hero-icon-wrap::after {
    content: '';
    position: absolute;
    width: 150px; height: 150px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.2);
    animation: heroPulse 3s ease-in-out infinite .8s;
}
.page-hero-icon-wrap i { font-size: 7rem; opacity: .55; position: relative; z-index: 1; }

@keyframes heroPulse {
    0%, 100% { transform: scale(1);   opacity: 1; }
    50%       { transform: scale(1.1); opacity: .6; }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 68px 0 0;
        min-height: 240px;
    }
    .page-hero h1 {
        font-size: 1.5rem;
        margin-bottom: .4rem;
    }
    .page-hero .hero-subtitle {
        font-size: .9rem;
    }
    .page-hero-wave {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 40px;
        margin-top: 0;
    }
    .page-hero-body {
        padding-bottom: 48px; /* espacio para que el texto no quede detrás de la ola */
    }
    .page-hero-icon-wrap {
        display: none; /* ocultar ícono decorativo en móvil para que no ocupe espacio */
    }
    /* En páginas con foto: posicionar la foto centrada en móvil */
    .page-hero--pagos,
    .page-hero--internacional,
    .page-hero--colombia,
    .page-hero--quindio,
    .page-hero--destinos,
    .page-hero--contacto,
    .page-hero--galeria,
    .page-hero--instagram {
        background-position: center center !important;
        background-size: cover !important;
    }
}

/* Banner de pagos con imagen fotográfica */
.page-hero--pagos {
    background:
        linear-gradient(to right,
            rgba(10, 37, 64, 1)     0%,
            rgba(10, 37, 64, 0.96)  30%,
            rgba(10, 37, 64, 0.82)  52%,
            rgba(13, 61, 107, 0.55) 72%,
            rgba(13, 61, 107, 0.22) 100%
        ),
        url('../images/banner/banner-pagando-tdc.jpg') right center / cover no-repeat;
}
/* Cuando hay foto, suavizar el efecto de puntos en la zona clara */
.page-hero--pagos::before {
    background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
}

/* ── Banners con foto por página ────────────────────────── */
/* Gradiente base reutilizable */
.page-hero--photo-gradient {
    background-blend-mode: normal;
}

/* Turismo Internacional */
.page-hero--internacional {
    background:
        linear-gradient(to right,
            rgba(10, 37, 64, 1)     0%,
            rgba(10, 37, 64, 0.96)  30%,
            rgba(10, 37, 64, 0.82)  52%,
            rgba(13, 61, 107, 0.55) 72%,
            rgba(13, 61, 107, 0.22) 100%
        ),
        url('../images/banner/iceland-tours.jpg') right center / cover no-repeat;
}

/* Turismo en Colombia */
.page-hero--colombia {
    background:
        linear-gradient(to right,
            rgba(10, 37, 64, 1)     0%,
            rgba(10, 37, 64, 0.96)  30%,
            rgba(10, 37, 64, 0.82)  52%,
            rgba(13, 61, 107, 0.55) 72%,
            rgba(13, 61, 107, 0.22) 100%
        ),
        url('../images/banner/turista-en-ipiales-santuario-de-las-lajas.jpg') right center / cover no-repeat;
}

/* Turismo en el Quindío */
.page-hero--quindio {
    background:
        linear-gradient(to right,
            rgba(10, 37, 64, 1)     0%,
            rgba(10, 37, 64, 0.96)  30%,
            rgba(10, 37, 64, 0.82)  52%,
            rgba(13, 61, 107, 0.55) 72%,
            rgba(13, 61, 107, 0.22) 100%
        ),
        url('../images/banner/turista-en-quindio.jpg') right center / cover no-repeat;
}

/* Todos los Destinos */
.page-hero--destinos {
    background:
        linear-gradient(to right,
            rgba(10, 37, 64, 1)     0%,
            rgba(10, 37, 64, 0.96)  30%,
            rgba(10, 37, 64, 0.82)  52%,
            rgba(13, 61, 107, 0.55) 72%,
            rgba(13, 61, 107, 0.22) 100%
        ),
        url('../images/banner/frontera-colombia-peru-brasil.jpg') right center / cover no-repeat;
}

/* Contacto — agregar banner-contacto.jpg cuando tengas la foto */
.page-hero--contacto {
    background:
        linear-gradient(to right,
            rgba(10, 37, 64, 1)     0%,
            rgba(10, 37, 64, 0.96)  30%,
            rgba(10, 37, 64, 0.82)  52%,
            rgba(13, 61, 107, 0.55) 72%,
            rgba(13, 61, 107, 0.22) 100%
        ),
        url('../images/banner/banner-contacto.jpg') right center / cover no-repeat;
}

/* Galería — agregar banner-galeria.jpg cuando tengas la foto */
.page-hero--galeria {
    background:
        linear-gradient(to right,
            rgba(10, 37, 64, 1)     0%,
            rgba(10, 37, 64, 0.96)  30%,
            rgba(10, 37, 64, 0.82)  52%,
            rgba(13, 61, 107, 0.55) 72%,
            rgba(13, 61, 107, 0.22) 100%
        ),
        url('../images/banner/banner-galeria.jpg') right center / cover no-repeat;
}

/* Instagram — agregar banner-instagram.jpg cuando tengas la foto */
.page-hero--instagram {
    background:
        linear-gradient(to right,
            rgba(10, 37, 64, 1)     0%,
            rgba(10, 37, 64, 0.96)  30%,
            rgba(10, 37, 64, 0.82)  52%,
            rgba(13, 61, 107, 0.55) 72%,
            rgba(13, 61, 107, 0.22) 100%
        ),
        url('../images/banner/banner-instagram.jpg') right center / cover no-repeat;
}

/* ── Móvil: gradiente vertical para legibilidad con foto centrada ── */
@media (max-width: 575.98px) {
    .page-hero--pagos,
    .page-hero--internacional,
    .page-hero--colombia,
    .page-hero--quindio,
    .page-hero--destinos,
    .page-hero--contacto,
    .page-hero--galeria,
    .page-hero--instagram {
        background-image:
            linear-gradient(to bottom,
                rgba(10, 37, 64, 0.96) 0%,
                rgba(10, 37, 64, 0.88) 60%,
                rgba(13, 61, 107, 0.70) 100%
            ),
            var(--hero-bg-img, none) !important;
    }
    .page-hero { padding: 62px 0 0; }
    .page-hero h1 { font-size: 1.35rem; }
    .page-hero .hero-subtitle { font-size: .82rem; }
    .page-hero-wave { height: 32px; margin-top: 18px; }
}

/* Mantener clase antigua como alias por compatibilidad */
.pago-hero { background: linear-gradient(135deg, #0a2540 0%, var(--primary) 55%, #0d3d6b 100%); }

/* ── Tarjetas aceptadas ── */
.card-brands .card-brand-icon {
    font-size: 2.8rem;
    color: #495057;
    transition: color .2s, transform .2s;
}
.card-brands .card-brand-icon:hover { color: var(--primary); transform: translateY(-4px); }

/* ── Tarjeta visual animada ── */
.credit-card-visual {
    background: linear-gradient(135deg, #1a4a7e 0%, #0d2d52 100%);
    border-radius: 18px;
    padding: 28px 24px 22px;
    position: relative;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
    min-height: 200px;
    transition: background .5s ease;
    user-select: none;
    overflow: hidden;
}
.credit-card-visual::before {
    content: '';
    position: absolute;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    top: -50px; right: -40px;
}
.credit-card-visual::after {
    content: '';
    position: absolute;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    bottom: -30px; left: 20px;
}
.credit-card-visual.card-visa        { background: linear-gradient(135deg, #1a1f71 0%, #152e6a 100%); }
.credit-card-visual.card-mastercard  { background: linear-gradient(135deg, #c0392b 0%, #e74c3c 50%, #e67e22 100%); }
.credit-card-visual.card-amex        { background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%); }
.credit-card-visual.card-diners      { background: linear-gradient(135deg, #4a148c 0%, #6a1b9a 100%); }
.credit-card-visual.card-discover    { background: linear-gradient(135deg, #e65100 0%, #ff6d00 100%); }
.credit-card-visual.card-jcb         { background: linear-gradient(135deg, #1565c0 0%, #0288d1 100%); }

.cv-chip {
    width: 42px; height: 32px;
    background: linear-gradient(135deg, #d4a017 0%, #f0c040 100%);
    border-radius: 5px;
    margin-bottom: 20px;
    position: relative; z-index: 1;
}
.cv-chip::before {
    content: '';
    position: absolute;
    width: 100%; height: 12px;
    top: 10px; left: 0;
    border-top: 1.5px solid rgba(0,0,0,.2);
    border-bottom: 1.5px solid rgba(0,0,0,.2);
}
.cv-logo {
    position: absolute;
    top: 24px; right: 24px;
    font-size: 2.2rem;
    color: rgba(255,255,255,.9);
    z-index: 1;
}
.cv-number {
    font-size: 1.35rem;
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative; z-index: 1;
}
.cv-bottom { display: flex; justify-content: space-between; position: relative; z-index: 1; }
.cv-label { font-size: .65rem; text-transform: uppercase; letter-spacing: 1px; opacity: .75; margin-bottom: 2px; }
.cv-holder { font-size: .9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.cv-expiry { font-size: .9rem; font-weight: 600; font-family: 'Courier New', monospace; }

/* ── Insignias de seguridad ── */
.security-badge {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .83rem;
    color: #495057;
}
.security-badge i { font-size: 1.4rem; color: #28a745; flex-shrink: 0; }

/* ── Formulario de pago ── */
.payment-section-title {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 6px;
    margin-bottom: 18px;
}
.form-floating label { font-size: .875rem; }
.form-floating .form-control:focus,
.form-floating .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 .2rem rgba(13,110,253,.15); }

#cc_number_input { letter-spacing: 2px; font-family: 'Courier New', monospace; font-size: 1.05rem; }

.monto-display {
    background: linear-gradient(135deg, var(--primary) 0%, #0d3d6b 100%);
    color: #fff;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}
.monto-display small { font-size: .7rem; opacity: .8; display: block; }

/* ── Botón pagar ── */
#btnPagar {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 14px;
    border-radius: 10px;
    transition: opacity .2s, transform .15s;
}
#btnPagar:hover:not(:disabled) { opacity: .92; transform: translateY(-1px); }
#btnPagar:disabled { opacity: .65; cursor: not-allowed; }

/* ── Indicadores de validación ── */
.field-err .form-control,
.field-err .form-select { border-color: #dc3545 !important; }
.field-ok .form-control,
.field-ok .form-select  { border-color: #28a745 !important; }
.field-feedback { font-size: .77rem; margin-top: 3px; }

/* ── Panel resultado ── */
#resultPanel { display: none; border-radius: 14px; padding: 30px; text-align: center; }
#resultPanel.approved { background: #d4edda; border: 2px solid #28a745; }
#resultPanel.rejected { background: #f8d7da; border: 2px solid #dc3545; }
#resultPanel .result-icon { font-size: 3rem; margin-bottom: 10px; }
#resultPanel .result-ref  { font-size: .8rem; color: #6c757d; }

/* ── Loader spinner ── */
.pay-spinner {
    display: none;
    width: 1.2rem; height: 1.2rem;
    border: 3px solid rgba(255,255,255,.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spinPay .7s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}
@keyframes spinPay { to { transform: rotate(360deg); } }

@media (max-width: 768px) {
    .cv-number { font-size: 1.05rem; letter-spacing: 2px; }
}
