/* ==================================
   HERO
================================== */

.support-hero{

    padding:220px 0 180px;

    position:relative;

    overflow:hidden;

}

.support-hero::before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    top:-250px;
    right:-250px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(106,0,205,.08),
        transparent 70%
    );

}

.support-hero .container{

    position:relative;
    z-index:2;

}

.support-hero h1{

    max-width:900px;

    margin:24px 0;

}

.support-hero p{

    max-width:700px;

    font-size:1.2rem;

    line-height:1.8;

    margin-bottom:40px;

}

.hero-reveal{

    opacity:0;

    transform:
    translateY(40px);

    animation:
    heroReveal 1s cubic-bezier(.16,1,.3,1)
    forwards;

}

@keyframes heroReveal{

    from{

        opacity:0;
        transform:translateY(30px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

.manifesto{

    padding:220px 0;

}

.manifesto-grid{

    display:grid;

    grid-template-columns:
    200px 1fr;

    gap:80px;

    align-items:start;

}

.manifesto-grid span{

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:.9rem;

    font-weight:600;

}

.manifesto-grid h2{

    font-size:clamp(3rem,5vw,5rem);

    line-height:1.1;

    margin-bottom:40px;

}

.manifesto-grid p{

    max-width:700px;

    font-size:1.4rem;

    line-height:1.8;

    color:rgba(0,0,0,.65);

}

/* ==================================
   SUPPORT JOURNEY
================================== */

.support-journey{

    padding:180px 0;

    background:var(--bg-soft);

}

.journey{

    max-width:900px;

    margin:100px auto 0;

    position:relative;

}

.journey::before{

    content:"";

    position:absolute;

    left:50%;

    top:0;

    width:4px;

    height:100%;

    transform:
    translateX(-50%);

    background:
    linear-gradient(
        transparent,
        rgba(106,0,205,.15),
        rgba(106,0,205,.15),
        transparent
    );

    border-radius:999px;

}

.journey-item{

    position:relative;

    width:50%;

    padding-right:80px;

    margin-bottom:100px;

}

.journey-item:nth-child(even){

    margin-left:auto;

    padding-left:80px;

    padding-right:0;

}

.journey-item span{

    position:absolute;

    top:0;

    right:-25px;

    width:50px;
    height:50px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:var(--primary);

    color:white;

    font-weight:700;

    box-shadow:
    0 0 0 8px rgba(106,0,205,.08);

}

.journey-item:nth-child(even) span{

    right:auto;
    left:-25px;

}

.journey-item h3{

    margin-bottom:16px;

}

.journey-item p{

    max-width:350px;

}

/* ==================================
   IMPACT AREAS
================================== */

.impact-areas{

    padding:180px 0;

}

.impact-list{

    margin-top:80px;

}

.impact-item{

    position:relative;

    padding:40px 0 40px 60px;

    font-size:clamp(
        1.5rem,
        2vw,
        2.3rem
    );

    font-weight:600;

    border-bottom:
    1px solid rgba(106,0,205,.08);

}

.impact-item::before{

    content:"";

    position:absolute;

    left:0;

    top:50%;

    width:24px;

    height:3px;

    background:var(--primary);

    transform:
    translateY(-50%);

}

.impact-item{

    transition:
    padding-left .35s ease,
    color .35s ease;

}

.impact-item:hover{

    padding-left:80px;

    color:var(--primary);

}

/* =========================================================
   ECOSISTEMA
   ========================================================= */

.ecosystem {

    padding: 120px 0 140px;

    background: #ffffff;
}


/* =========================================================
   ENCABEZADO
   ========================================================= */

.ecosystem-header {

    max-width: 700px;

    margin-bottom: 75px;
}


.ecosystem-header .section-label {

    display: block;

    margin-bottom: 18px;

    color: #6A00CD;

    font-size: .75rem;
    font-weight: 700;

    letter-spacing: .16em;
    text-transform: uppercase;
}


.ecosystem-header h2 {

    margin: 0 0 20px;

    max-width: 650px;

    font-family: "Playfair Display", serif;

    font-size: clamp(
        2rem,
        4vw,
        3.2rem
    );

    line-height: 1.15;

    color: #161616;
}


.ecosystem-header p {

    max-width: 580px;

    margin: 0;

    color: #666;

    font-size: 1.05rem;

    line-height: 1.75;
}


/* =========================================================
   LISTA
   ========================================================= */

.ecosystem-list {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    column-gap: 90px;

    row-gap: 0;

    border-top:
        1px solid rgba(106, 0, 205, .15);
}


/* =========================================================
   ITEM
   ========================================================= */

.ecosystem-item {

    position: relative;

    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 25px;

    min-height: 220px;

    padding: 42px 0;

    border-bottom:
        1px solid rgba(106, 0, 205, .15);

    transition:
        padding-left .35s ease;
}


/* =========================================================
   NÚMERO
   ========================================================= */

.ecosystem-number {

    position: relative;

    display: flex;

    align-items: flex-start;

    padding-top: 4px;

    color: #6A00CD;

    font-family: "Playfair Display", serif;

    font-size: 1.25rem;

    font-weight: 600;

    transition:
        transform .35s ease,
        color .35s ease;
}


/* pequeña línea junto al número */

.ecosystem-number::after {

    content: "";

    position: absolute;

    top: 15px;
    right: -1px;

    width: 24px;
    height: 1px;

    background:
        #6A00CD;

    transform-origin: right;

    transition:
        width .35s ease;
}


/* =========================================================
   CONTENIDO
   ========================================================= */

.ecosystem-content h3 {

    margin: 0 0 12px;

    font-family: "Playfair Display", serif;

    font-size: 1.5rem;

    font-weight: 600;

    color: #181818;
}


.ecosystem-content p {

    max-width: 390px;

    margin: 0;

    color: #666;

    font-size: .95rem;

    line-height: 1.7;
}


/* =========================================================
   HOVER
   ========================================================= */

.ecosystem-item:hover {

    padding-left: 10px;
}


.ecosystem-item:hover .ecosystem-number {

    transform: translateX(5px);

    color: #52009E;
}


.ecosystem-item:hover .ecosystem-number::after {

    width: 34px;
}


/* =========================================================
   PIE / KRINEIN
   ========================================================= */

.ecosystem-footer {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 65px;

    color: #6A00CD;
}


.ecosystem-line {

    width: 55px;
    height: 1px;

    background:
        #6A00CD;
}


.ecosystem-footer strong {

    font-family: "Playfair Display", serif;

    font-size: 1.15rem;

    font-weight: 600;
}


.ecosystem-caption {

    color: #777;

    font-size: .9rem;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .ecosystem {

        padding: 100px 0 110px;
    }

    .ecosystem-list {

        column-gap: 45px;
    }

    .ecosystem-item {

        grid-template-columns:
            55px 1fr;

        gap: 15px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 650px) {

    .ecosystem {

        padding: 80px 0 90px;
    }


    .ecosystem-header {

        margin-bottom: 50px;
    }


    .ecosystem-header h2 {

        font-size: 2rem;
    }


    .ecosystem-header p {

        font-size: .95rem;
    }


    .ecosystem-list {

        display: block;

        border-top:
            1px solid rgba(106, 0, 205, .15);
    }


    .ecosystem-item {

        grid-template-columns:
            48px 1fr;

        min-height: auto;

        padding: 30px 0;

        gap: 12px;
    }


    .ecosystem-number {

        font-size: 1.1rem;
    }


    .ecosystem-number::after {

        width: 18px;

        right: 0;
    }


    .ecosystem-content h3 {

        font-size: 1.3rem;

        margin-bottom: 8px;
    }


    .ecosystem-content p {

        font-size: .9rem;

        line-height: 1.65;
    }


    /* En móvil evitamos desplazamientos */

    .ecosystem-item:hover {

        padding-left: 0;
    }


    .ecosystem-item:hover .ecosystem-number {

        transform: none;
    }


    .ecosystem-item:hover .ecosystem-number::after {

        width: 18px;
    }


    .ecosystem-footer {

        flex-wrap: wrap;

        gap: 12px;

        margin-top: 45px;
    }


    .ecosystem-caption {

        width: 100%;

        margin-left: 67px;
    }
}

/* ==================================
   CTA
================================== */

.support-cta{

    padding:220px 0;

}

.cta-panel{

    max-width:1000px;

    margin:auto;

    text-align:center;

}

.cta-panel h2{

    margin:24px 0;

    font-size:clamp(
        2.5rem,
        5vw,
        5rem
    );

}

.cta-panel p{

    max-width:700px;

    margin:0 auto 40px;

    font-size:1.2rem;

}

@media(max-width:768px){

    .manifesto-text{

        font-size:2rem;

    }

    .journey::before{

        left:25px;

    }

    .journey-item,
    .journey-item:nth-child(even){

        width:100%;

        padding-left:80px;

        padding-right:0;

        margin-left:0;

    }

    .journey-item span,
    .journey-item:nth-child(even) span{

        left:0;

        right:auto;

    }

    .ecosystem-map{

        height:auto;

        display:flex;

        flex-direction:column;

        gap:24px;

        align-items:center;

    }

    .node,
    .node.center{

        position:relative;

        transform:none;

        left:auto;
        right:auto;
        top:auto;
        bottom:auto;

        width:220px;
        height:220px;

    }

}

/* ==================================
   RESPONSIVE - MANIFESTO
================================== */

@media (max-width: 768px){

    .manifesto{

        padding:100px 0;

    }

    .manifesto-grid{

        display:flex;
        flex-direction:column;

        gap:32px;

    }

    .manifesto-grid span{

        display:block;

        font-size:.85rem;

        letter-spacing:2px;

    }

    .manifesto-grid h2{

        font-size:clamp(2.2rem,9vw,3rem);

        line-height:1.15;

        margin-bottom:24px;

        max-width:100%;

        word-break:normal;
        overflow-wrap:break-word;
        hyphens:auto;

    }

    .manifesto-grid p{

        font-size:1.05rem;

        line-height:1.8;

        max-width:100%;

    }

}

@media (max-width:768px){

    .manifesto .container{

        width:min(92%, 100%);
        max-width:none;

    }

}

/* ==================================
   SUMATE - RESPONSIVE FINAL
================================== */

@media (max-width: 900px) {

    .support-hero {
        padding: 140px 0 90px;
    }

    .manifesto-grid {
        grid-template-columns: 1fr;
    }

    .ecosystem-list {
        column-gap: 40px;
    }

    .journey-item {
        max-width: 100%;
    }

}

@media (max-width: 768px) {

    .support-hero {
        padding: 100px 0 70px;
    }

    .manifesto {
        padding: 80px 0;
    }

    .manifesto-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .manifesto-grid h2 {
        max-width: 100%;
        font-size: clamp(2.1rem, 9vw, 3rem);
        line-height: 1.15;
        overflow-wrap: break-word;
    }

    .manifesto-grid p {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.75;
    }

    .journey::before {
        left: 24px;
    }

    .journey-item,
    .journey-item:nth-child(even) {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
        margin-left: 0;
    }

    .journey-item span,
    .journey-item:nth-child(even) span {
        left: 0;
        right: auto;
    }

    .ecosystem-map {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .node,
    .node.center {
        position: relative;
        transform: none;

        left: auto;
        right: auto;
        top: auto;
        bottom: auto;

        width: min(220px, 80vw);
        height: min(220px, 80vw);
    }

    .ecosystem-list {
        display: block;
    }

    .ecosystem-item {
        grid-template-columns: 45px minmax(0, 1fr);
        min-height: auto;
        padding: 28px 0;
        gap: 12px;
    }

    .ecosystem-content {
        min-width: 0;
    }

    .ecosystem-content p {
        max-width: 100%;
    }

    .support-cta {
        padding: 100px 0;
    }

    .cta-panel {
        width: 100%;
    }

    .cta-panel h2 {
        font-size: clamp(2.2rem, 9vw, 4rem);
    }

}

@media (max-width: 480px) {

    .support-hero {
        padding: 80px 0 60px;
    }

    .manifesto {
        padding: 65px 0;
    }

    .journey-item,
    .journey-item:nth-child(even) {
        padding-left: 60px;
    }

    .journey::before {
        left: 18px;
    }

    .node,
    .node.center {
        width: min(190px, 75vw);
        height: min(190px, 75vw);
    }

    .ecosystem-item {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 10px;
    }

    .ecosystem-number::after {
        width: 16px;
    }

    .support-cta {
        padding: 80px 0;
    }

}