:root {
    --vino: #8C3048;
    --rosa: #F285B8;
    --magenta: #A6056D;
    --oro: #BF935E;
    --verde: #4F5E57;

    /* --bg-gradient:linear-gradient(
        135deg,
        #4d0cb4 0%,
        #6d17d8 35%,
        #8a22df 70%,
        #a6056d 100%
    ); */
    --bg-gradient: linear-gradient(to right bottom, #071040, #36437b, #6693d1, #52cffe);
}

/* ---------------------------
   GENERALES
----------------------------*/

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    /* font-family: system-ui,-apple-system,sans-serif; */
    font-family: 'Nunito', 'Roboto', sans-serif;
}

/* ---------------------------
   NAVBAR
----------------------------*/

.navbar-steam {
    backdrop-filter: blur(15px);
    background: rgba(77, 12, 180, .35);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    transition: .3s;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    position: relative;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all .30s ease;
    overflow: hidden;
}

.nav-link:hover {
    background: linear-gradient(135deg, rgba(123, 31, 214, 0.85), rgba(166, 5, 109, 0.85));
    /* background: linear-gradient(135deg, #7B1FD6, #A6056D); */
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(22, 160, 133, .30);
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(123, 31, 214, 0.75), rgba(166, 5, 109, 0.75));
    /* background: linear-gradient(135deg, #7B1FD6, #A6056D); */
    color: white;
    box-shadow: 0 4px 12px rgba(22, 160, 133, .40);
}

.nav-logo {
    height: 60px;
    filter: drop-shadow(0 0 10px rgba(149, 38, 60, .5));
}

.nav-logo2 {
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(149, 38, 60, .5));
}

.fcopy {
    font-size: 10.5px;
    color: var(--tx3);
    text-align: center;
    line-height: 1.6
}

.hbrand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0
}

.hbrand img {
    height: 60px;
    width: auto;
    object-fit: contain
}

.hbrand img.logo2 {
    border-radius: 50%;
    object-fit: cover;
    width: 38px;
    height: 60px
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15
}

.bt1 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    font-size: 14.5px;
    color: var(--P);
    letter-spacing: -.2px;
}

.bt2 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 10px;
    color: var(--G);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.content-description {
    color: #36437b;
    font-size: 1.1rem;
    /* max-width:600px; */
    /* text-align:center; */
    margin: auto;
    line-height: 1.4rem;
}

.accord-header {
    color: #7B1FD6;
    font-weight: 800;
    margin-bottom: .3rem;
}

/* ---------------------------
   HERO
----------------------------*/

#home {
    min-height: 100vh;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

/* grid decorativo */

#home::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: calc(80px + 2rem);
}

.hero-content {
    position: relative;
    z-index: 2;
    scroll-margin-top: 120px;
    padding-top: 100px;
}

.hero-title {
    color: #fff;
    font-weight: 800;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 0.95;
    color: #fff;
}

.hero-outline {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, .35);
}

.hero-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(242, 133, 184, .6);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 580px;
    padding: 22px 30px;
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .05);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
}

.hero-description {
    color: rgba(255, 255, 255, .9);
    font-size: clamp(1rem, 3vw, 1.3rem);
    max-width: 100%;
    /* text-align:center; */
    margin: auto;
}

.hero-logo {
    max-width: 520px;
    width: 100%;
}

/* ---------------------------
   LOGO FLOTANTE
----------------------------*/

.logo-floating {
    width: 100%;
    max-width: 100%;
    animation: floating 5s ease-in-out infinite;
    filter:
        drop-shadow(0 20px 35px rgba(0, 0, 0, .35));
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ---------------------------
   BOTONES
----------------------------*/
/* .btn-steam{
    background:#fff;
    color:#6d17d8;
    font-weight:700;
    border-radius:15px;
    padding:.9rem 2rem;
    transition:.3s ease;
    border-width: 3px;
    justify-content: center;
}

.btn-steam:hover{
    transform:translateY(-4px);
    background: #7B1FD6;
    background:
        linear-gradient(
            135deg,
            #7B1FD6,
            #A6056D
        );
    color:#fff;
}

.btn-steam i {
    margin-left: 8px;
}
 */
/* ---------------------------
   SECCIONES
----------------------------*/

.section {
    min-height: auto;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.section h2 {
    font-size: 4rem;
    font-weight: 800;
}

/* #home{
    background: #F8F5FF;
} */

#myv{
    background: #F8F5FF;
}

#formacion {
    background: #F8F5FF;
    /* background: rgba(140, 48, 72, .12); */
}

