.biodiversidad-section {
    position: sticky;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 600px;
    padding: 80px 120px;
    overflow: hidden;
    background: #fff;
    height: 100vh;
    top: 0;
    z-index: 1;
}

.biodiversidad-content {
    position: relative;
    max-width: 800px;
    z-index: 2;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Cuando entra en pantalla */
.biodiversidad-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.biodiversidad-inner {
    position: relative;
}

.biodiversidad-title {
    font-family: "Encode Sans", sans-serif;
    font-size: 124px;
    line-height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.biodiversidad-highlight {
    color: var(--Brand-Colors-Turquoise-00, #00AEC7);
    font-weight: 800;
}

.biodiversidad-air {
    color: var(--Brand-Colors-Blue-00, #1B365D);
    font-weight: 400;
}

.biodiversidad-subtitle {
    margin-top: 24px;
    font-family: "Encode Sans", sans-serif;
    font-size: 22px;
    color: #1b365d;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

.biodiversidad-subtitle > .highligh {
    color: var(--Brand-Colors-Turquoise-00, #00AEC7);

    /* Titles/Title H6/Bold */
    font-family: "Encode Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.4px;
}

.biodiversidad-ave {
    position: absolute;
    top: -61px;
    left: -67px;
    width: 120px;
    z-index: 3;
}

.biodiversidad-jaguar {
    position: absolute;
    right: -750px;
    width: 750px;
    height: auto;
    z-index: 2;
    top: 6px;
}

/** MOBILE */
@media screen and (max-width: 768px) {
    .biodiversidad-section{
        padding: 20px;
        height: 50vh;
    }

    .biodiversidad-title {
        /* Titles/Title H4/Bold */
        font-family: "Encode Sans";
        font-size: 36px;
        font-style: normal;
        line-height: normal;
        letter-spacing: -0.72px;
    }

    .biodiversidad-highlight {
        color: var(--Brand-Colors-Turquoise-00, #00AEC7);
        font-weight: 700;
    }

    .biodiversidad-air {
        color: var(--Brand-Colors-Blue-00, #1B365D);
        font-weight: 500;
    }

    .biodiversidad-subtitle {
        color: var(--Brand-Colors-Blue-00, #1B365D);

        /* Paragraphs/Small/Regular */
        font-family: Lato;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 18px;
    }

    .biodiversidad-subtitle > .highligh {
        color: var(--Brand-Colors-Turquoise-00, #00AEC7);

        /* Paragraphs/Small/Bold */
        font-family: Lato;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 18px; /* 128.571% */
    }

    .biodiversidad-ave {
        top: -54px;
        left: -51px;
        width: 76px;
        transform: rotate(-25.468deg);
    }

    .biodiversidad-jaguar {
        right: -65px;
        width: 227px;
        top: -18px;
    }
}




