/* Contenedor de la sección */
#vamos-volando-section {
    position: relative;
    width: 100%;
    height: 200vh; /* espacio de scroll */
}

/* Fondo sticky */
.vamos-volando-fondo {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    background: url("https://assets-us-01.kc-usercontent.com/b2956330-c34f-0064-2c6f-27bd5c0147fc/3fdb1f7e-9967-4483-9b48-90d245462045/vamos_volando_desk.png")
    no-repeat center / cover;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Rectángulo */
#vamos-volando-section .rectangle {
    width: calc(100% - 290px);
    max-width: 1400px;
    height: 577px;
    padding: 30px 60px;
    border-radius: 20px;
    background: rgba(27, 54, 93, 0.17);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#vamos-volando-section .rectangle .content{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    position: relative;
}

/* Contenedor izquierdo */
#vamos-volando-section .rectangle .left {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    height: 100%;
}

/* Imagen principal - OCULTA AL INICIO */
#vamos-volando-section .rectangle .left img.text-banner {
    height: auto;
    max-height: 100%;
    display: block;
    opacity: 0; /* 👈 OCULTO AL INICIO */
    transform: translateY(50px); /* 👈 POSICIÓN INICIAL */
}

/* Icono flotante - OCULTO AL INICIO */
#vamos-volando-section .rectangle .left img.icon {
    position: absolute;
    height: auto;
    right: 10%;
    bottom: 6%;
    opacity: 0; /* 👈 OCULTO AL INICIO */
    transform: translateY(30px); /* 👈 POSICIÓN INICIAL */
}

/* Bloque de texto derecho */
#vamos-volando-section .rectangle .right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 390px;
}

/* Textos - OCULTOS AL INICIO */
#vamos-volando-section .rectangle .right .text-top {
    color: var(--Brand-Colors-Blue-00, #1B365D);
    font-family: "Encode Sans";
    font-size: 70px;
    font-weight: 400;
    line-height: 96%;
    opacity: 0; /* 👈 OCULTO AL INICIO */
    transform: translateY(30px); /* 👈 POSICIÓN INICIAL */
}

#vamos-volando-section .rectangle .right .text-bottom {
    color: var(--White--Background-White, #FFF);
    font-family: "Encode Sans";
    font-size: 70px;
    font-weight: 800;
    line-height: 96%;
    opacity: 0; /* 👈 OCULTO AL INICIO */
    transform: translateY(30px); /* 👈 POSICIÓN INICIAL */
}


@media screen and (max-width: 768px) {
    /* Imagen principal - OCULTA AL INICIO */
    .vamos-volando-fondo {
        background: url("https://assets-us-01.kc-usercontent.com/b2956330-c34f-0064-2c6f-27bd5c0147fc/22f850d7-6e69-4d39-aef8-c66759efb5d5/vamos_volando_mob.png") no-repeat center / cover;
    }

    #vamos-volando-section .rectangle {
        width: calc(100% - 60px);
    }

    #vamos-volando-section .rectangle .left img.text-banner {
        width: 270px;
    }

    #vamos-volando-section .rectangle .content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #vamos-volando-section .rectangle .right {
        align-items: center;
        margin-top: 10px;
    }

    #vamos-volando-section .rectangle .left .icon-1 {
        right: 9%;
        bottom: 5%;
        width: 45px;
    }

    #vamos-volando-section .rectangle .left .icon-2 {
        right: 9%;
        bottom: 4%;
        width: 37px;
    }

    /* Textos - OCULTOS AL INICIO */
    #vamos-volando-section .rectangle .right .text-top {
        color: var(--Brand-Colors-Blue-00, #1B365D);
        text-align: center;
        font-family: "Encode Sans";
        font-size: 40px;
        font-style: normal;
        font-weight: 400;
        line-height: 96%; /* 38.4px */
        opacity: 0; /* 👈 OCULTO AL INICIO */
        transform: translateY(30px); /* 👈 POSICIÓN INICIAL */
    }

    #vamos-volando-section .rectangle .right .text-bottom {
        color: var(--White--Background-White, #FFF);
        font-family: "Encode Sans";
        font-size: 40px;
        font-style: normal;
        font-weight: 800;
        line-height: 96%;
        opacity: 0; /* 👈 OCULTO AL INICIO */
        transform: translateY(30px); /* 👈 POSICIÓN INICIAL */
    }
}