#recursos {
        background: #F8F5FF;
    /* background: rgba(242, 133, 184, .18); */
}

#networking {
    background: #F8F5FF;
    /* background: rgba(191, 147, 94, .18); */
}

#desarrollo {
    background: #F8F5FF;
    /* background: rgba(79, 94, 87, .18); */
}

.section-tag {
    padding: .5rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Responsive */

@media(max-width:991px) {
    #home {
        min-height: auto;
        padding-bottom: 80px;
    }

    .hero-title {
        text-align: center;
    }

    .hero-description {
        text-align: center;
    }

    .hero-card {
        margin: auto;
    }

    .navbar-steam {
        background: rgba(7, 16, 64, .95);
        backdrop-filter: blur(20px);
    }

    .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 20px;
        background: rgba(7, 16, 64, .95);
    }

    .nav-link {
        text-align: center;
        margin-bottom: .5rem;
    }

    /* .btn-steam {
        width: 100%;
    } */
}

/* ====================================
   MISIÓN Y VISIÓN
==================================== */

#misionVision {
    background: #F8F6FB;
    position: relative;
}

/* BADGES */

.myv-badge {
    display: inline-flex;
    align-items: center;
    padding: .85rem 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(111, 66, 193, .25);
    background: rgba(111, 66, 193, .06);
    color: #6f42c1;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: .85rem;
}

.myv-location-badge {
    display: inline-block;
    padding: .9rem 1.8rem;
    border-radius: 999px;
    background: rgba(111, 66, 193, .08);
    border: 1px solid rgba(111, 66, 193, .18);
    color: #6f42c1;
    font-weight: 600;
}

/* TITULOS */

.all-title {
    /* font-size:clamp(2rem,8vw,3.5rem); */
    font-size: 25px;
    font-weight: 700;
    line-height: 1.5;
    color: #12002d;
}

.myv-subtitle {
    color: #8A2BE2;
    font-size: 1.5rem;
    margin-top: 1rem;
}

.myv-divider {
    width: 90px;
    height: 4px;
    background: #BF935E;
    border-radius: 30px;
    margin: 2rem 0;
}

/* IMAGEN */

.myv-card-image {
    width: 280px;
    height: 280px;
    border-radius: 32px;

    background:
        linear-gradient(180deg,
            #A6056D 0%,
            #7B1FD6 50%,
            #5A0CE6 100%);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .12);
}

.myv-card-image img {
    width: 55%;
}

.myv-floating {
    animation: floatMyV 5s ease-in-out infinite;
}

@keyframes floatMyV {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* TARJETAS */
.myv-content-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(111, 66, 193, .08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}

.myv-tag {
    padding: .45rem .9rem;
    border-radius: 999px;
    font-size: .90rem;
    font-weight: 700;
    letter-spacing: 5px;
    background: rgba(140, 48, 72, .15);
    color: #8C3048;
}

.myv-mini-badge {
    padding: .35rem .75rem;
    border-radius: 999px;
    background: #f3f0fa;
    color: #6f42c1;
    font-size: .75rem;
    font-weight: 600;
}

/*MAIN CARDS*/

body {
    font-family: "Segoe UI", sans-serif;
}

.card-steam {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    transition: .35s;
}

.card-steam:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .12) !important;
}

.card-header-img {
    height: 180px;
    overflow: hidden;
}

.card-header-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.card-steam:hover img {
    transform: scale(1.03);
}

.category {
    color: #0d8b8b;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2a0f28;
    line-height: 1.2;
    margin-bottom: 15px;
}

.card-text {
    color: #5b5b5b;
    font-size: 1.2rem;
    line-height: 1.4;
}

.badge-custom-form {
    background: #edf8f6;
    color: #0b6164;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: .9rem;
}

.badge-custom-recursos {
    background: #F8F1DE;
    color: #C77d18;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: .9rem;
    margin-right: 8px;
    margin-bottom: 8px;
}

.badge-custom-net {
    background: #FAE7F3;
    color: #C0398F;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: .9rem;
    margin-right: 8px;
    margin-bottom: 8px;
}

.badge-custom-des {
    background: #E8F0FB;
    color: #2F6FD0;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: .9rem;
    margin-right: 8px;
    margin-bottom: 8px;
}

