/* Main/Hero/Welcome/Description */
.hero {
    background-color: #02accf;
    color: #ffffff;
    margin: 0;
}

.hero .hero-shell {
    width: 100%;
    max-width: 132em;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1rem, 2.2vw, 1.9rem);
    padding: 1.7rem clamp(1rem, 2.8vw, 4rem) 1.85rem;
}

.hero .hero-sides-right {
    flex: 0 1 28rem;
    min-width: 18rem;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
}

.hero .hero-main {
    flex: 1 1 40rem;
    max-width: 60rem;
    min-width: 0;
}

.hero .img-hero {
    width: min(100%, 26rem);
    min-height: 13.5rem;
    background-image: url(../../../images/hero-right.png);
    background-image: image-set(
        url(../../../images/hero-right.webp) type("image/webp"),
        url(../../../images/hero-right.png) type("image/png")
    );
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
}

.hero .hero-description {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    width: 100%;
    padding: 1.25rem 0 0;
    margin: 0 auto 0 0;
}

.hero .hero-veja-mais {
    margin: 0;
}

.hero .hero-veja-mais-button {
    display: inline-block;
    padding: 0.9em 1.7em;
    background-color: #ffffff;
    color: #02accf;
    font-weight: bold;
    border-radius: 0.32rem;
    text-transform: uppercase;
    text-align: left;
    transition: background-color 0.3s ease;
    font-size: 0.92rem;
    letter-spacing: 0.08em;
}

.hero .hero-veja-mais-button:hover {
    background-color: #0283a0;
    color: #ffffff;
}

.hero .hero-flemming-description {
    order: 1;
    text-align: left;
}

.hero .hero-welcome-label {
    font-size: 1em;
    margin: 0;
    font-weight: 400;
    font-style: normal;
}

.hero .hero-title {
    font-size: 2.65em;
    font-weight: 700;
    font-family: 'Roboto';
    margin: 0;
    line-height: 1.04;
}

.hero .hero-description-copy {
    font-size: 1.219em;
    line-height: 1.45;
    margin: 0;
    font-weight: 400;
}

.hero .hero-main .hero-description .hero-flemming-description .hero-description-copy {
    margin-top: 0;
    margin-right: 0;
    max-width: 40rem;
}


@media screen and (max-width: 52.98em) {
    .hero .hero-shell {
        flex-wrap: nowrap;
    }

    .hero .hero-sides-right {
        display: none;
    }

    .hero .hero-main {
        max-width: none;
        flex-basis: auto;
    }
}

@media screen and (min-width: 132em) {
    .hero .hero-shell {
        max-width: none;
        padding-inline: clamp(1rem, 2.8vw, 4rem);
    }
}

@media screen and (min-width: 150em) {
    .hero .hero-shell {
        max-width: none;
        padding-inline: clamp(1rem, 2.8vw, 4rem);
    }

    .hero .hero-main {
        max-width: 66rem;
    }

    .hero .hero-sides-right {
        flex-basis: 32rem;
    }

    .hero .img-hero {
        width: min(100%, 30rem);
    }

    .hero .hero-main .hero-description .hero-flemming-description .hero-description-copy {
        max-width: 46rem;
    }
}
