    :root {
        --violet: #9a89c3;
        --blue: #7fa1eb;
        --pink: #e8649b;
        --green: #aaca83;
        --teal: #67b9c2;
        --sunset: #fdc77b;
        --onyx: #434142;
        --lilac: #baaed6;
        --pale: #f5f0ff;
        --azure: #5280E4;
        --edu-black: #09131C;
        --edu-blue-01: #5675ff;
        --edu-purple-02: #6842ff;
        --copein-pink-01: #e8649b;
        --text: #7a6e86;
        --radius-card: 24px;
        --white: #fff;
    }

    .text-center {
        text-align: center;
    }

    /* ACCESOS */
    #accesos .card {
        border-radius: var(--radius-card);
        height: 100%;
        min-height: 480px;
        margin-bottom: 20px;
    }

    @media screen and (max-width:500px) {
        #accesos .card {
            min-height: auto;
        }
    }

    #accesos .card .card-head,
    #accesos .card .card-body {
        padding: 20px 28px;
    }

    #accesos .card .card-head {
        border-top-left-radius: var(--radius-card);
        border-top-right-radius: var(--radius-card);
        color: var(--white);
        text-align: center;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    #accesos .card-head h2 {
        font-weight: 500;
        font-size: 20px;
        line-height: 1;
        margin-bottom: 0;
    }

    #accesos .card-head p {
        font-size: 60px;
        line-height: 1;
        font-weight: 900;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: .07rem;
        margin-bottom: 0;
    }

    #accesos .card-head p span.main {
        font-size: 60px;
        line-height: 1;
        font-weight: 900;
        margin-bottom: 0;
    }

    #accesos .card-head p span {
        font-weight: 400;
        font-size: 30px;
        display: flex;
    }

    #accesos .card.card01 .card-head {
        background: linear-gradient(135deg, #9a89c3, #7fa1eb);
    }

    #accesos .card.card02 .card-head {
        background: linear-gradient(135deg, #e8649b, #fdc77b);
    }

    #accesos .card.card03 .card-head {
        background: linear-gradient(135deg, #aaca83, #67b9c2);
    }

    #accesos .card.card03 a {
        background: linear-gradient(135deg, #aaca83, #67b9c2);
        box-shadow: 0 8px 28px rgba(170, 202, 131, 0.4);
    }

    #accesos .card.card03 a:hover {
        box-shadow: 0 14px 40px rgba(170, 202, 131, .5);
    }


    #accesos .card .card-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 32px;
    }

    #accesos .card .card-body h5 {
        text-align: center;
        font-weight: 700;
        color: var(--text);
    }

    #accesos .card.card01 a {
        background: linear-gradient(135deg, #9a89c3, #7fa1eb);
        box-shadow: 0 8px 28px rgba(100, 131, 232, 0.4);
    }

    #accesos .card.card01 a:hover {
        box-shadow: 0 14px 40px rgba(100, 131, 232, 0.5);
    }

    #accesos .card.card02 a {
        background: linear-gradient(135deg, #e8649b, #fdc77b);
    }

    #accesos .card.card02 a:hover {
        box-shadow: 0 14px 40px rgba(232, 100, 155, .5);
    }

    #accesos .card .card-body a {
        margin-top: auto;
    }

    #accesos .card .card-body ul {
        color: var(--text);
    }

    #accesos .link {
        text-decoration: none;
        color: var(--copein-pink-01);
    }

    /* linear-gradient(135deg,#9a89c3,#7fa1eb) */
    /* ACCESOS */

    /* EDUAWARDS */
    #eduawards {
        background-color: var(--edu-black) !important;
        background-image: url(/img/eduawards/bg-eduawards.png);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    #eduawards .ssub {
        color: var(--white);
    }

    #eduawards .img-estatuilla {
        width: 100%;
        max-height: 200px;
        object-fit: contain;
        object-position: center center;
    }

    #eduawards .stitle {
        color: var(--white);
    }

    #eduawards .stitle .a {
        color: var(--edu-purple-02);
    }

    #eduawards .stag {
        color: var(--white);
        background-color: var(--edu-blue-01);
    }

    #eduawards .btn-p {
        background: transparent;
        border: 2px solid var(--white);
        box-shadow: 0 0 0 0 inset rgba(250, 250, 250, 1);
    }

    #eduawards .btn-p:hover {
        color: var(--edu-black);

        box-shadow: 0 0 0 30px inset rgba(250, 250, 250, 1);
    }

    /* EDUAWARDS */

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box
    }

    html {
        scroll-behavior: smooth
    }

    body {
        font-family: 'Onest', sans-serif;
        color: var(--onyx);
        background: #fdfaff;
        overflow-x: hidden
    }

    /* NAV */
    nav {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 48px;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(154, 137, 195, 0.15);
        transition: all .3s
    }

    nav.scrolled {
        box-shadow: 0 4px 30px rgba(154, 137, 195, .15)
    }

    .nav-logo img {
        height: 40px;
        object-fit: contain;
        mix-blend-mode: multiply
    }

    .nav-links {
        display: flex;
        gap: 26px;
        list-style: none;
        margin-bottom: 0;
    }

    .nav-links a {
        text-decoration: none;
        font-size: 14px;
        font-weight: 700;
        color: var(--onyx);
        transition: color .2s;
        position: relative;
        padding-bottom: 4px
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--pink);
        border-radius: 2px;
        transition: width .3s
    }

    .nav-links a:hover {
        color: var(--violet)
    }

    .nav-links a:hover::after {
        width: 100%
    }

    .nav-cta {
        background: linear-gradient(135deg, var(--violet), var(--blue));
        color: white;
        border: none;
        border-radius: 50px;
        padding: 10px 22px;
        font-size: 14px;
        font-weight: 800;
        cursor: pointer;
        transition: all .3s;
        font-family: 'Onest', sans-serif;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(127, 161, 235, .4)
    }

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(127, 161, 235, .5)
    }

    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer
    }

    .hamburger span {
        width: 24px;
        height: 2px;
        background: var(--onyx);
        border-radius: 2px
    }

    /* HERO */
    #inicio {
        min-height: calc(100vh - 20vh);
        background: linear-gradient(135deg, #d4c8f0 0%, #f5c5d8 30%, #fde8c8 60%, #c0e8d8 100%);
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
       /*  padding: 90px 48px 90px */
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        opacity: .22;
        pointer-events: none
    }

    .blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(70px);
        opacity: .35;
        animation: floatBlob 9s ease-in-out infinite;
        pointer-events: none
    }

    .b1 {
        width: 420px;
        height: 420px;
        background: var(--violet);
        top: -120px;
        left: -120px;
        animation-delay: 0s
    }

    .b2 {
        width: 360px;
        height: 360px;
        background: var(--pink);
        top: 180px;
        right: -80px;
        animation-delay: 2.5s
    }

    .b3 {
        width: 300px;
        height: 300px;
        background: var(--teal);
        bottom: -80px;
        left: 38%;
        animation-delay: 4s
    }

    .b4 {
        width: 260px;
        height: 260px;
        background: var(--sunset);
        bottom: 120px;
        right: 180px;
        animation-delay: 1.5s
    }

    @keyframes floatBlob {

        0%,
        100% {
            transform: translate(0, 0) scale(1)
        }

        33% {
            transform: translate(18px, -18px) scale(1.05)
        }

        66% {
            transform: translate(-14px, 14px) scale(.96)
        }
    }

    .hero-inner {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 72px;
        position: relative;
        z-index: 2
    }

    .hero-content {
        flex: 1
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, .72);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(154, 137, 195, .3);
        border-radius: 50px;
        padding: 8px 18px;
        font-size: 13px;
        font-weight: 700;
        color: var(--violet);
        margin-bottom: 18px;
        letter-spacing: .5px
    }

    .hero-badge span {
        width: 8px;
        height: 8px;
        background: var(--pink);
        border-radius: 50%;
        display: inline-block;
        animation: pulse 2s infinite
    }

    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
            opacity: 1
        }

        50% {
            transform: scale(1.6);
            opacity: .6
        }
    }

    .hero-logo-img {
        height: 70px;
        object-fit: contain;
        margin-bottom: 18px;
        display: block;
        mix-blend-mode: multiply
    }

    .hero-title {
        font-size: clamp(36px, 4.5vw, 60px);
        font-weight: 900;
        line-height: 1.06;
        letter-spacing: -2px;
        margin-bottom: 8px;
        color: var(--onyx)
    }

    .hero-title .accent {
        color: var(--blue)
    }

    .hero-sub {
        font-size: 16px;
        color: #6b6170;
        max-width: 480px;
        margin-bottom: 16px;
        line-height: 1.75;
        font-weight: 500
    }

    .hero-date {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, .82);
        border: 2px solid rgba(127, 161, 235, .3);
        border-radius: 14px;
        padding: 12px 20px;
        margin-bottom: 20px;
        font-weight: 700;
        color: var(--onyx);
        font-size: 15px
    }

    .hero-btns {
        display: flex;
        gap: 14px;
        flex-wrap: wrap
    }

    .btn-p {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, var(--pink), var(--violet));
        color: white;
        border: none;
        border-radius: 50px;
        padding: 15px 30px;
        font-size: 16px;
        font-weight: 800;
        cursor: pointer;
        transition: all .3s;
        text-decoration: none;
        font-family: 'Onest', sans-serif;
        box-shadow: 0 8px 28px rgba(232, 100, 155, .4)
    }

    .btn-p:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 40px rgba(232, 100, 155, .5)
    }

    .btn-s {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, .82);
        border: 2px solid rgba(154, 137, 195, .4);
        color: var(--violet);
        border-radius: 50px;
        padding: 13px 28px;
        font-size: 16px;
        font-weight: 800;
        cursor: pointer;
        transition: all .3s;
        text-decoration: none;
        font-family: 'Onest', sans-serif
    }

    .btn-s:hover {
        background: white;
        border-color: var(--violet);
        transform: translateY(-2px)
    }

    /* COUNTDOWN */
    .cd-card {
        background: rgba(255, 255, 255, .82);
        backdrop-filter: blur(24px);
        border: 1px solid rgba(255, 255, 255, .9);
        border-radius: 28px;
        padding: 44px 40px;
        box-shadow: 0 24px 60px rgba(154, 137, 195, .2);
        text-align: center;
        min-width: 360px;
        flex-shrink: 0
    }

    .cd-title {
        font-size: 14px;
        font-weight: 800;
        letter-spacing: 2px;
        color: var(--violet);
        text-transform: uppercase;
        margin-bottom: 26px
    }

    .cd-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        margin-bottom: 20px
    }

    .cd-item {
        border-radius: 16px;
        padding: 20px 8px;
    }

    .cd-num {
        font-size: 48px;
        font-weight: 900;
        color: var(--onyx);
        line-height: 1;
        display: block
    }

    .cd-lbl {
        font-size: 11px;
        font-weight: 800;
        color: #9b8fa8;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 6px;
        display: block
    }

    .cd-venue {
        font-size: 15px;
        color: #8b7a98;
        font-weight: 600
    }

    .cd-date {
        font-size: 14px;
        color: #b0a0c0;
        margin-top: 8px
    }

    /* SECTIONS */
    section {
        padding: 96px 48px
    }

    .si {
        max-width: 1200px;
        margin: 0 auto
    }

    .stag {
        display: inline-block;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--pink);
        background: rgba(232, 100, 155, .1);
        border-radius: 50px;
        padding: 6px 16px;
        margin-bottom: 14px
    }

    .stitle {
        font-size: clamp(28px, 3.5vw, 48px);
        font-weight: 900;
        letter-spacing: -1.5px;
        color: var(--onyx);
        line-height: 1.1;
        margin-bottom: 14px
    }

    .stitle .a {
        color: var(--blue)
    }

    .ssub {
        font-size: 17px;
        color: #7a6e86;
        max-width: 560px;
        line-height: 1.75;
        margin-bottom: 50px
    }

    /* PROGRAMA */
    #programa {
        background: linear-gradient(180deg, #f8f4ff 0%, #fff 100%)
    }

    .day-tabs {
        display: flex;
        gap: 16px;
        margin-bottom: 36px;
        flex-wrap: wrap
    }

    .day-tab {
        padding: 16px 32px;
        border-radius: 16px;
        cursor: pointer;
        font-weight: 800;
        font-size: 16px;
        transition: all .3s;
        border: 3px solid transparent;
        flex: 1;
        text-align: center;
        min-width: 200px
    }

    .day-tab.d1 {
        background: linear-gradient(135deg, var(--violet), var(--blue));
        color: white;
        box-shadow: 0 8px 24px rgba(127, 161, 235, .4)
    }

    .day-tab.d1.inactive {
        background: white;
        color: var(--violet);
        border-color: rgba(127, 161, 235, .3);
        box-shadow: none
    }

    .day-tab.d2 {
        background: linear-gradient(135deg, #e8649b, #9a89c3);
        color: white;
        box-shadow: 0 8px 24px rgba(232, 100, 155, .35)
    }

    .day-tab.d2.inactive {
        background: white;
        color: #c084a0;
        border-color: rgba(192, 132, 160, .3);
        box-shadow: none
    }

    .day-tab:hover {
        transform: translateY(-2px)
    }

    .prog-panel {
        display: none
    }

    .prog-panel.active {
        display: block
    }

    .pi {
        display: flex;
        gap: 0;
        margin-bottom: 12px;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 2px 12px rgba(154, 137, 195, .1);
        background: white;
        transition: all .2s
    }

    .pi:hover {
        transform: translateX(4px);
        box-shadow: 0 6px 20px rgba(154, 137, 195, .2)
    }

    .pi-time {
        min-width: 140px;
        padding: 16px 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        font-weight: 800;
        color: white;
        text-align: center;
        line-height: 1.3;
        flex-shrink: 0
    }

    .pi-body {
        padding: 16px 20px;
        flex: 1
    }

    .pi-title {
        font-weight: 800;
        font-size: 15px;
        color: var(--onyx);
        margin-bottom: 3px
    }

    .pi-sp {
        font-size: 13px;
        color: var(--violet);
        font-weight: 700
    }

    .pi-sub {
        font-size: 13px;
        color: #7a6e86;
        margin-top: 3px;
        line-height: 1.5
    }

    /* COMITE */
    #comite {
        background: white
    }

    .cg {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
        gap: 20px
    }

    .cc {
        background: var(--pale);
        border-radius: 20px;
        padding: 28px 18px;
        text-align: center;
        transition: all .3s;
        border: 2px solid transparent
    }

    .cc:hover {
        transform: translateY(-6px);
        border-color: var(--lilac);
        box-shadow: 0 16px 40px rgba(154, 137, 195, .2)
    }

    .cav {
        width: 68px;
        height: 68px;
        border-radius: 50%;
        margin: 0 auto 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        font-weight: 900;
        color: white
    }

    .cname {
        font-weight: 800;
        font-size: 15px;
        color: var(--onyx);
        margin-bottom: 4px
    }

    .crole {
        font-size: 12px;
        color: var(--violet);
        font-weight: 700;
        letter-spacing: .5px
    }

    #accesos {
        background: white
    }

    /* PONENTES CARRUSEL */
    #ponentes {}

    .carousel-wrap {
        position: relative;
        padding: 20px 0 40px;
        overflow: hidden
    }

    .carousel-track {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        transition: transform .5s cubic-bezier(.4, 0, .2, 1);
        position: relative;
        min-height: 480px
    }

    .sp-card {
        position: absolute;
        width: 280px;
        background: white;
        border-radius: 24px;
        overflow: hidden;
        transition: all .5s cubic-bezier(.4, 0, .2, 1);
        cursor: pointer;
        box-shadow: 0 8px 30px rgba(154, 137, 195, .15);
        border: 2px solid transparent;
    }

    .sp-card.center {
        position: relative;
        z-index: 10;
        transform: scale(1) translateX(0);
        box-shadow: 0 20px 60px rgba(154, 137, 195, .35);
        border-color: var(--lilac);
        animation: cardPop .45s cubic-bezier(.34, 1.56, .64, 1);
    }

    @keyframes cardPop {
        from {
            transform: scale(.9) translateX(0);
            opacity: .5
        }

        to {
            transform: scale(1) translateX(0);
            opacity: 1
        }
    }

    .carousel-wrap:hover .sp-card.center {
        box-shadow: 0 24px 72px rgba(154, 137, 195, .5);
    }

    .sp-card.left {
        transform: translateX(-310px) scale(0.82);
        z-index: 5;
        opacity: .75;
        filter: brightness(.92);
    }

    .sp-card.right {
        transform: translateX(310px) scale(0.82);
        z-index: 5;
        opacity: .75;
        filter: brightness(.92);
    }

    .sp-card.far-left {
        transform: translateX(-580px) scale(0.68);
        z-index: 1;
        opacity: .4;
        filter: brightness(.85);
    }

    .sp-card.far-right {
        transform: translateX(580px) scale(0.68);
        z-index: 1;
        opacity: .4;
        filter: brightness(.85);
    }

    .sp-card.hidden {
        opacity: 0;
        pointer-events: none;
        transform: translateX(0) scale(.5)
    }

    .sp-img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        display: block
    }

    .sp-ph {
        width: 100%;
        height: 260px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 52px;
        font-weight: 900;
        color: white
    }

    .sp-info {
        padding: 20px
    }

    .sp-name {
        font-weight: 900;
        font-size: 17px;
        color: var(--onyx);
        margin-bottom: 4px
    }

    .sp-alias {
        font-size: 13px;
        color: var(--violet);
        font-weight: 700;
        margin-bottom: 6px
    }

    .sp-flag {
        font-size: 18px
    }

    .sp-card.center .sp-info {
        padding: 24px
    }

    .sp-card.center .sp-name {
        font-size: 20px
    }

    .carousel-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 16px
    }

    .c-btn {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        border: none;
        cursor: pointer;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .3s;
        font-family: 'Onest', sans-serif
    }

    .c-btn.prev {
        background: white;
        color: var(--violet);
        box-shadow: 0 4px 16px rgba(154, 137, 195, .25);
        border: 2px solid rgba(154, 137, 195, .25)
    }

    .c-btn.next {
        background: linear-gradient(135deg, var(--violet), var(--blue));
        color: white;
        box-shadow: 0 4px 16px rgba(127, 161, 235, .4)
    }

    .c-btn:hover {
        transform: scale(1.1)
    }

    .c-dots {
        display: flex;
        gap: 8px
    }

    .c-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--lilac);
        transition: all .3s;
        cursor: pointer
    }

    .c-dot.active {
        background: var(--violet);
        width: 24px;
        border-radius: 4px
    }

    /* MODAL PONENTE */
    .mo {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 2000;
        background: rgba(30, 20, 50, .6);
        backdrop-filter: blur(10px);
        align-items: center;
        justify-content: center;
        padding: 20px
    }

    .mo.active {
        display: flex
    }

    .mbox {
        background: white;
        border-radius: 28px;
        max-width: 650px;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        padding: 40px;
        position: relative;
        animation: mIn .32s cubic-bezier(.34, 1.56, .64, 1);
        box-shadow: 0 40px 100px rgba(30, 20, 50, .3)
    }

    @keyframes mIn {
        from {
            opacity: 0;
            transform: scale(.85) translateY(20px)
        }

        to {
            opacity: 1;
            transform: scale(1) translateY(0)
        }
    }

    .mcl {
        position: absolute;
        top: 18px;
        right: 18px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--pale);
        border: none;
        cursor: pointer;
        font-size: 17px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .2s;
        color: var(--onyx)
    }

    .mcl:hover {
        background: var(--lilac);
        color: white
    }

    .mh {
        display: flex;
        gap: 22px;
        align-items: flex-start;
        margin-bottom: 24px
    }

    .mav {
        width: 88px;
        height: 88px;
        border-radius: 50%;
        flex-shrink: 0;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(154, 137, 195, .3)
    }

    .mav img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

    .mav-ph {
        width: 88px;
        height: 88px;
        border-radius: 50%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        font-weight: 900;
        color: white
    }

    .mname {
        font-size: 23px;
        font-weight: 900;
        color: var(--onyx);
        margin-bottom: 4px
    }

    .malias {
        font-size: 14px;
        color: var(--violet);
        font-weight: 700;
        margin-bottom: 6px
    }

    .mcred {
        font-size: 14px;
        font-weight: 700;
        color: var(--pink);
        margin-bottom: 14px;
        line-height: 1.55
    }

    .mbio {
        font-size: 14px;
        color: #6b6170;
        line-height: 1.85;
        margin-bottom: 8px
    }

    .mtt {
        font-size: 14px;
        font-weight: 800;
        color: var(--onyx);
        margin-bottom: 10px
    }

    .ttag {
        display: inline-block;
        background: linear-gradient(135deg, rgba(154, 137, 195, .12), rgba(127, 161, 235, .12));
        border: 1px solid rgba(154, 137, 195, .3);
        border-radius: 50px;
        padding: 6px 14px;
        font-size: 12px;
        font-weight: 700;
        color: var(--violet);
        margin: 4px;
        transition: all .2s;
        cursor: default
    }

    .ttag:hover {
        background: linear-gradient(135deg, var(--violet), var(--blue));
        color: white;
        border-color: transparent
    }

    /* LUGAR */
    #lugar {
        background: linear-gradient(135deg, #f8f4ff 0%, #fff5f9 100%)
            /* background-color: #fff */
        ;
    }

    .vg {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center
    }

    .vname {
        font-size: 30px;
        font-weight: 900;
        color: var(--onyx);
        margin-bottom: 8px
    }

    .vaddr {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #7a6e86;
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 22px
    }

    .vf {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 13px;
        margin-bottom: 28px
    }

    .vfi {
        display: flex;
        align-items: center;
        gap: 12px;
        background: white;
        border-radius: 14px;
        padding: 12px 14px;
        box-shadow: 0 2px 12px rgba(154, 137, 195, .1)
    }

    .vfi-ic {
        font-size: 20px
    }

    .vfi-tx {
        font-size: 13px;
        font-weight: 700;
        color: var(--onyx)
    }

    .vmap {
        border-radius: 24px;
        overflow: hidden;
        aspect-ratio: 4/3;
        box-shadow: 0 20px 60px rgba(154, 137, 195, .2)
    }

    .vmap iframe {
        width: 100%;
        height: 100%;
        border: none
    }

    /* HOTELES */
    #hoteles {
        background: white
    }

    .hg {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
        gap: 24px
    }

    .hcard {
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 8px 28px rgba(154, 137, 195, .1);
        transition: all .3s;
        border: 2px solid transparent;
        background: white
    }

    .hcard:hover {
        transform: translateY(-8px);
        border-color: var(--lilac);
        box-shadow: 0 20px 48px rgba(154, 137, 195, .22)
    }

    .hh {
        padding: 26px 22px 18px;
        color: white;
        position: relative
    }

    .hbadge {
        position: absolute;
        top: 13px;
        right: 13px;
        background: rgba(255, 255, 255, .22);
        backdrop-filter: blur(8px);
        border-radius: 50px;
        padding: 4px 12px;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 1px
    }

    .hname {
        font-size: 19px;
        font-weight: 900;
        margin-bottom: 5px
    }

    .htype {
        font-size: 13px;
        opacity: .85
    }

    .hbody {
        padding: 18px 22px 22px
    }

    .hdist {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--violet);
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 14px
    }

    .hams {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 16px
    }

    .ham {
        background: var(--pale);
        border-radius: 50px;
        padding: 5px 12px;
        font-size: 12px;
        font-weight: 700;
        color: var(--violet)
    }

    .hcta {
        width: 100%;
        padding: 12px;
        background: var(--pale);
        border: 2px solid rgba(154, 137, 195, .3);
        border-radius: 12px;
        color: var(--violet);
        font-weight: 800;
        font-size: 14px;
        cursor: pointer;
        transition: all .2s;
        font-family: 'Onest', sans-serif;
        text-decoration: none;
        display: block;
        text-align: center
    }

    .hcta:hover {
        background: linear-gradient(135deg, var(--violet), var(--blue));
        color: white;
        border-color: transparent
    }

    /* CONTACTO */
    #contacto {
        background: linear-gradient(135deg, var(--onyx) 0%, #2a1f3d 100%);
        color: white
    }

    #contacto .stag {
        color: var(--sunset);
        background: rgba(253, 199, 123, .15)
    }

    #contacto .stitle {
        color: white
    }

    #contacto .ssub {
        color: rgba(255, 255, 255, .58)
    }

    .ctg {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 70px;
        align-items: start
    }

    .fg {
        margin-bottom: 18px
    }

    .fg label {
        display: block;
        font-size: 13px;
        font-weight: 700;
        color: rgba(255, 255, 255, .68);
        letter-spacing: .5px;
        margin-bottom: 7px
    }

    .fg input,
    .fg select,
    .fg textarea {
        width: 100%;
        padding: 13px 17px;
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .15);
        border-radius: 12px;
        color: white;
        font-size: 14px;
        font-family: 'Onest', sans-serif;
        transition: all .2s;
        outline: none
    }

    .fg input:focus,
    .fg select:focus,
    .fg textarea:focus {
        border-color: var(--blue);
        background: rgba(255, 255, 255, .12);
        box-shadow: 0 0 0 3px rgba(127, 161, 235, .2)
    }

    .fg input::placeholder,
    .fg textarea::placeholder {
        color: rgba(255, 255, 255, .33)
    }

    .fg select option {
        background: var(--onyx)
    }

    .fg textarea {
        resize: none;
        height: 94px
    }

    .fbtn {
        width: 100%;
        padding: 15px;
        background: linear-gradient(135deg, var(--pink), var(--violet));
        border: none;
        border-radius: 12px;
        color: white;
        font-size: 16px;
        font-weight: 800;
        cursor: pointer;
        transition: all .3s;
        font-family: 'Onest', sans-serif;
        box-shadow: 0 8px 28px rgba(232, 100, 155, .4)
    }

    .fbtn:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 40px rgba(232, 100, 155, .5)
    }

    .cii {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px
    }

    .cic {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        background: rgba(255, 255, 255, .1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        flex-shrink: 0
    }

    .cit h4 {
        font-weight: 800;
        font-size: 15px;
        color: white;
        margin-bottom: 4px
    }

    .cit p {
        font-size: 14px;
        color: rgba(255, 255, 255, .58);
        line-height: 1.55
    }

    .slinks {
        display: flex;
        gap: 12px;
        margin-top: 26px
    }

    .slink {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: rgba(255, 255, 255, .1);
        border: 1px solid rgba(255, 255, 255, .15);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all .2s;
        cursor: pointer;
        text-decoration: none
    }

    .slink:hover {
        background: linear-gradient(135deg, var(--pink), var(--violet));
        border-color: transparent;
        transform: translateY(-3px)
    }

    /* FOOTER */
    footer {
        background: #978bc7;
        padding: 36px 48px;
        text-align: center;
        color: rgba(255, 255, 255, .4);
        font-size: 13px;
        font-weight: 600
    }

    footer img {
        height: 36px;
        object-fit: contain;
        margin-bottom: 14px;
        mix-blend-mode: screen;
        opacity: 1
    }

    footer strong {
        color: rgba(255, 255, 255, .72)
    }

    /* WAVE */
    .wsep {
        overflow: hidden;
        line-height: 0
    }

    .wsep svg {
        display: block
    }

    /* REVEAL */
    .rv {
        opacity: 0;
        transform: translateY(26px);
        transition: opacity .6s ease, transform .6s ease
    }

    .rv.vis {
        opacity: 1;
        transform: translateY(0)
    }

    /* REGISTRO MODAL */
    .rm {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 3000;
        background: rgba(22, 13, 40, .82);
        backdrop-filter: blur(14px);
        align-items: center;
        justify-content: center;
        padding: 20px
    }

    .rm.active {
        display: flex
    }

    .ri {
        background: white;
        border-radius: 32px;
        max-width: 510px;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        padding: 44px;
        animation: mIn .38s cubic-bezier(.34, 1.56, .64, 1);
        box-shadow: 0 40px 100px rgba(22, 13, 40, .4);
        position: relative
    }

    .rh {
        text-align: center;
        margin-bottom: 30px
    }

    .rh h2 {
        font-size: 25px;
        font-weight: 900;
        color: var(--onyx);
        margin-bottom: 8px
    }

    .rh p {
        color: #9b8fa8;
        font-size: 15px
    }

    .po {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 13px;
        margin-bottom: 24px
    }

    .popt {
        border: 2px solid var(--pale);
        border-radius: 16px;
        padding: 20px;
        cursor: pointer;
        transition: all .2s;
        text-align: center
    }

    .popt.sel,
    .popt:hover {
        border-color: var(--blue);
        background: rgba(127, 161, 235, .06)
    }

    .popt h4 {
        font-weight: 800;
        font-size: 14px;
        margin-bottom: 4px
    }

    .popt .pr {
        font-size: 22px;
        font-weight: 900;
        color: var(--violet)
    }

    .popt .pn {
        font-size: 11px;
        color: #9b8fa8;
        font-weight: 600
    }

    .steps {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-bottom: 26px
    }

    .step {
        width: 32px;
        height: 4px;
        border-radius: 2px;
        background: var(--pale)
    }

    .step.on {
        background: linear-gradient(90deg, var(--pink), var(--violet))
    }

    .rff .fg label {
        color: #7a6e86
    }

    .rff .fg input,
    .rff .fg select {
        background: var(--pale);
        border: 2px solid transparent;
        color: var(--onyx)
    }

    .rff .fg input:focus,
    .rff .fg select:focus {
        border-color: var(--blue);
        background: white;
        box-shadow: 0 0 0 3px rgba(127, 161, 235, .15)
    }

    .rff .fg input::placeholder {
        color: #bbb
    }

    .rrow {
        display: flex;
        gap: 12px
    }

    .rbk {
        flex: 1;
        padding: 13px;
        background: var(--pale);
        border: none;
        border-radius: 12px;
        color: var(--violet);
        font-size: 15px;
        font-weight: 800;
        cursor: pointer;
        font-family: 'Onest', sans-serif;
        transition: all .2s
    }

    .rbk:hover {
        background: var(--lilac);
        color: white
    }

    .rnx {
        flex: 2;
        padding: 13px;
        background: linear-gradient(135deg, var(--pink), var(--violet));
        border: none;
        border-radius: 12px;
        color: white;
        font-size: 15px;
        font-weight: 800;
        cursor: pointer;
        font-family: 'Onest', sans-serif;
        transition: all .3s;
        box-shadow: 0 6px 20px rgba(232, 100, 155, .35)
    }

    .rnx:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(232, 100, 155, .45)
    }

    .rok {
        text-align: center;
        padding: 20px 0
    }

    .rok .ck {
        font-size: 66px;
        margin-bottom: 18px;
        display: block
    }

    .rok h3 {
        font-size: 25px;
        font-weight: 900;
        color: var(--onyx);
        margin-bottom: 12px
    }

    .rok p {
        color: #9b8fa8;
        font-size: 15px;
        line-height: 1.7
    }

    #galeria {
        background-color: #fff;
    }

    .parent {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
        grid-template-rows: repeat(8, 100px);
        gap: 8px;
    }

    .div1 {
        grid-column: span 2 / span 2;
        grid-row: span 3 / span 3;
    }

    .div2 {
        grid-column: span 2 / span 2;
        grid-row: span 2 / span 2;
        grid-column-start: 3;
    }

    .div3 {
        grid-column: span 4 / span 4;
        grid-row: span 2 / span 2;
        grid-column-start: 5;
    }

    .div4 {
        grid-column: span 2 / span 2;
        grid-row: span 3 / span 3;
        grid-column-start: 1;
        grid-row-start: 4;
    }

    .div5 {
        grid-column: span 4 / span 4;
        grid-row: span 2 / span 2;
        grid-column-start: 1;
        grid-row-start: 7;
    }

    .div6 {
        grid-column: span 2 / span 2;
        grid-row: span 4 / span 4;
        grid-column-start: 3;
        grid-row-start: 3;
    }

    .div7 {
        grid-column: span 2 / span 2;
        grid-row: span 3 / span 3;
        grid-column-start: 5;
        grid-row-start: 3;
    }

    .div8 {
        grid-column: span 2 / span 2;
        grid-row: span 2 / span 2;
        grid-column-start: 7;
        grid-row-start: 3;
    }

    .div9 {
        grid-column: span 2 / span 2;
        grid-row: span 4 / span 4;
        grid-column-start: 7;
        grid-row-start: 5;
    }

    .div10 {
        grid-column: span 2 / span 2;
        grid-row: span 3 / span 3;
        grid-column-start: 5;
        grid-row-start: 6;
    }

    .border-galery img {
        border-radius: 11px;
    }

    .parent img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .parent-responsive {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(8, 100px);
        gap: 15px;
    }

    .parent-responsive img {
        border-radius: 15px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .div-responsive1 {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        grid-row: span 2 / span 2;
    }

    .div-responsive3 {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        grid-column-start: 1;
        grid-row-start: 3;
    }

    .div-responsive4 {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        grid-column: span 2 / span 2;
        grid-row: span 2 / span 2;
        grid-column-start: 1;
        grid-row-start: 4;
    }

    .div-responsive5 {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        grid-row: span 3 / span 3;
        grid-column-start: 1;
        grid-row-start: 6;
    }

    .div-responsive6 {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        grid-row: span 2 / span 2;
        grid-column-start: 2;
        grid-row-start: 6;
    }

    .div-responsive7 {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        grid-column-start: 2;
        grid-row-start: 8;
    }

    .div-responsive13 {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        grid-row: span 2 / span 2;
        grid-column-start: 2;
        grid-row-start: 9;
    }

    .div-responsive14 {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        grid-column-start: 1;
        grid-row-start: 9;
    }

    .div-responsive15 {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        grid-column-start: 1;
        grid-row-start: 10;
    }

    .div-responsive16 {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        grid-column-start: 2;
        grid-row-start: 1;
    }

    .div-responsive17 {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        grid-row: span 2 / span 2;
        grid-column-start: 2;
        grid-row-start: 2;
    }

    .gallery-responsive {
        display: none;
    }

    @media (max-width: 767px) {
        .gallery-responsive {
            display: block;
        }

        .gallery {
            display: none;
        }
    }

    .frame-plano {
        background: #ffffff;
        border: 2px solid #e0e0e0;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
    }

    .frame-body {
        padding: 15px;
        background: #ffffff;
    }

    .btn-dwn {
        width: 100%;
        gap: 8px;
        background: linear-gradient(135deg, var(--pink), var(--violet));
        color: white;
        border: none;
        padding: 15px 30px;
        font-size: 16px;
        font-weight: 800;
        border-radius: 55px;
        text-decoration: none;
        font-family: 'Onest', sans-serif;
        box-shadow: 0 8px 28px rgba(232, 100, 155, .4);
        cursor: pointer;
        transition: all .2s;
        font-family: 'Onest', sans-serif;
        text-decoration: none;
        display: block;
        text-align: center
    }

    .hcta-p {
        width: 100%;
        padding: 12px;
        background: var(--pale);
        border: 2px solid rgba(154, 137, 195, .3);
        border-radius: 55px;
        color: var(--violet);
        font-weight: 800;
        font-size: 14px;
        cursor: pointer;
        transition: all .2s;
        font-family: 'Onest', sans-serif;
        text-decoration: none;
        display: block;
        text-align: center
    }

    .hcta-p:hover {
        background: linear-gradient(135deg, var(--violet), var(--blue));
        color: white;
        border-color: transparent
    }

    .contact-links {
        color: #7a6e86;
        text-decoration: none;
        display: flex;
        vertical-align: center;
        align-items: center;
        line-height: 1;
        max-width: 240px;
        gap: .4rem;
    }

    .contact-links span {
        line-height: 1;
        font-size: 28px;
        display: inline-block;
    }

    .video-container {
        position: relative;
        width: 100%;
        max-width: 1300px;
        margin: auto;
        cursor: pointer;
    }

    .video-container video {
        width: 100%;
        display: block;
    }

    .cover {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: contain;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.3s ease;
    }

    .cover button {
        background: rgba(0, 0, 0, 0.6);
        border: none;
        color: white;
        font-size: 2rem;
        padding: 20px;
        border-radius: 50%;
        cursor: pointer;
        transition: background 0.3s;
    }

    .cover button:hover {
        background: rgba(0, 0, 0, 0.8);
    }

    .cover.hidden {
        opacity: 0;
        pointer-events: none;
    }

    .tipo-stand {
        font-weight: bold;
        font-size: 0.9rem;
        color: #7a6e86;
    }

    .stands-card {
        background: rgb(255, 255, 255);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        width: 100%;
        backdrop-filter: blur(12px);
        box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
    }

    .next-price-box {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 25px;
        padding: 8px 15px;
        display: inline-flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .proximo-precio {
        font-size: 0.75rem;
        opacity: 0.6;
        text-transform: uppercase;
    }

    .proxima-cantidad {
        font-weight: 700;
        color: var(--pale);
        font-size: 16px;
    }

    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 100;
    }

    .whatsapp-float a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60px;
        height: 60px;
        background-color: #4ac959;
        font-size: 22px;
        border-radius: 100px;
        color: #FFFFFF;
    }

    @media screen and (max-width:910px) and (min-width:901px) {

        .nav-links a,
        .nav-cta {
            font-size: 12px;
        }
    }

    .btn-postulacion {
        background: linear-gradient(135deg, var(--violet), var(--blue));
        color: white;
        border: none;
        border-radius: 50px;
        padding: 14px 45px;
        font-size: 15px;
        font-weight: 800;
        cursor: pointer;
        transition: all .3s;
        font-family: 'Onest', sans-serif;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(127, 161, 235, .4)
    }

    .btn-postulacion:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(127, 161, 235, .5)
    }

    .slide-banner-copein .title {
        color: var(--pink);
        font-weight: 900;
        font-size: 6rem;
    }

    .slide-banner-copein .img-price {
        height: 36px;
    }

    .slide-banner-copein {
        min-height: calc(100vh - 20vh);
        position: relative;
        overflow: hidden;
        display: flex !important;
        align-items: center;
        justify-content: center;
        text-align: center;
        /* padding: 120px 48px 80px; */
        background-image: url(/img/Banner-Postulaciones-desktop.png);
        background-position: center;
        background-size: cover;
        overflow: hidden;
    }

    .banner-content {
        max-width: 800px;
    }

    .title-banner {
        font-weight: 700;
        color: var(--pink);
        font-size: 4.4rem;
        margin-bottom: 0px;
        line-height: 0.5;
    }

    .subtitle-banner {
        font-weight: 900;
        display: block;
        font-size: 7rem;
        letter-spacing: -2px;
        color: var(--pink);
    }

    .banner-text {
        color: var(--onyx);
        font-size: 2rem;
        line-height: 1.4;
        font-weight: 500;
        max-width: 90%;
        margin: 0 auto;
    }

    /* .slide-banner-copein {
        width: 100%;
        min-height: 80vh;
        min-height: 80dvh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        background-image: url(assets/img/bg-promo.png);
        background-position: center;
        background-size: cover;
        overflow: hidden;
    }

    .banner-content {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        display: flex !important;
        align-items: center;
        gap: 72px;
        position: relative;
    } */

    /* .title-banner {
        font-weight: 700;
        color: var(--pink);
        font-size: 4.4rem;
        margin-bottom: 0px;
        line-height: 0.5;
    }

    .subtitle-banner {
        font-weight: 900;
        display: block;
        font-size: 7rem;
        letter-spacing: -2px;
        color: var(--pink);
    }

    .banner-text {
        color: var(--onyx);
        font-size: 2rem;
        line-height: 1.2;
        font-weight: 500;
        max-width: 90%;
        margin-bottom: 0px !important;
    } */

    .swiper-pagination {
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(10px);
        border-radius: 50px;
        width: auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        padding: 8px 15px;
        display: flex;
        align-items: center;
        gap: 10px;
        bottom: 30px !important;
    }

    .swiper-pagination-bullet {
        width: 66px !important;
        height: 66px !important;
        background: transparent !important;
        border-radius: 12px !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        opacity: 0.5;
        transition: all 0.3s ease;
        margin: 0 !important;
    }

    .swiper-pagination-bullet-active {
        opacity: 1;
        color: var(--azure);
    }

    .swiper-pagination::after {
        content: "";
        height: 2px;
        width: 15px;
        background: var(--azure);
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }


    .promo-card {
        background: rgba(255, 255, 255, .82);
        backdrop-filter: blur(24px);
        border: 1px solid rgba(255, 255, 255, .9);
        border-radius: 28px;
        padding: 44px 40px;
        box-shadow: 0 24px 60px rgba(154, 137, 195, .2);
        text-align: center;
        min-width: 360px;
        flex-shrink: 0;
    }

    .promo-badge {
        background: linear-gradient(135deg, var(--pink), var(--violet));
        color: white;
        font-size: 0.7rem;
        font-weight: 800;
        padding: 5px 15px;
        border-radius: 50px;
        display: inline-block;
        margin-bottom: 15px;
        letter-spacing: 1px;
        text-transform: uppercase;
        box-shadow: 0 8px 28px rgba(232, 100, 155, .4);
    }

    #accesos .card.card01 .card-head {
        background: linear-gradient(135deg, #9a89c3, #7fa1eb);
    }

    #accesos .card.card02 .card-head {
        background: linear-gradient(135deg, #e8649b, #fdc77b);
    }

    #accesos .card.card03 .card-head {
        background: linear-gradient(135deg, #aaca83, #67b9c2);
    }

    #accesos .card.card02 a {
        background: linear-gradient(135deg, #e8649b, #fdc77b);
    }

    #accesos .card.card03 a {
        background: linear-gradient(135deg, #aaca83, #67b9c2);
        box-shadow: 0px 0px 33px 0px rgba(103, 185, 194, 0.4);
    }

    #accesos .card .card-head {
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
        color: #fff;
        text-align: center;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    #accesos .card .card-head,
    #accesos .card .card-body {
        padding: 20px 28px;
    }

    #accesos .card {
        border-radius: 24px;
        height: 100%;
        min-height: 480px;
        margin-bottom: 20px;
    }

    #accesos .card-head h2 {
        font-weight: 500;
        font-size: 20px;
        line-height: 1;
        margin-bottom: 0;
    }

    #accesos .card-head p {
        font-size: 60px;
        line-height: 1;
        font-weight: 900;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: .07rem;
        margin-bottom: 0;
    }

    .next-price-box {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 25px;
        padding: 8px 15px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 10px;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    #accesos .card .card-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 32px;
    }

    #accesos .card .card-head,
    #accesos .card .card-body {
        padding: 20px 28px;
    }

    #accesos .card .card-body h5 {
        text-align: center;
        font-weight: 700;
        color: var(--text);
    }

    #accesos .card .card-body ul {
        color: var(--text);
    }

    #accesos .card .card-body a {
        margin-top: auto;
    }

    #accesos .card.card01 a {
        background: linear-gradient(135deg, #9a89c3, #7fa1eb);
        box-shadow: 0 8px 28px rgba(100, 131, 232, 0.4);
    }

    .d-rwd {
        display: none;
    }

    @media (max-width: 1400px) {
        .hero-sub {
            margin-bottom: 18px;
        }

        .hero-date {
            margin-bottom: 18px;
            font-size: 13px;
        }

        .hero-title {
            font-size: 44px;
        }

        .hero-logo-img {
            margin-bottom: 12px;
        }

        .hero-badge {
            margin-bottom: 12px;
        }

        #inicio {
            padding: 0px 24px 0px 24px;
        }

        .btn-p {
            padding: 10px 30px;
            font-size: 14px;
        }
    }

    @media (max-width: 1040px) {
        nav {
            padding: 12px 24px
        }

        .nav-links {
            display: none
        }

        .hamburger {
            display: flex
        }
    }

    @media (max-width: 1000px) {
        .title-banner {
            font-size: 2.5rem;
        }

        .subtitle-banner {
            font-size: 4.5rem;
        }

        .banner-text {
            font-size: 1.5rem;
        }

        .slide-banner-copein {
            height: auto;
        }

        .btn-postulacion {
            font-size: 20px;
        }

        .banner-content {
            display: flex !important;
            flex-direction: column;
            padding: 0px 0px;
            text-align: center;
        }
    }

    @media(max-width:900px) {
        section {
            padding: 72px 24px
        }

        #inicio {
            padding: 0px 24px 0px 24px
        }

        .hero-inner {
            flex-direction: column;
            gap: 18px;
            align-items: normal;
        }

        .cd-card {
            min-width: unset;
            width: 100%
        }

        .vg,
        .ctg {
            grid-template-columns: 1fr;
            gap: 36px
        }

        .po {
            grid-template-columns: 1fr
        }

        .sp-card.left,
        .sp-card.far-left {
            transform: translateX(-220px) scale(.8)
        }

        .sp-card.right,
        .sp-card.far-right {
            transform: translateX(220px) scale(.8)
        }
        
        .swiper-pagination {
            top: 85px !important;
            bottom: inherit !important;
        }

        .swiper-pagination-bullet {
            width: 33px !important;
            height: 33px !important;
        }

        .swiper-pagination-bullet svg {
            width: 28px !important;
            height: 28px !important;
        }

        .cd-card {
            padding: 20px;
        }

        .cd-title {
            margin-bottom: 0px;
        }

        .cd-grid {
            margin-bottom: 0px;
        }

        .cd-date {
            margin-bottom: 0px;
        }

        .cd-venue {
            margin-bottom: 0px;
        }

        .cd-item {
            padding: 12px 8px;
        }

        .cd-num {
            font-size: 38px;
        }
    }

    @media screen and (max-width:900px) {

        .banner-content {
            justify-content: center;
            text-align: center;
        }

        .slide-banner-copein .title {
            font-size: 3rem;
        }

        .slide-banner-copein .promo-card {
            max-width: 489px;
        }

        .hero-logo-img {
            height: 40px;
            bottom: 10px;
        }

        .slide-banner-copein .img-price {
            height: 26px;
        }

        .hero-sub {
            font-size: 14px;
        }
    }

    @media screen and (min-width:768px) {
        .d-rwd {
            display: inline;
        }
    }

    @media (max-height: 804px) {
        .title-banner {
            font-size: 2rem;
        }

        .subtitle-banner {
            font-size: 4rem;
        }

        .banner-text {
            font-size: 1.3rem;
        }
    }

    @media (max-width: 708px) {
        .title-banner {
            line-height: 1;
        }
        .swiper-pagination {
            top: 20px !important;
            bottom: inherit !important;
        }

        .hero-date {
            margin-bottom: 14px;
        }

        .hero-sub {
            margin-bottom: 20px;
        }

        .hero-badge {
            margin-bottom: 12px;
        }

        .hero-logo-img {
            margin-bottom: 12px;
        }

        .cd-title {
            font-size: 12px;
            margin-bottom: 0px;
        }

        .cd-card {
            padding: 20px;
        }

        .cd-num {
            font-size: 28px;
        }

        .cd-venue {
            font-size: 14px;
        }

        .cd-date {
            font-size: 12px;
            margin-bottom: 0px;
        }

        .cd-grid {
            margin-bottom: 0px;
        }

        .cd-item {
            padding: 10px 8px;
        }
    }

    @media(max-width:580px) {
        .cg {
            grid-template-columns: repeat(2, 1fr)
        }

        .ri {
            padding: 28px 20px
        }

        .sp-card {
            width: 240px
        }

        .sp-card.left,
        .sp-card.far-left {
            transform: translateX(-180px) scale(.78)
        }

        .sp-card.right,
        .sp-card.far-right {
            transform: translateX(180px) scale(.78)
        }

        #inicio {
            padding: 90px 24px 25px;
        }
    }
    
    @media (max-width: 560px) {
        .title-banner {
            font-size: 1.8rem;
        }

        .subtitle-banner {
            font-size: 3rem;
        }

        .banner-text {
            font-size: 1.1rem;
        }

        .btn-postulacion {
            background: linear-gradient(135deg, var(--violet), var(--blue));
            color: white;
            border: none;
            border-radius: 50px;
            padding: 12px 33px;
            font-size: 16px;
            font-weight: 800;
            cursor: pointer;
            transition: all .3s;
            font-family: 'Onest', sans-serif;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(127, 161, 235, .4)
        }

        .cd-num {
            font-size: 36px;
        }

        .banner-content {
            padding: 0px 10px;
        }

        .hero-inner {
            gap: 20px;
        }

        .title-banner {
            line-height: 1;
        }

        .hero-title {
            font-size: 28px;
        }

        .hero-date {
            margin-bottom: 16px;
        }

        .hero-sub {
            margin-bottom: 16px;
        }

        .hero-badge {
            margin-bottom: 12px;
            font-size: 10px;
        }

        .hero-logo-img {
            margin-bottom: 12px;
        }

        .cd-title {
            font-size: 12px;
            margin-bottom: 0px;
        }

        .cd-card {
            padding: 20px;
        }

        .cd-num {
            font-size: 28px;
        }

        .cd-venue {
            font-size: 14px;
        }

        .cd-date {
            font-size: 12px;
            margin-bottom: 0px;
        }

        .cd-grid {
            margin-bottom: 0px;
        }

        .cd-item {
            padding: 10px 8px;
        }

        .btn-p {
            font-size: 13px;
            padding: 12px 30px;
        }
    }

    @media (max-width: 376px) {
        .hero-date {
            font-size: 13px;
        }

        .hero-inner {
            gap: 20px;
        }

        .title-banner {
            line-height: 1;
        }

        .hero-date {
            margin-bottom: 16px;
        }

        .hero-sub {
            margin-bottom: 16px;
        }

        .hero-badge {
            margin-bottom: 12px;
        }

        .hero-logo-img {
            margin-bottom: 12px;
        }

        .cd-title {
            font-size: 12px;
            margin-bottom: 0px;
        }

        .cd-card {
            padding: 20px;
        }

        .cd-num {
            font-size: 28px;
        }

        .cd-venue {
            font-size: 14px;
        }

        .cd-date {
            font-size: 12px;
            margin-bottom: 0px;
        }

        .cd-grid {
            margin-bottom: 0px;
        }

        .cd-item {
            padding: 10px 8px;
        }

        .swiper-pagination {
            top: 94px !important;
        }
    }