.btn-steam {
    display: inline-block;
    background: #1ba39c;
    color: #fff;
    padding: 14px 28px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all .25s ease;
}

.btn-steam:hover {
    background: #16857f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 163, 156, .35);
}

.btn-steam:active {
    transform: scale(.96);
    box-shadow: none;
}

.btn-steam-recursos {
    display: inline-block;
    background: #C77d18;
    color: #F8F1DE;
    padding: 14px 28px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all .25s ease;
}

.btn-steam-recursos:hover {
    background: #C77d18;
    color: #F8F1DE;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 163, 156, .35);
}

.btn-steam-recursos:active {
    transform: scale(.96);
    box-shadow: none;
}

.btn-steam-net {
    display: inline-block;
    background: #C0398F;
    color: #FAE7F3;
    padding: 14px 28px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all .25s ease;
}

.btn-steam-net:hover {
    background: #C0398F;
    color: #FAE7F3;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 163, 156, .35);
}

.btn-steam-net:active {
    transform: scale(.96);
    box-shadow: none;
}

.btn-steam-des {
    display: inline-block;
    background: #2F6FD0;
    color: #FAE7F3;
    padding: 14px 28px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all .25s ease;
}

.btn-steam-des:hover {
    background: #2F6FD0;
    color: #FAE7F3;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 163, 156, .35);
}

.btn-steam-des:active {
    transform: scale(.96);
    box-shadow: none;
}

@media (max-width:768px) {
    .card-title {
        font-size: 1.6rem;
    }

    .card-text {
        font-size: 1rem;
    }

    /* .btn-steam {
        width: 100%;
        text-align: center;
    } */
}

/* INDICADORES */

.myv-stat-card {
    border-radius: 20px;
    border: 1px solid rgba(111, 66, 193, .25);
    background: rgba(111, 66, 193, .06);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(111, 66, 193, .08);
    color: #6f42c1;
    transition: .3s ease;
}

.myv-stat-card:hover {
    transform: translateY(-4px);
}

.myv-stat-card h3 {
    color: #7B1FD6;
    font-weight: 800;
    margin-bottom: .3rem;
}

.myv-stat-card span {
    color: #6c757d;
}

