.fade-in {
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.fade-in.show {
    opacity: 1;
}

#home {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #191e1f;
    position: relative;
    color: white;
    height: auto;
    align-items: center;
}

#cta {
    height: 50vh;
    z-index: 2;
    width: 100%;
    margin-top: 10%;
    text-align: center;
}

#cta .title {
    font-size: 70px;
    margin: 0 auto;
    width: 90%;
    max-width: 1250px;
    color: #DDF056;
}

#cta .title span {
    color: #ffffff;
}

#cta .description {
    font-size: 1.2rem;
    margin: 0 auto;
    width: 90%;
    max-width: 900px;
}

#cta_buttons {
    text-align: center;
    justify-content: center;
    display: flex;
    gap: 24px;
}

.btn-more {
    text-decoration: none;
    background-color: #DDF056;
    padding: 8px 14px;
    font-weight: 500;
    color: #1d1d1d;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    width: 200px;
    border-radius: 5px;
}

#image-person {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 20px;
    z-index: 2;
}

#image-person img {
    max-width: 100%;
    height: auto;
    max-height: 75vh;
}

.image-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/cidade.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.09;
    z-index: 1;
}

@media screen and (max-width: 1170px) {
    #home {
        flex-direction: column;
        align-items: center;
        max-height: 200px;
    }

    #cta {
        margin-top: 20%;
        height: auto;
    }

    #cta .title {
        font-size: 2rem;
        margin: 0 auto;
        width: 90%;
    }

    #cta .description {
        font-size: 1rem;
        width: 90%;
        margin: 0 auto;
    }

    #image-person {
        justify-content: center;
    }

    #image-person img {
        height: auto;
        max-width: 90%;
    }

    .btn-more {
        width: auto;
        padding: 6px 12px;
    }

    .image-back {
        height: auto;
        max-height: 670px;
    }
}