.parallax-box {
    width: 500px;
    height: 600px;
    position: absolute;
    top: -200px;
    left: 25%;
    z-index: 99;
    overflow: hidden;
}

.parallax-div {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-image {
    background-image: url('../images/drone.png');
    background-repeat: no-repeat;
    width: 85%;
    height: 85%;
    background-size: contain;
    background-position: center;
    transition: transform 0.2s ease-out;
}

.text-simulador {
    width: 230px;
}

.titulo-simulador {
    font-size: 2.5rem;
}

.text-simulador a:hover svg path {
    stroke: #fff;
}

@media (max-width: 1500px) {
    .parallax-box {
        width: 350px;
    }

    .titulo-simulador {
        font-size: 2rem;
    }
}

@media (max-width: 1199.98px) {
    .titulo-simulador {
        font-size: 1.5rem;
    }

    .parallax-box {
        left: 30%;
    }
}

@media (max-width: 991.98px) {
    .simulador-box {
        flex-direction: column;
        padding: 0 30px 40px 30px !important;
        gap: 30px;
    }

    .parallax-box {
        position: initial;
        height: 265px;
        order: 1;
    }

    .parallax-image {
        background-position: top;
    }

    .text-simulador {
        order: 3;
        text-align: center;
    }

    .titulo-simulador {
        order: 2;
        text-align: center;
    }
}

@media (max-width: 767.98px) {

}

@media (max-width: 575.98px) {

}