.myv-text {
    color: #7B1FD6;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ENTRADAS SUAVES */

.fade-up {
    animation: fadeUp .9s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================
   ANIMACIONES DE ENTRADA
============================ */

.reveal-up {
    opacity: 0;
    transform: translateY(35px);
    animation:
        revealUp .9s ease forwards;
}

.reveal-up:nth-child(2) {
    animation-delay: .2s;
}

.reveal-up:nth-child(3) {
    animation-delay: .4s;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================
   FORMACIÓN
===================================== */

.section-formacion {
    background:
        linear-gradient(180deg,
            rgba(242, 133, 184, .06) 0%,
            rgba(166, 5, 109, .03) 100%);

}

.formation-badge {
    display: inline-block;
    padding: .8rem 1.4rem;
    border-radius: 999px;
    background: rgba(166, 5, 109, .08);
    border: 1px solid rgba(166, 5, 109, .15);
    color: #A6056D;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.formation-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 800;
    color: #14002f;
}

.text-gradient {
    background:
        linear-gradient(90deg,
            #7B1FD6,
            #A6056D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.formation-chip {
    padding: .55rem 1rem;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(123, 31, 214, .12);
    color: #7B1FD6;
    font-size: .85rem;
    font-weight: 600;
}

/* .formation-text{
    color:#5d5d5d;
    font-size:1.05rem;
    line-height:1.9;
} */

.formation-logo-container {
    background:
        linear-gradient(135deg,
            #7B1FD6,
            #A6056D);
    border-radius: 30px;
    padding: 2rem;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, .08);
}

.formation-logo {
    max-width: 250px;
    animation: floatFormation 5s ease-in-out infinite;
}

@keyframes floatFormation {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Accordion */

.formation-accordion .accordion-item {
    border: none;
    background: transparent;
}

.formation-accordion .accordion-button {
    border-radius: 20px !important;
    background: #fff;
    padding: 1.5rem;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, .05);
    border: 1px solid rgba(123, 31, 214, .08);
}

.formation-accordion .accordion-button:not(.collapsed) {
    background:
        linear-gradient(135deg,
            rgba(123, 31, 214, .08),
            rgba(166, 5, 109, .08));
}

.formation-accordion .accordion-body {
    background: #fff;
    border-radius: 0 0 20px 20px;
    line-height: 1.8;
    color: #555;
}

/* Carousel */

.formation-badge-small {
    color: #7B1FD6;
    font-weight: 700;
}

.formation-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: none;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, .08);
    height: 100%;
}

.formation-card-header {
    padding: 1.2rem;
    color: #fff;
}

.formation-icon {
    font-size: 2rem;
}

.formation-card-body {
    padding: 1.5rem;
}

.formation-link {
    border-radius: 12px;
}


/* ==========================
   RECURSOS
========================== */
.recursos-section {
    background:
        linear-gradient(180deg,
            #faf7ff 0%,
            #f3ecff 100%);
    position: relative;
}

/* ==========================
   HEADER
========================== */
.resource-badge {
    display: inline-block;
    padding: .8rem 1.4rem;
    border-radius: 999px;
    background:
        rgba(166, 5, 109, .08);
    color: #A6056D;
    font-weight: 700;
    letter-spacing: 2px;
}

.resource-title {
    font-size:
        clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    color: #13072c;
}

/* ==========================
   ACCORDION
========================== */
.resource-accordion .accordion-item {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    background: white;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, .04);
}

.resource-accordion .accordion-button {
    background: white;
    padding: 1.5rem;
    box-shadow: none;
}

.resource-accordion .accordion-button:not(.collapsed) {
    background: white;
}

.resource-accordion-head {
    display: flex;
    align-items: center;
    gap: 20px;
}

.resource-icon-box {
    width: 55px;
    height: 55px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: #f4ebff;
}

.resource-preview {
    color: #36437b;
    font-size: 1.2rem;
    /* max-width:600px; */
    /* text-align:center; */
    margin: auto;
    line-height: 2rem;
}

/* ==========================
   GRID
========================== */
.resource-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

/* ==========================
   CARD
========================== */
.resource-card {
    position: relative;
    background: white;
    border-radius: 28px;
    padding: 2rem;
    overflow: hidden;
    transition: .35s;
    min-height: 100px;
    border:
        1px solid rgba(123, 31, 214, .08);
}

.resource-card:hover {
    transform:
        translateY(-10px);
    box-shadow:
        0 25px 50px rgba(123, 31, 214, .12);
}

.resource-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background:
        radial-gradient(rgba(123, 31, 214, .15),
            transparent);
    top: -70px;
    right: -70px;
}

.resource-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.resource-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    background: #f5f0ff;
}

.resource-label {
    color: #7B1FD6;
    font-weight: 700;
}

.resource-card-title {
    color: #19142f;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.resource-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1rem;
}

.resource-tag {
    background: #f5f0ff;
    color: #7B1FD6;
    padding: .4rem .8rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
}

