.section-homepage {
    display: flex;
    height: 555px;
    max-width: 1254px;
    margin: 200px auto 0;
    position: relative;
}

.section-homepage>.homepage-description {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 272px;
    width: 500px;
    max-width: 500px;
}

.section-homepage>.homepage-description>h2 {
    font-family: "InterTight-Bold";
    font-size: 84px;
    background: transparent linear-gradient(261deg, #FE8F38 0%, #F72B52 100%) 0% 0% no-repeat padding-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-homepage>.homepage-description>p {
    font-family: "InterTight-Regular";
    font-size: 22px;
}

.section-homepage>.homepage-description>p>span {
    font-family: "InterTight-Bold";
    color: #FC743F;
}

.section-homepage img {
    position: absolute;
    right: 0;
    transform: translateY(100px);
}

.homepage-description {
    transform: translateX(-200px); /* Descrição vem da esquerda */
}

.homepage-description, .section-homepage img {
    transition: transform 1s ease, opacity 1s ease;
    opacity: 0;
}

.homepage-description.homepage-show {
    opacity: 1;
    transform: translateX(0px);
}

.section-homepage-img.homepage-show-img {
    transform: translateY(-100px);
    opacity: 1;
    width: 972px;
    height: 647px;
    right: -155px;
}

@media (max-width: 769px) {
    .section-homepage {
        flex-direction: column;
        height: 477px;
        width: 320px;
        margin-top: 100px;
        gap: 17px;
    }

    .section-homepage>.homepage-description {
        gap: 26px;
        height: 220px;
        width: 100%;
    }

    .section-homepage>.homepage-description>h2 {
        font-size: 46px;
        text-align: center;
    }

    .section-homepage>.homepage-description>p {
        font-size: 18px;
        text-align: center;
    }


    .section-homepage>img {
        position: relative;
    }
    .section-homepage-img.homepage-show-img {
        transform: translateY(-10px);
        width: 100%;
        height: 241px;
        right: auto;
        object-fit: cover;
    }
}