        :root {
            --violet: #9a89c3;
            --blue: #7fa1eb;
            --pink: #e8649b;
            --green: #aaca83;
            --teal: #67b9c2;
            --sunset: #fdc77b;
            --onyx: #434142;
            --lilac: #baaed6;
            --pale: #f5f0ff;
            --azure: #5280E4;
            --purple-bg: #E9DEFF;
            --text: #7A6E86;
            --white: #fff;
            --border: #D2D2D2;
            --bg-input: #F5F5F5;
            --bg-lila: #FDFAFF;
            --border-p: #D5C8FF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            line-height: 140%;
        }

        html {
            scroll-behavior: smooth
        }

        body {
            font-family: 'Onest', sans-serif;
            color: var(--text);
            background: #ffffff;
            overflow-x: hidden
        }

        section {
            padding-top: 100px;
            padding-bottom: 100px;
        }

        /*////////////////////////////////////////// NAV //////////////////////////////////////////*/
        nav {
            position: fixed;
            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 //////////////////////////////////////////*/

        .title-header {
            color: var(--onyx);
            font-weight: 800;
            font-size: 2.5rem;
            line-height: 1.2;
        }

        .title {
            color: var(--blue);
            font-size: 3.5rem;
            display: block;
            text-transform: uppercase;
        }

        .hero-section {
            /* clip-path: polygon(0% 0%, 100% 0%, 100% 75.75%, 85.25% 87%, 68.7% 93.25%, 51.12% 95.34%, 33.55% 93.25%, 16.75% 87%, 0% 75.75%);
        background-color: var(--pale); */
            /* background-image: url(/img/postulaciones/bg-pale.png); */
            background-color: var(--pale);
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            padding: 100px;
            margin: 0px;
        }

        /*////////////////////////////////////////// OBJETIVO //////////////////////////////////////////*/

        .subtitle {
            color: var(--pink);
            font-weight: 700;
        }

        .flag-p {
            color: var(--pink) !important;
        }

        .bg-sect {
            background-color: #F8F9FA;
        }

        .circle-sec {
            border-radius: 100% !important;
        }

        @import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

        :root {
        --color-1: #47A6B1;
        --color-2: #5280E4;
        --color-3: #8BCAD1;
        --color-4: #8FB95C;
        --color-5: #9AB5EF;
        --color-6: #C5DBAA;
        --color-7: #F16448;
        --color-8: #FAC6BB;
        }

        .participantes-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .section-title {
            color: var(--pink); 
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 40px;
            text-align: center;
        }

        .cards-container {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            max-width: 1100px;
            justify-content: center;
        }

        .participant-card {
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 20px;
            width: calc(33.333% - 16px);
            min-width: 300px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.082);
            backdrop-filter: blur(8px);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .participant-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.302);
        }

        .icon-wrapper {
            width: 55px;
            height: 55px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .card-text {
            color: var(--text-main);
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0;
        }

        .card-teachers, .card-directors {
            width: calc(50% - 12px);
            max-width: 450px;
        }

        .card-designers .icon-wrapper {
            background: #FEE7C5;
            color: #FCAD3D;
        }
        .card-designers:hover {
            border-color: var(--color-1);
        }

        .card-professionals .icon-wrapper {
            background: #AEDADF;
            color: #47A6B1;
        }
        .card-professionals:hover {
        border-color: var(--color-2);
        }

        .card-researchers .icon-wrapper {
            background: #D6E6C4;
            color: #8FB95C;
        }
        .card-researchers:hover {
        border-color: var(--color-4);
        }

        .card-teachers .icon-wrapper {
            background: #AEC4F2;
            color: #5280E4;
        }
        
        .card-teachers:hover {
            border-color: var(--color-2);
        }

        .card-directors .icon-wrapper {
            background: #FBD1C9;
            color: #F16448;
        }
        .card-directors:hover {
            border-color: var(--color-7);
        }

        @media (max-width: 992px) {
            .participant-card {
                width: calc(50% - 12px);
            }
        }

        @media (max-width: 640px) {
            .participant-card, .card-teachers, .card-directors {
                width: 100%;
                max-width: 100%;
            }
        }

        .btn-custom-outline {
            border: 2px solid #e8649b;
            color: #e8649b;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-custom-outline:hover {
            background-color: #e8649b;
            color: white;
        }

        .eje-badge-number {
            font-size: 2rem;
            font-weight: 800;
            opacity: 0.25;
            color: #e8649b;
            line-height: 1;
        }
        
        .bg-lila-soft {
            background-color: #f4f0fa;
        }

        /*////////////////////////////////////////// CATEGORIAS //////////////////////////////////////////*/

        .card {
            background: linear-gradient(135deg, #67B9C2, #AACA83);
            border: 1px solid;
            border-radius: 25px;
            color: #fff;
            padding: 20px;
            transition: 0.3s;
            height: 330px;
            max-height: 330px !important;
        }

        .card img {
            margin: 10px 0px;
            width: 140px;
        }

        .card h3 {
            font-weight: 700;
        }

        .card:hover {
            border: 3px solid var(--lilac);
            transform: translateY(-20px);
        }

        .btn-links {
            color: var(--azure);
        }

        /*////////////////////////////////////////// QUIENES PARTICIPAN //////////////////////////////////////////*/

        .bg-lila {
            background-color: var(--bg-lila);
            padding: 50px 0px;
        }

        .card-criterios {
            background-color: var(--purple-bg);
            border: 3px solid var(--azure);
            border-radius: 25px;
            color: #fff;
            padding: 20px;
        }

        .card-criterios p {
            color: var(--azure);
        }

        .card-criterios img {
            margin: 10px 0px;
            width: 140px;
        }

        /*////////////////////////////////////////// EJES TEMÁTICOS //////////////////////////////////////////*/
        .eje-cta {
            /* background: linear-gradient(135deg, var(--border-p) 0%, var(--pale) 100%); */
            background-color: var(--pale);
            background-image: url(/img/postulaciones/copein-eje.png);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 40px 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-content p {
            font-size: 16px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .btn-eje-cta {
            display: inline-block;
            padding: 10px 20px;
            background: var(--pale);
            border: 2px solid var(--violet);
            color: var(--violet);
            text-decoration: none;
            font-weight: bold;
            border-radius: 25px;
            font-size: 14px;
            box-shadow: 0 2px 8px 0px rgba(215, 121, 255, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .btn-eje-cta:hover {
            background: linear-gradient(135deg, var(--violet), var(--blue));
            color: white;
            border-color: transparent;
        }

        .ejes-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 1px;
            background-color: var(--border-p);
            border: 1px solid var(--border-p);
            margin-bottom: 80px;
        }

        .eje-item {
            background-color: var(--pale);
            padding: 40px 30px;
            display: flex;
            align-items: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            text-align: start;
            height: 160px;
            max-height: 160px;
        }

        .eje-item::before {
            content: attr(data-number);
            position: absolute;
            top: 45%;
            right: 4px;
            font-size: 8rem;
            font-weight: 900;
            color: rgba(212, 199, 255, 0.30);
            transition: all 0.4s ease;
        }

        .eje-item:hover::before {
            color: var(--purple-bg);
        }

        .eje-item:hover {
            background-color: var(--dark);
            color: var(--light);
            z-index: 2;
            box-shadow: 0 20px 40px rgba(55, 0, 133, 0.2);
        }

        .eje-item span {
            font-size: 16px;
            font-weight: 600;
            position: relative;
            z-index: 1;
        }

        .datos-sect-sm {
            display: none;
        }

        .smb-5 {
            margin-bottom: 3rem;
        }

        /*////////////////////////////////////////// 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)
        }

        /*////////////////////////////////////////// MODAL //////////////////////////////////////////*/

        .modal-dialog, .modal-dialog-centered, .modal-content {
            width: 90%;
        }

        .title-modal {
            color: var(--pink);
        }

        .subtitle-modal {
            color: var(--violet);
        }

        .text-modal {
            color: var(--onyx);
            text-align: center;
        }

        .px-responsive {
            padding: 1.5rem 4.5rem;
        }

        /*////////////////////////////////////////// RESPONSIVE //////////////////////////////////////////*/
        @media (max-width: 1400px) {
            .eje-cta {
                display: none;
            }
        }
        @media (max-width: 1200px) {
            .card {
                margin-top: 30px;
            }

            .card-criterios {
                margin-top: 30px;
            }

            .px-responsive {
                padding: 1.5rem 3rem;
            }
        }

        @media(max-width:900px) {
            .modal-dialog, .modal-dialog-centered, .modal-content {
                width: 100%;
            }

            .px-responsive {
                padding: 1.5rem 1rem;
            }

            section {
                padding-top: 50px;
                padding-bottom: 50px;
            }

            nav {
                padding: 12px 24px
            }

            .nav-links {
                display: none
            }

            .hamburger {
                display: flex
            }
            
            .eje-item {
                height: 130px;
                max-height: 130px;
            }

            .eje-cta {
                background-size: auto;
            }

            .card img {
                width: 120px;
            }

            .card-criterios img {
                width: 80px;
            }
        }

        @media (max-width: 768px) {
            .datos-sect-sm {
                display: block;
            }

            .datos-sect {
                display: none;
            }

            .card {
                height: auto !important;
                width: 440px;
            }

            .card-criterios {
                height: auto !important;
                width: 440px;
            }

            .smb-5 {
                margin-bottom: 0rem;
            }

            .eje-item {
                height: 100px;
                max-height: 100px;
                padding: 10px 20px;
            }

            .eje-item::before {
                font-size: 4.4rem;
            }
        }

        @media (max-width: 708px) {
            .hero-section {
                background-color: var(--pale);
                background-image: none;
            }
        }

        @media (max-width: 560px) {
            .card {
                height: auto !important;
                width: 330px;
            }

            .card-criterios {
                height: auto !important;
                width: 330px;
            }

            .hero-section {
                background-color: var(--pale);
                background-image: none;
                padding: 50px 0px;
            }

            .title-header {
                color: var(--onyx);
                font-weight: 800;
                font-size: 1.5rem;
                line-height: 1.2;
            }

            .title {
                color: var(--blue);
                font-size: 2.5rem;
                display: block;
                text-transform: uppercase;
            }
        }

        @media (max-width: 513px) {
            .ejes-container {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }

            .modal-dialog {
                margin: 0px !important;
            }
        }

        @media (max-width: 380px) {
            .card {
                height: auto !important;
                width: auto;
            }

            .card-criterios {
                height: auto !important;
                width: auto;
            }
        }