.resource-card-desc {
    color: #66657d;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================
   BOTÓN
========================== */
.resource-btn {
    display: inline-block;
    padding: .8rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    background:
        linear-gradient(135deg,
            #7B1FD6,
            #A6056D);
}

.resource-btn:hover {
    color: white;
    transform:
        translateY(-2px);
}

/* =====================================
   NETWORKING
===================================== */

.networking-section {
    background:
        linear-gradient(180deg,
            #faf7ff 0%,
            #f3ecff 100%);
    position: relative;
    overflow: hidden;
}

.steam-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 36px;
    animation: fadeUp .65s .22s ease both;
    border-left: 1px solid var(--brd);
}

.sa-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 20px 8px 16px;
    border-right: 1px solid var(--brd);
    cursor: default;
}

.sa-letter {
    font-family: 'Raleway', sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    color: var(--sa-c, #B91C5A);
}

.sa-letter {
    font-family: 'Raleway', sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    color: var(--sa-c, #B91C5A);
}

.sa-word {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--tx3);
    margin-top: 4px;
}

.sa-sect {
    font-size: 8.5px;
    color: var(--sa-c, #B91C5A);
    opacity: .75;
    font-style: italic;
    margin-top: 1px;
}

.sa-icon {
    margin-bottom: 6px;
    opacity: .7;
    display: flex;
}

.sa-icon svg {
    width: 22px;
    height: 22px;
}

/* =====================================
    HEADER
    ===================================== */

.network-badge {
    display: inline-block;
    padding: .75rem 1.3rem;
    border-radius: 999px;
    background: rgba(166, 5, 109, .08);
    color: #A6056D;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: .85rem;
}

.network-title {
    font-size: clamp(2.3rem, 5vw, 4rem);
    font-weight: 800;
    color: #16162f;
}

/*     .network-description{
        color:#64627a;
        line-height:1.9;
        font-size:1.05rem;
    } */

/* =====================================
    TAGS
    ===================================== */

.network-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.network-pill {
    background: white;
    padding: .75rem 1rem;
    border-radius: 999px;
    color: #7B1FD6;
    border: 1px solid rgba(123, 31, 214, .12);
    font-weight: 600;
    font-size: .85rem;
}

/* =====================================
    ORBITA
    ===================================== */

.network-orbit {
    width: 280px;
    height: 280px;
    margin: auto;
    position: relative;
}

.network-core {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background:
        linear-gradient(135deg,
            #7B1FD6,
            #A6056D);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2.5rem;
    box-shadow:
        0 20px 50px rgba(123, 31, 214, .3);
}

.network-node {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    position: absolute;
    background: #BF935E;
    animation: pulseNode 3s infinite;
}

.node-1 {
    top: 10%;
    left: 50%;
}

.node-2 {
    right: 10%;
    top: 50%;
}

.node-3 {
    bottom: 10%;
    left: 50%;
}

.node-4 {
    left: 10%;
    top: 50%;
}

@keyframes pulseNode {

    0%,
    100% {

        transform: scale(1);
    }

    50% {

        transform: scale(1.3);
    }
}

/* =====================================
    GRID
    ===================================== */
.network-grid {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

/* =====================================
    CARD
    ===================================== */
.network-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 2rem;
    overflow: hidden;
    transition: .35s;
    border: 1px solid rgba(123, 31, 214, .08);
    min: height 10px;
    0px;
}

.network-card:hover {
    transform:
        translateY(-10px);
    box-shadow:
        0 25px 60px rgba(123, 31, 214, .15);
}

.network-card-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background:
        radial-gradient(rgba(123, 31, 214, .15),
            transparent);
    top: -70px;
    right: -70px;
}

/* =====================================
    HEADER CARD
    ===================================== */

.network-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.network-icon {
    width: 58px;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    background: #f5f0ff;
}

.network-label {
    color: #7B1FD6;
    font-weight: 700;
}

/* =====================================
    BODY
    ===================================== */

.network-card-title {
    font-weight: 700;
    font-size: 15px;
    color: #1d1d35;
    margin-bottom: 1rem;
}

.network-card-desc {
    color: #66657a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =====================================
    BOTÓN
    ===================================== */

.network-btn {
    display: inline-block;
    padding: .8rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    background:
        linear-gradient(135deg,
            #7B1FD6,
            #A6056D);
    color: white;
    font-weight: 700;
}

.network-btn:hover {
    color: white;
    transform: translateY(-2px);
}
/* ==========================================
SECCIÓN
========================================== */

.opportunities-section {
    background:
        linear-gradient(180deg,
            #faf8ff 0%,
            #f5f0ff 100%);
    overflow: hidden;
}

.opp-section-badge {
    display: inline-block;
    padding: .8rem 1.3rem;
    border-radius: 999px;
    background: rgba(123, 31, 214, .08);
    color: #7B1FD6;
    font-weight: 700;
}

.opp-section-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
}

.opp-section-desc {
    color: #666;
}

/* ==========================================
    CARRUSEL
    ========================================== */

.opp-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.opp-stage {
    height: 430px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

#oppTrack {
    height: 100%;
    position: relative;
}

/* ==========================================
    CARD
    ========================================== */

.opp-card {
    width: 340px;
    height: 420px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    transition: all .6s ease;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, .08);
    border: 1px solid #ececec;
}

.opp-card-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.opp-card-content {
    padding: 1.5rem;
}

/* ==========================================
    FECHA
    ========================================== */

.opp-date-box {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    background: #23c483;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.opp-day {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
}

.opp-month {
    font-size: .70rem;
    font-weight: 700;
}

/* ==========================================
    CATEGORÍA
    ========================================== */

.opp-category {
    border: 1px solid #23c483;
    color: #23c483;
    padding: .5rem 1rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
}

.opp-new {
    margin-left: .4rem;
    background: #ff5b7e;
    color: white;
    font-size: .7rem;
    padding: .4rem .7rem;
    border-radius: 999px;
}

/* ==========================================
    TEXTO
    ========================================== */

.opp-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #23253a;
    margin-bottom: 1rem;
}

.opp-desc {
    color: #616780;
    line-height: 1.7;
    font-size: .95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================
    BADGES SECUNDARIOS
    ========================================== */

.opp-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1rem;
}

.opp-mini-badge {
    background: #f6f2ff;
    color: #7d7d9a;
    border-radius: 999px;
    padding: .4rem .8rem;
    font-size: .8rem;
}

/* ==========================================
    FOOTER
    ========================================== */

.opp-footer {
    border-top: 1px solid #ececec;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.opp-urgency {
    font-weight: 700;
    color: #23253a;
}

.opp-link {
    color: #23c483;
    font-weight: 700;
    text-decoration: none;
}

.urg-open {
    color: #23c483;
}

.urg-soon {
    color: #ff9800;
}

.urg-closed {
    color: #e53935;
}



/* estados */

.card-center {
    transform:
        translate(-50%, -50%) scale(1);
    z-index: 10;
}

.card-left {
    transform:
        translate(-155%, -50%) scale(.82);
    opacity: .35;
    filter: blur(1px);
    z-index: 5;
}

.card-right {
    transform:
        translate(55%, -50%) scale(.82);
    opacity: .35;
    filter: blur(1px);
    z-index: 5;
}

.card-hidden {
    opacity: 0;
    transform:
        translate(-50%, -50%) scale(.6);
}

/* navegación */
.opp-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.opp-mini-nav {
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    color: #7B1FD6;
    transition: .3s;
}

.opp-mini-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(123, 31, 214, .15);
}

.opp-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, .12);
    z-index: 30;
}

