
.hero-wrapper {
    background: var(--gradiant);
    padding: 6.25rem 0;
}

.hero-content-wrapper {
    display: flex;
    gap: 2.5rem;
}

.hero-wrapper .hero-image img{
    max-width: 35.625rem;
    max-height: 24rem;
}

.hero-wrapper .hero-title {
    color: var(--texto-branco);
    font-family: var(--font-family);

    font-size: 3rem;
    font-weight: 700;
    line-height: 3.875rem;

    margin-bottom: 1.875rem;
}

.hero-wrapper .hero-description {
    color: var(--texto-branco);
    font-family: var(--font-family);

    font-size: 1.25rem;
    font-weight: 400;
    line-height: 2rem;

    margin-bottom: 3.75rem;
}

.hero-wrapper .hero-button-wrapper a {
    border-radius: 6.25rem;
    background-color: var(--castanho);
    padding: 0.625rem 1.375rem;

    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;


    color: var(--main-color);
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    width: max-content;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.hero-wrapper .hero-button-wrapper a:hover {
    background-color: #FFF;
}

@media (max-width: 1160px) {
    .hero-content-wrapper {
        flex-direction: column;
        gap: 3.375rem;
    }

    .hero-wrapper .hero-title {
        font-family: var(--font-family);
        font-size: 2rem;
        font-weight: 700;
        line-height: 3rem;
        
        margin-bottom: 1.5rem;
    }

    .hero-wrapper .hero-description {
        font-size: 1.125rem;
    }

    .hero-button-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-wrapper {
        padding-top: 5rem;
        padding-bottom: 3.125rem;
    }

    .hero-wrapper .hero-image {
        display: flex;
        justify-content: center;
    }

}

@media (max-width: 480px) {
    .hero-wrapper .hero-image,
    .hero-wrapper .hero-image img {
        width: 100%;
    }
}