    @import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

    :root {
        --c-deep: #002D4F;
        --c-ocean: #0077B6;
        --c-light: #00B4D8;
        --c-pale: #CAF0F8;
        --c-foam: #EAF6FF;
        --c-sand: #F9C74F;
        --c-sand-d: #E8A817;
        --c-green: #2EC4B6;
        --c-dark: #0D1B2A;
        --c-mid: #3A5A72;
        --c-muted: #6E8FA5;
        --ease: cubic-bezier(.22, 1, .36, 1);
        --fh: 'Sora', sans-serif;
        --fb: 'DM Sans', sans-serif;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    body {
        font-family: var(--fb);
        background: #F0F7FC;
        margin: 0;
    }

    /* ══ HERO ══ */
    .exc-hero {
        position: relative;
        min-height: 50vh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .exc-hero-bg {
        position: absolute;
        inset: -10% 0;
        will-change: transform;
        background: linear-gradient(135deg, rgba(0, 28, 52, .88) 0%, rgba(0, 80, 140, .68) 52%, rgba(0, 140, 175, .48) 100%), url('https://images.unsplash.com/photo-1599640842225-85d111c60e6b?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    }

    .exc-grain {
        position: absolute;
        inset: 0;
        opacity: .04;
        pointer-events: none;
        z-index: 1;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        background-size: 180px;
    }

    .exc-hero-content {
        position: relative;
        z-index: 10;
        flex: 1;
        display: flex;
        align-items: center;
        padding: 100px 0 95px;
    }

    .exc-hero-inner {
        max-width: 680px;
    }

    [data-anim] {
        opacity: 0;
        transform: translateY(24px);
    }

    [data-anim].anim-in {
        animation: excIn .7s var(--ease) forwards;
    }

    @keyframes excIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .exc-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, .13);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, .28);
        color: #fff;
        font-family: var(--fh);
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: .10em;
        text-transform: uppercase;
        padding: 7px 16px;
        border-radius: 999px;
        margin-bottom: 20px;
    }

    .exc-pulse {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--c-sand);
        animation: pulseDot 2.2s ease-in-out infinite;
    }

    @keyframes pulseDot {

        0%,
        100% {
            box-shadow: 0 0 0 0 rgba(249, 199, 79, .7);
        }

        50% {
            box-shadow: 0 0 0 7px rgba(249, 199, 79, 0);
        }
    }

    .exc-title {
        font-family: var(--fh);
        font-size: clamp(2rem, 4.2vw, 3.1rem);
        font-weight: 800;
        color: #fff;
        line-height: 1.1;
        letter-spacing: -.025em;
        margin-bottom: 14px;
    }

    .exc-title-bar {
        display: block;
        width: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--c-sand), var(--c-light));
        border-radius: 99px;
        margin-top: 12px;
        animation: tBar 1s var(--ease) .5s both;
    }

    @keyframes tBar {
        to {
            width: 64px;
        }
    }

    .exc-subtitle {
        font-size: clamp(.93rem, 1.4vw, 1.05rem);
        font-weight: 300;
        color: rgba(255, 255, 255, .80);
        max-width: 520px;
        line-height: 1.75;
        margin-bottom: 28px;
    }

    .exc-hero-chips {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .exc-hchip {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: rgba(255, 255, 255, .12);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, .22);
        color: #fff;
        font-family: var(--fh);
        font-size: .75rem;
        font-weight: 600;
        padding: 7px 14px;
        border-radius: 999px;
    }

    .exc-hchip i {
        color: var(--c-sand);
        font-size: .78rem;
    }

    .exc-waves {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 200%;
        height: 90px;
        z-index: 5;
        pointer-events: none;
    }

    .exc-wave {
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 90px;
        transform: translateY(90px);
    }

    .exc-wave.w-in {
        animation: wRise var(--rd, .9s) var(--ease) forwards, wScroll var(--sd, 14s) linear var(--rd, .9s) infinite;
    }

    .exc-wave-b {
        --rd: .85s;
        --sd: 20s;
    }

    .exc-wave-f {
        --rd: 1.1s;
        --sd: 12s;
    }

    @keyframes wRise {
        from {
            transform: translateY(90px);
        }

        to {
            transform: translateY(0);
        }
    }

    @keyframes wScroll {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    /* ══ RESULTS BANNER ══ */
    .exc-results-banner {
        background: var(--c-foam);
        border-bottom: 1px solid rgba(0, 119, 182, .12);
        padding: 12px 0;
    }

    .exc-rb-inner {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .exc-rb-count {
        font-family: var(--fh);
        font-size: .88rem;
        font-weight: 700;
        color: var(--c-dark);
    }

    .exc-rb-tag {
        background: rgba(0, 119, 182, .10);
        color: var(--c-ocean);
        font-size: .78rem;
        padding: 4px 12px;
        border-radius: 999px;
    }

    .exc-rb-clear {
        margin-left: auto;
        display: inline-flex;
        align-items: center;
        background: rgba(220, 53, 69, .10);
        border: 1px solid rgba(220, 53, 69, .25);
        color: #dc3545;
        font-size: .78rem;
        font-family: var(--fh);
        font-weight: 600;
        padding: 5px 14px;
        border-radius: 999px;
        text-decoration: none;
        transition: all .2s;
    }

    .exc-rb-clear:hover {
        background: #dc3545;
        color: #fff;
    }

    /* ══ TABS (MODERN & CLEAN) ══ */
    .exc-cats-section {
        position: sticky;
        top: 0;
        z-index: 50;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 119, 182, 0.12);
        padding: 12px 0;
    }

    .exc-cats-wrapper {
        display: flex;
        justify-content: center;
    }

    .exc-cats-scroll {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding: 4px 2px 8px 2px;
        scrollbar-width: thin;
    }

    .exc-cats-scroll::-webkit-scrollbar {
        height: 5px;
    }

    .exc-cats-scroll::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 10px;
    }

    .exc-cat-tab {
        flex: 0 0 auto;
        scroll-snap-align: start;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 20px;
        border: none;
        background: #fff;
        border-radius: 48px;
        font-family: var(--fh);
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--c-mid, #3A5A72);
        cursor: pointer;
        transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
        white-space: nowrap;
    }

    .exc-cat-tab:hover {
        transform: translateY(-2px);
        background: rgba(0, 119, 182, 0.08);
        color: var(--c-ocean, #0077B6);
    }

    .exc-cat-tab.active {
        background: var(--tab-color, var(--c-ocean, #0077B6));
        color: #fff;
        box-shadow: 0 6px 14px rgba(0, 119, 182, 0.25);
    }

    .exc-cat-count {
        display: inline-block;
        background: rgba(0, 0, 0, 0.08);
        color: inherit;
        font-size: 0.7rem;
        font-weight: 700;
        padding: 2px 7px;
        border-radius: 40px;
        line-height: 1;
        transition: transform 0.15s ease;
    }

    .exc-cat-tab.active .exc-cat-count {
        background: rgba(255, 255, 255, 0.25);
        color: #fff;
    }

    .exc-cat-count.pulse {
        animation: countPulse 0.3s ease;
    }

    @keyframes countPulse {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.2);
            background: rgba(255, 215, 0, 0.5);
        }

        100% {
            transform: scale(1);
        }
    }

    /* ══ GRID ══ */
    .exc-grid-section {
        padding: 48px 0 90px;
    }

    [data-reveal] {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity .65s var(--ease), transform .65s var(--ease);
    }

    [data-reveal].revealed {
        opacity: 1;
        transform: translateY(0);
    }

    .exc-sec-head {
        text-align: center;
        margin-bottom: 48px;
    }

    .exc-sec-eyebrow {
        display: inline-block;
        font-family: var(--fh);
        font-size: .7rem;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--c-ocean);
        background: rgba(0, 119, 182, .10);
        padding: 5px 14px;
        border-radius: 999px;
        margin-bottom: 12px;
    }

    .exc-sec-title {
        font-family: var(--fh);
        font-size: clamp(1.7rem, 2.8vw, 2.3rem);
        font-weight: 800;
        color: var(--c-dark);
        letter-spacing: -.025em;
        margin-bottom: 10px;
    }

    .exc-sec-sub {
        font-size: .96rem;
        color: var(--c-muted);
        max-width: 480px;
        margin: 0 auto;
        line-height: 1.65;
    }

    /* ══ CARD ══ */
    .exc-card {
        background: #fff;
        border-radius: 22px;
        overflow: hidden;
        box-shadow: 0 6px 28px rgba(0, 45, 79, .09);
        border: 1px solid rgba(0, 119, 182, .08);
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: transform .38s var(--ease), box-shadow .38s var(--ease);
    }

    .exc-card:hover {
        transform: translateY(-10px) rotate(-.2deg);
        box-shadow: 0 24px 64px rgba(0, 45, 79, .17);
    }

    .exc-img-wrap {
        position: relative;
        height: 230px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .exc-card-img,
    .exc-img-single {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        cursor: zoom-in;
        transition: transform .55s var(--ease);
    }

    .exc-card:hover .exc-img-single {
        transform: scale(1.07);
    }

    .exc-img-ph {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--c-pale), var(--c-foam));
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .exc-img-veil {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 45%, rgba(0, 25, 55, .38) 100%);
        pointer-events: none;
    }

    .exc-cat-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        font-family: var(--fh);
        font-size: .67rem;
        font-weight: 700;
        letter-spacing: .05em;
        text-transform: uppercase;
        padding: 5px 12px;
        border-radius: 999px;
        backdrop-filter: blur(8px);
    }

    .exc-feat-badge {
        position: absolute;
        top: 12px;
        right: 12px;
        background: linear-gradient(135deg, var(--c-sand), var(--c-sand-d));
        color: var(--c-deep);
        font-family: var(--fh);
        font-size: .66rem;
        font-weight: 800;
        padding: 5px 11px;
        border-radius: 999px;
    }

    .exc-expand-btn {
        position: absolute;
        bottom: 10px;
        right: 10px;
        z-index: 22;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 2px solid rgba(255, 255, 255, .80);
        background: rgba(0, 0, 0, .42);
        backdrop-filter: blur(8px);
        color: #fff;
        font-size: .88rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transform: scale(.75) translateY(4px);
        transition: all .28s var(--ease);
        box-shadow: 0 3px 12px rgba(0, 0, 0, .28);
    }

    .exc-img-wrap:hover .exc-expand-btn {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    .exc-expand-btn:hover {
        background: rgba(0, 0, 0, .72);
        transform: scale(1.12) !important;
    }

    .exc-hover-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 40, 80, .54);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 14px;
        opacity: 0;
        transition: opacity .3s;
    }

    .exc-card:hover .exc-hover-overlay {
        opacity: 1;
    }

    .exc-ho-price {
        text-align: center;
        transform: translateY(8px);
        transition: transform .35s var(--ease);
    }

    .exc-card:hover .exc-ho-price {
        transform: translateY(0);
    }

    .exc-ho-price span {
        display: block;
        font-size: .68rem;
        color: rgba(255, 255, 255, .75);
        font-family: var(--fh);
        text-transform: uppercase;
        letter-spacing: .08em;
    }

    .exc-ho-price strong {
        font-family: var(--fh);
        font-size: 1.9rem;
        font-weight: 800;
        color: var(--c-sand);
        display: block;
    }

    .exc-ho-price small {
        font-size: .68rem;
        color: rgba(255, 255, 255, .65);
    }

    .exc-ho-btn {
        background: var(--c-sand);
        color: var(--c-deep);
        font-family: var(--fh);
        font-size: .83rem;
        font-weight: 700;
        padding: 10px 24px;
        border-radius: 999px;
        text-decoration: none;
        transform: translateY(8px);
        transition: transform .35s var(--ease) .05s, background .2s;
    }

    .exc-card:hover .exc-ho-btn {
        transform: translateY(0);
    }

    .exc-ho-btn:hover {
        background: var(--c-sand-d);
    }

    /* ══ CARRUSEL ══ */
    .exc-carousel {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .exc-carousel-track {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .exc-carousel-slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity .45s ease;
    }

    .exc-carousel-slide.active {
        opacity: 1;
    }

    .exc-carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        cursor: zoom-in;
        transition: transform .55s var(--ease);
    }

    .exc-card:hover .exc-carousel-slide.active img {
        transform: scale(1.06);
    }

    .exc-car-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 20;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: none;
        background: rgba(255, 255, 255, .85);
        backdrop-filter: blur(8px);
        color: var(--c-deep);
        font-size: .78rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .2s var(--ease);
        opacity: 0;
    }

    .exc-card:hover .exc-car-btn {
        opacity: 1;
    }

    .exc-car-btn:hover {
        background: #fff;
        transform: translateY(-50%) scale(1.1);
    }

    .exc-car-prev {
        left: 8px;
    }

    .exc-car-next {
        right: 8px;
    }

    .exc-car-dots {
        position: absolute;
        bottom: 34px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 5px;
        z-index: 20;
    }

    .exc-car-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .55);
        cursor: pointer;
        transition: all .2s;
    }

    .exc-car-dot.active {
        background: #fff;
        width: 16px;
        border-radius: 3px;
    }

    .exc-img-count {
        position: absolute;
        bottom: 8px;
        right: 52px;
        background: rgba(0, 0, 0, .52);
        backdrop-filter: blur(6px);
        color: #fff;
        font-family: var(--fh);
        font-size: .65rem;
        font-weight: 700;
        padding: 4px 9px;
        border-radius: 999px;
        z-index: 20;
    }

    /* ══ CUERPO CARD ══ */
    .exc-card-body {
        padding: 18px 20px 20px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .exc-rating-row {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 8px;
    }

    .exc-stars {
        font-size: .75rem;
        display: flex;
        gap: 2px;
    }

    .exc-rating-num {
        font-family: var(--fh);
        font-size: .82rem;
        font-weight: 700;
        color: var(--c-dark);
    }

    .exc-reviews {
        font-size: .75rem;
        color: var(--c-muted);
    }

    .exc-meta-row {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 8px;
    }

    .exc-meta {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: .76rem;
        color: var(--c-muted);
    }

    .exc-meta i {
        color: var(--c-ocean);
        font-size: .7rem;
    }

    .exc-card-title {
        font-family: var(--fh);
        font-size: 1.02rem;
        font-weight: 700;
        color: var(--c-dark);
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .exc-desc-wrap {
        margin-bottom: 10px;
    }

    .exc-desc {
        font-size: .85rem;
        color: var(--c-muted);
        line-height: 1.62;
        margin: 0 0 8px;
    }

    .exc-read-more {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 9px 14px;
        border-radius: 12px;
        cursor: pointer;
        border: 1.5px solid var(--cat-color, var(--c-ocean));
        background: transparent;
        position: relative;
        overflow: hidden;
        transition: all .28s var(--ease);
    }

    .exc-read-more::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0;
        background: var(--cat-color, var(--c-ocean));
        transition: width .3s var(--ease);
        z-index: 0;
    }

    .exc-read-more:hover::before,
    .exc-read-more.open::before {
        width: 100%;
    }

    .exc-rm-left {
        display: flex;
        align-items: center;
        gap: 9px;
        position: relative;
        z-index: 1;
    }

    .exc-rm-icon {
        width: 26px;
        height: 26px;
        border-radius: 7px;
        background: var(--cat-color, var(--c-ocean));
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .75rem;
        flex-shrink: 0;
        transition: background .25s;
    }

    .exc-read-more:hover .exc-rm-icon,
    .exc-read-more.open .exc-rm-icon {
        background: rgba(255, 255, 255, .22);
    }

    .exc-rm-text {
        font-family: var(--fh);
        font-size: .8rem;
        font-weight: 700;
        color: var(--cat-color, var(--c-ocean));
        transition: color .2s;
    }

    .exc-read-more:hover .exc-rm-text,
    .exc-read-more.open .exc-rm-text {
        color: #fff;
    }

    .exc-rm-arrow {
        font-size: .7rem;
        color: var(--cat-color, var(--c-ocean));
        transition: transform .28s var(--ease), color .2s;
        position: relative;
        z-index: 1;
    }

    .exc-read-more:hover .exc-rm-arrow,
    .exc-read-more.open .exc-rm-arrow {
        color: #fff;
    }

    .exc-read-more.open .exc-rm-arrow {
        transform: rotate(180deg);
    }

    .exc-includes {
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin-bottom: 16px;
    }

    .exc-inc-chip {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: .79rem;
        color: var(--c-mid);
    }

    .exc-inc-chip i {
        font-size: .72rem;
    }

    .exc-card-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 14px;
        border-top: 1px solid rgba(0, 119, 182, .10);
        margin-top: auto;
    }

    .exc-price-label {
        display: block;
        font-size: .63rem;
        color: var(--c-muted);
        text-transform: uppercase;
        letter-spacing: .06em;
    }

    .exc-price {
        font-family: var(--fh);
        font-size: 1.2rem;
        font-weight: 800;
        display: block;
    }

    .exc-reserve-btn {
        display: inline-flex;
        align-items: center;
        color: #fff;
        font-family: var(--fh);
        font-size: .78rem;
        font-weight: 700;
        padding: 9px 18px;
        border-radius: 999px;
        text-decoration: none;
        transition: filter .2s, transform .2s var(--ease);
        white-space: nowrap;
    }

    .exc-reserve-btn:hover {
        filter: brightness(1.12);
        color: #fff;
        transform: translateY(-2px);
    }

    .exc-no-cat-results {
        text-align: center;
        padding: 60px 0;
        color: var(--c-muted);
    }

    .exc-no-cat-results i {
        font-size: 2.5rem;
        display: block;
        margin-bottom: 12px;
    }

    .exc-empty {
        text-align: center;
        padding: 80px 20px;
    }

    .exc-empty-icon {
        font-size: 4rem;
        margin-bottom: 18px;
    }

    .exc-empty h3 {
        font-family: var(--fh);
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--c-dark);
        margin-bottom: 8px;
    }

    .exc-empty p {
        color: var(--c-muted);
        margin-bottom: 24px;
    }

    .exc-empty-btn {
        display: inline-flex;
        align-items: center;
        background: var(--c-ocean);
        color: #fff;
        font-family: var(--fh);
        font-weight: 600;
        font-size: .9rem;
        padding: 12px 28px;
        border-radius: 999px;
        text-decoration: none;
        transition: all .25s var(--ease);
    }

    .exc-empty-btn:hover {
        background: var(--c-deep);
        transform: translateY(-2px);
    }

    /* ══ LIGHTBOX ══ */
    .exc-lb {
        position: fixed;
        inset: 0;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        animation: lbIn .22s ease both;
    }

    @keyframes lbIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .exc-lb-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 8, 20, .97);
        backdrop-filter: blur(16px);
    }

    .exc-lb-close {
        position: absolute;
        top: 16px;
        right: 16px;
        z-index: 10;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1.5px solid rgba(255, 255, 255, .2);
        background: rgba(255, 255, 255, .08);
        color: #fff;
        font-size: 1rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .2s var(--ease);
    }

    .exc-lb-close:hover {
        background: rgba(255, 255, 255, .22);
        transform: scale(1.1);
    }

    .exc-lb-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 1.5px solid rgba(255, 255, 255, .22);
        background: rgba(255, 255, 255, .08);
        color: #fff;
        font-size: 1.05rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .25s var(--ease);
    }

    .exc-lb-nav:hover {
        background: rgba(255, 255, 255, .20);
        transform: translateY(-50%) scale(1.08);
    }

    .exc-lb-prev {
        left: 18px;
    }

    .exc-lb-next {
        right: 18px;
    }

    .exc-lb-stage {
        position: relative;
        z-index: 5;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 92vw;
        max-height: 78vh;
    }

    .exc-lb-loader {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .exc-lb-spin {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 3px solid rgba(255, 255, 255, .12);
        border-top-color: #fff;
        animation: spin .7s linear infinite;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    .exc-lb-image {
        max-width: 92vw;
        max-height: 78vh;
        object-fit: contain;
        border-radius: 10px;
        box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
        opacity: 0;
        transition: opacity .35s ease;
        display: block;
    }

    .exc-lb-image.lb-loaded {
        opacity: 1;
    }

    .exc-lb-footer {
        position: relative;
        z-index: 5;
        margin-top: 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
        max-width: 92vw;
    }

    .exc-lb-counter {
        font-family: var(--fh);
        font-size: .8rem;
        font-weight: 600;
        color: rgba(255, 255, 255, .65);
        letter-spacing: .06em;
    }

    .exc-lb-thumbs {
        display: flex;
        gap: 7px;
        overflow-x: auto;
        padding: 4px 2px;
        scrollbar-width: none;
        justify-content: center;
    }

    .exc-lb-thumbs::-webkit-scrollbar {
        display: none;
    }

    .exc-lb-thumb {
        width: 56px;
        height: 40px;
        border-radius: 7px;
        object-fit: cover;
        cursor: pointer;
        border: 2px solid transparent;
        opacity: .5;
        transition: all .22s var(--ease);
        flex-shrink: 0;
    }

    .exc-lb-thumb:hover {
        opacity: .82;
    }

    .exc-lb-thumb.lb-active {
        border-color: var(--c-sand);
        opacity: 1;
        transform: scale(1.08);
    }

    /* ══ FORMULARIO PERSONALIZADO ══ */
    .exc-custom-section {
        padding: 90px 0;
        background: linear-gradient(135deg, var(--c-deep) 0%, #003d6e 50%, #00507a 100%);
        position: relative;
        overflow: hidden;
    }

    .exc-custom-section::before {
        content: '';
        position: absolute;
        inset: 0;
        opacity: .04;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        background-size: 200px;
    }

    .exc-custom-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
        position: relative;
        z-index: 2;
    }

    .exc-cl-eyebrow {
        display: inline-flex;
        align-items: center;
        background: rgba(249, 199, 79, .18);
        border: 1px solid rgba(249, 199, 79, .35);
        color: var(--c-sand);
        font-family: var(--fh);
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: .10em;
        text-transform: uppercase;
        padding: 6px 14px;
        border-radius: 999px;
        margin-bottom: 18px;
    }

    .exc-cl-title {
        font-family: var(--fh);
        font-size: clamp(1.8rem, 3vw, 2.6rem);
        font-weight: 800;
        color: #fff;
        line-height: 1.1;
        margin-bottom: 18px;
    }

    .exc-cl-desc {
        font-size: .97rem;
        color: rgba(255, 255, 255, .75);
        line-height: 1.72;
        margin-bottom: 28px;
    }

    .exc-cl-perks {
        list-style: none;
        padding: 0;
        margin: 0 0 28px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .exc-cl-perks li {
        display: flex;
        align-items: center;
        gap: 10px;
        color: rgba(255, 255, 255, .85);
        font-size: .9rem;
    }

    .exc-cl-perks i {
        color: var(--c-green);
        flex-shrink: 0;
    }

    .exc-cl-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(46, 196, 182, .15);
        border: 1px solid rgba(46, 196, 182, .3);
        color: var(--c-green);
        font-family: var(--fh);
        font-size: .78rem;
        font-weight: 600;
        padding: 8px 16px;
        border-radius: 999px;
    }

    .exc-custom-right {
        background: #fff;
        border-radius: 24px;
        padding: 32px 30px;
        box-shadow: 0 20px 64px rgba(0, 0, 0, .25);
    }

    .exc-flash {
        padding: 13px 16px;
        border-radius: 12px;
        font-size: .88rem;
        font-family: var(--fh);
        font-weight: 600;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .exc-flash-ok {
        background: rgba(46, 196, 182, .12);
        border: 1px solid rgba(46, 196, 182, .3);
        color: var(--c-green);
    }

    .exc-flash-err {
        background: rgba(220, 53, 69, .10);
        border: 1px solid rgba(220, 53, 69, .25);
        color: #dc3545;
    }

    .exc-cf-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .exc-cf-group {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-bottom: 14px;
    }

    .exc-cf-label {
        font-family: var(--fh);
        font-size: .72rem;
        font-weight: 700;
        color: var(--c-muted);
        text-transform: uppercase;
        letter-spacing: .07em;
    }

    .exc-req {
        color: #dc3545;
    }

    .exc-cf-input {
        font-family: var(--fb);
        font-size: .9rem;
        border: 1.5px solid rgba(0, 119, 182, .18);
        border-radius: 10px;
        padding: 10px 13px;
        background: var(--c-foam);
        color: var(--c-dark);
        outline: none;
        transition: border-color .2s, box-shadow .2s;
        width: 100%;
    }

    .exc-cf-input:focus {
        border-color: var(--c-ocean);
        box-shadow: 0 0 0 3px rgba(0, 119, 182, .12);
        background: #fff;
    }

    .exc-cf-textarea {
        resize: vertical;
        min-height: 80px;
    }

    .exc-activity-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 4px;
    }

    .exc-act-chip {
        font-family: var(--fh);
        font-size: .74rem;
        font-weight: 600;
        padding: 6px 12px;
        border-radius: 999px;
        background: var(--c-foam);
        border: 1.5px solid rgba(0, 119, 182, .18);
        color: var(--c-mid);
        cursor: pointer;
        transition: all .18s var(--ease);
        user-select: none;
    }

    .exc-act-chip:hover {
        background: rgba(0, 119, 182, .10);
        border-color: var(--c-ocean);
        color: var(--c-ocean);
    }

    .exc-act-chip.selected {
        background: var(--c-ocean);
        border-color: var(--c-ocean);
        color: #fff;
    }

    .exc-pax {
        display: flex;
        align-items: center;
        border: 1.5px solid rgba(0, 119, 182, .18);
        border-radius: 10px;
        overflow: hidden;
        background: var(--c-foam);
    }

    .exc-pax-btn {
        background: none;
        border: none;
        width: 40px;
        height: 42px;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--c-ocean);
        cursor: pointer;
        transition: background .2s;
    }

    .exc-pax-btn:hover {
        background: rgba(0, 119, 182, .10);
    }

    .exc-pax-val {
        border: none;
        background: none;
        font-family: var(--fh);
        font-weight: 700;
        font-size: .92rem;
        color: var(--c-dark);
        text-align: center;
        width: 50px;
    }

    /* ✅ Validación visual para campos obligatorios */
    .exc-cf-input:required:invalid:not(:focus):not(:placeholder-shown) {
        border-color: #dc3545 !important;
        background: #fff5f5;
        box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
    }

    .exc-cf-input:required:valid {
        border-color: var(--c-green) !important;
    }

    .exc-cf-hint {
        display: block;
        font-size: .72rem;
        color: var(--c-muted);
        margin-top: 4px;
    }

    .exc-cf-hint i {
        color: var(--c-ocean);
    }

    /* Animación de error */
    @keyframes shake {

        0%,
        100% {
            transform: translateX(0);
        }

        25% {
            transform: translateX(-4px);
        }

        75% {
            transform: translateX(4px);
        }
    }

    .exc-cf-input.input-error {
        animation: shake 0.3s ease-in-out;
    }

    .exc-cf-submit {
        width: 100%;
        background: linear-gradient(135deg, var(--c-ocean), var(--c-light));
        color: #fff;
        border: none;
        font-family: var(--fh);
        font-weight: 700;
        font-size: .95rem;
        padding: 14px 24px;
        border-radius: 14px;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        box-shadow: 0 6px 22px rgba(0, 119, 182, .32);
        transition: all .25s var(--ease);
    }

    .exc-cf-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 119, 182, .44);
    }

    .exc-cf-submit-sub {
        font-size: .72rem;
        font-weight: 400;
        opacity: .8;
    }

    /* ══ MODAL DE POLÍTICA ══ */
    .exc-modal {
        position: fixed;
        inset: 0;
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        animation: modalIn .25s ease;
    }

    @keyframes modalIn {
        from {
            opacity: 0;
            transform: scale(.95);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .exc-modal-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(0, 8, 20, .85);
        backdrop-filter: blur(8px);
    }

    .exc-modal-content {
        position: relative;
        z-index: 10;
        background: #fff;
        border-radius: 20px;
        width: 100%;
        max-width: 680px;
        max-height: 85vh;
        display: flex;
        flex-direction: column;
        box-shadow: 0 25px 80px rgba(0, 0, 0, .4);
        overflow: hidden;
    }

    .exc-modal-header {
        padding: 18px 24px;
        border-bottom: 1px solid rgba(0, 119, 182, .10);
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: linear-gradient(135deg, rgba(0, 119, 182, .05), rgba(0, 180, 216, .02));
    }

    .exc-modal-header h3 {
        font-family: var(--fh);
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--c-dark);
        margin: 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .exc-modal-close {
        background: none;
        border: none;
        font-size: 1.8rem;
        color: var(--c-muted);
        cursor: pointer;
        padding: 4px 8px;
        border-radius: 8px;
        transition: all .2s;
        line-height: 1;
    }

    .exc-modal-close:hover {
        background: rgba(220, 53, 69, .10);
        color: #dc3545;
    }

    .exc-modal-body {
        padding: 20px 24px;
        overflow-y: auto;
        flex: 1;
        font-size: .9rem;
        line-height: 1.7;
        color: var(--c-mid);
    }

    .exc-policy-content h4 {
        font-family: var(--fh);
        font-size: .95rem;
        font-weight: 700;
        color: var(--c-dark);
        margin: 20px 0 8px;
        padding-bottom: 4px;
        border-bottom: 2px solid var(--c-foam);
    }

    .exc-policy-content p {
        margin: 0 0 12px;
    }

    .exc-policy-content ul {
        margin: 0 0 12px 20px;
        padding: 0;
        list-style: disc;
        color: var(--c-mid);
    }

    .exc-policy-content li {
        margin-bottom: 4px;
    }

    .exc-policy-footer {
        margin-top: 24px;
        padding-top: 16px;
        border-top: 1px solid rgba(0, 119, 182, .10);
        font-size: .82rem;
        color: var(--c-muted);
    }

    .exc-modal-footer {
        padding: 16px 24px;
        border-top: 1px solid rgba(0, 119, 182, .10);
        background: #fafbfc;
        display: flex;
        justify-content: flex-end;
    }

    .exc-modal-btn {
        padding: 10px 24px;
        border: none;
        border-radius: 999px;
        font-family: var(--fh);
        font-weight: 600;
        font-size: .9rem;
        cursor: pointer;
        transition: all .2s;
    }

    .exc-modal-primary {
        background: var(--c-ocean);
        color: #fff;
    }

    .exc-modal-primary:hover {
        background: var(--c-deep);
        transform: translateY(-2px);
    }

    /* Responsive */
    @media(max-width:991px) {
        .exc-custom-wrap {
            grid-template-columns: 1fr;
        }

        .exc-cf-row {
            grid-template-columns: 1fr;
        }
    }

    @media(max-width:768px) {
        .exc-hero-content {
            padding: 90px 0;
        }

        .exc-hover-overlay {
            display: none;
        }

        .exc-custom-right {
            padding: 24px 18px;
        }

        .exc-lb-nav {
            width: 40px;
            height: 40px;
        }
    }

    @media(max-width:480px) {
        .exc-title {
            font-size: 1.85rem;
        }

        .exc-img-wrap {
            height: 200px;
        }
    }