.opp-prev {
    left: 10%;
}

.opp-next {
    right: 10%;
}

/* dots */

.opp-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.opp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d8c8ff;
    transition: .4s;
}

.opp-dot.active {
    width: 35px;
    border-radius: 999px;
    background: #8a2be2;
}

/* miniaturas */

.opp-thumbnails {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.opp-thumb {
    width: 88px;
    height: 110px;
    border-radius: 18px;
    background: white;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .8rem;
    cursor: pointer;
    transition: .4s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
}

.opp-thumb-date-badge {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #23c483;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.opp-thumb-day {
    font-size: .9rem;
    font-weight: 800;
}

.opp-thumb-month {
    font-size: .55rem;
    font-weight: 600;
    letter-spacing: .5px;
}

/* Categoría */

.opp-thumb-label {
    font-size: .65rem;
    text-align: center;
    font-weight: 600;
    color: #666;
    padding: 0 .25rem;
    line-height: 1.2;
}


.opp-thumb.active {
    border-color: #7B1FD6;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(123, 31, 214, .15);
}

.opp-thumb-date {
    font-weight: 800;
    color: #7B1FD6;
}

.opp-thumb-cat {
    font-size: .7rem;
    color: #777;
}

.opp-thumb-header {
    height: 18px;
    background: #7B1FD6;
}

.opp-thumb-icon {
    font-size: 1.3rem;
    text-align: center;
    padding-top: 18px;
}

.opp-category-display {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .8rem 1.5rem;
    border-radius: 999px;
    background:
        linear-gradient(135deg,
            #7B1FD6,
            #A6056D);
    color: white;
    font-weight: 700;
    letter-spacing: .5px;
    box-shadow:
        0 10px 30px rgba(123, 31, 214, .25);
    transition: .4s;
}

/* ==================================
   COLABORACIÓN COMUNITARIA
================================== */
.collaboration-section {
    background: #F8F5FF;
    /* background:
        linear-gradient(180deg,
            #F8F5FF 0%,
            #FFFFFF 100%); */
    position: relative;
}

.collaboration-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(123, 31, 214, .08);
    box-shadow:
        0 20px 60px rgba(123, 31, 214, .08);
    overflow: hidden;
    position: relative;
}

.collaboration-card::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background:
        radial-gradient(rgba(123, 31, 214, .12),
            transparent);
    top: -120px;
    right: -120px;
}

.collaboration-badge {
    display: inline-block;
    padding: .7rem 1.2rem;
    border-radius: 999px;
    background:
        rgba(166, 5, 109, .08);
    color: #A6056D;
    font-weight: 700;
    letter-spacing: 1px;
}

.collaboration-title {
    color: #13072C;
    font-weight: 800;
    font-size:
        clamp(2rem, 4vw, 3rem);
}

.collaboration-text {
    color: #66657D;
    line-height: 1.9;
    font-size: 1.05rem;
}

.initiative-tag {
    background: #F4F0FF;
    color: #7B1FD6;
    border-radius: 999px;
    padding: .45rem .9rem;
    font-size: .85rem;
    font-weight: 600;

}

.initiative-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1.5rem;
}

.collaboration-actions {
    background:
        linear-gradient(135deg,
            #36437b,
            #52cffe);
    color: white;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    height: 100%;
}

.collaboration-icon {
    width: 90px;
    height: 90px;
    margin: auto auto 1rem;
    border-radius: 50%;
    background:
        rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.collaboration-btn {
    background: white;
    color: #7B1FD6;
    border: none;
    font-weight: 700;
    border-radius: 999px;
    padding: .9rem 1.2rem;
}

.collaboration-btn:hover {
    background: #F7F3FF;
    color: #7B1FD6;
}

.social-mini {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 1rem;
}

.social-mini a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        rgba(255, 255, 255, .12);
    color: white;
    text-decoration: none;
    transition: .3s;
}

.social-mini a:hover {
    transform: translateY(-3px);
    background:
        rgba(255, 255, 255, .25);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .collaboration-card {
        padding: 2rem;
    }

    .collaboration-actions {
        margin-top: 1rem;
    }
}

/* ===================================
   FOOTER
=================================== */
.steam-footer {
    background:
        linear-gradient(180deg,
            #54565a 0%,
            #120025 100%);
    color: white;
    padding-top: 80px;
    padding-bottom: 40px;
    overflow: hidden;
}

/* ===================================
   BLOQUE INSTITUCIONAL
=================================== */
.footer-partners {
    background:
        linear-gradient(135deg,
            rgba(123, 31, 214, .35),
            rgba(166, 5, 109, .25));
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 20px;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    backdrop-filter: blur(10px);
}

.footer-partner-logo {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    opacity: .95;
    transition: .3s;
}

/* .footer-partner-logo:hover{
    transform:translateY(-4px);
    opacity:1;
} */

/* ===================================
   BRAND
=================================== */

/* .footer-brand{
    display:flex;
    align-items:center;
    gap:16px;
} */

.footer-brand-icon {
    width: 55px;
    height: 55px;
    border-radius: 18px;
    background:
        linear-gradient(135deg,
            #7B1FD6,
            #A6056D);

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
}

.footer-text {
    color: #B9B1D8;
    line-height: 1.2;
    font-size: 14px;
}

/* ===================================
   SOCIAL
=================================== */

.footer-social {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background:
        rgba(255, 255, 255, .05);
    border:
        1px solid rgba(255, 255, 255, .08);
    color: white;
    transition: .3s;
}

.footer-social-btn:hover {
    background:
        linear-gradient(135deg,
            #7B1FD6,
            #A6056D);
    color: white;
    transform: translateY(-3px);
}

/* ===================================
   TITULOS
=================================== */
.footer-title {
    color: white;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.footer-title-2 {
    color: white;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 12PX;
    margin-top: 5px;
}

/* ===================================
   LINKS
=================================== */
.footer-links {
    /* list-style:none; */
    padding: 0;
    margin: 0;
    font-size: 14px;
    margin-top: 1px;
}

.footer-links li {
    margin-bottom: 1px;
}

.footer-links a {
    text-decoration: none;
    color: #B9B1D8;
    /* transition:.3s; */
}

.footer-links a:hover {
    color: #F285B8;
    /* padding-left:6px; */
}

/* ===================================
   DIVISOR
=================================== */

.footer-divider {
    height: 1px;
    background:
        rgba(255, 255, 255, .08);
    margin: 50px 0 30px;
}

/* ===================================
   COPYRIGHT
=================================== */

.footer-copy,
.footer-version {
    color: #8D83B5;
    font-size: .9rem;
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 768px) {
    .footer-partners {
        gap: 20px;
        padding: 1.5rem;
    }

    .footer-partner-logo {
        max-height: 50px;
    }

    .footer-brand {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-title {
        text-align: center;
    }

    .footer-title-2 {
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }
}

/* ===================================
   SUB PAGES SUB CARDS
=================================== */
.sub-hero {
    padding-top: 140px;
    padding-bottom: 90px;
    padding: 3rem 0;
    /* background: linear-gradient(135deg, #0D7C77, #115B57); */
    overflow: hidden;
    padding-top: calc(80px + 2rem);
    margin-bottom: 30px;
}

.sub-hero-image {
    overflow: hidden;
    box-shadow:
        0 30px 70px rgba(123, 31, 214, .15);
}

.sub-hero-category {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .08rem;
    /* color: #82F0E5; */
}

.sub-hero-title {
    font-size: 2rem;
    font-weight: 700;
    /* line-height: 1.15; */
    color: #fff;
    /* margin-bottom: 1rem; */
}

.sub-hero-text {
    font-size: 1.05rem;
    color: #D8F7F4;
}

.sub-hero-image {
    max-width: 250px;
    width: 100%;
}

.sub-btn-primary {
    /* background: #1BA39C; */
    color: #fff;
    padding: .9rem 1.7rem;
    border-radius: 14px;
    font-weight: 600;
    transition: .3s;
}

.sub-btn-primary:hover {
    background: #169088;
    color: #fff;
    transform: translateY(-2px);
}

.sub-btn-outline {
    border: 2px solid rgba(255, 255, 255, .7);
    color: #fff;
    padding: .9rem 1.7rem;
    border-radius: 14px;
    font-weight: 600;
    transition: .3s;
}

.sub-btn-outline:hover {
    background: #fff;
    color: var(--steam-dark);
    transform: translateY(-2px);
}

.sub-footer {
    background: linear-gradient(135deg, #0D6E69, #115B57);
    padding: 4rem 0 2rem;
    color: #fff;
}

.subcard-card {
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(123, 31, 214, .12);
    transition: .35s;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg,
            rgba(123, 31, 214, .05),
            rgba(0, 188, 212, .05)),
        #fff;
    padding: 10px;
    min-height: 200px;
    transition: .35s;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, .06);
}

.subcard-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 50px rgba(123, 31, 214, .12);
}

.subcard-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-left: 20px;
    margin-bottom: 14px;
}

.subcard-header {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 8px;
    justify-content: space-between;
    align-items: center;
}

.subcard-category {
    background:
        rgba(123, 31, 214, .08);
    color: #7B1FD6;
    border-radius: 10px;
    padding: .45rem .9rem;
    font-size: .8rem;
    font-weight: 600;
}

.subcard-status {
    background: rgba(191, 147, 94, .15);
    color: #BF935E;
    border-radius: 10px;
    padding: .45rem .9rem;
    font-size: .8rem;
}

.subcard-body {
    padding: 0 18px 25px;
    flex: 1;
}

.subcard-body h4 {
    color: #14002B;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.15;
    margin-bottom: 6px;
}

.subcard-body p {
    color: #5F6478;
    font-size: .9rem;
    line-height: 1.4;
    margin-bottom: 6px;
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.subcard-meta {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: .3px;
    color: #7A7A92;
    font-size: .78rem;
}

.subcard-date {
    width: 55px;
    height: 55px;
    margin: 15px;
    margin-bottom: 15px;
    border-radius: 15px;
    background:
        linear-gradient(135deg,
            #7B1FD6,
            #A6056D);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.subcard-date .day {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.subcard-date .month {
    font-size: .6rem;
    letter-spacing: 1px;
}


.subcard-footer {
    border-top: 1px solid rgba(0, 0, 0, .06);
    margin-top: 10px;
    /* padding-top: 10px; */
    padding: 10px;
}

.subcard-footer a {
    color: #7B1FD6;
    text-decoration: none;
    font-weight: 600;
    font-size: .9rem;
}

.ribbon-new {
    position: absolute;
    top: 14px;
    right: -34px;
    width: 140px;
    text-align: center;
    background:
        linear-gradient(135deg,
            #ff4081,
            #ff1744);

    color: white;
    font-size: .7rem;
    font-weight: 700;
    padding: 6px 0;
    transform: rotate(45deg);
    box-shadow:
        0 4px 10px rgba(0, 0, 0, .25);
    z-index: 5;
    letter-spacing: 1px;
}

.resource-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.resource-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    flex: 1;
}

.resource-keyword {
    font-size: .65rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 999px;
    background: #F3F0FF;
    color: #7B1FD6;
    border: 1px solid rgba(123, 31, 214, .08);
    line-height: 1;
}