.hero {
    background-image:url('/Content/dist/img/novos-targifor/HeroBg.png') ;
    background-color: purple;
    width: 100%;
    height: 100vh;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    background-size: cover;
    background-position: center;
    margin-top: 5rem;
    color: #fff;
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .hero {
        background-size: unset;
    }
}

.hero .text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
}

.hero .text .bem-estar{
    color: #fff;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: 'Roboto', sans-serif;
    font-size: 33px;
    font-style: normal;
    font-weight: 300;
    line-height: 33px; /* 100% */
    text-transform: uppercase;
    margin: unset !important;
}

.hero .text h1 {
    width: 60%;
    font-style: normal;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    margin: unset !important;
    /* text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5); */
}

@media screen and (max-width: 768px) {
    .hero .text h1 {
        width: 100%;
        font-size: 40px;
        line-height: 50px;
        padding: 2rem;
    }
}

.hero .text p {
    color: #FFF;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px; /* 127.778% */
    width:  50%;
    margin-top: unset !important;
}

@media screen and (max-width: 768px) {
    .hero .text p {
        width: 100%;
        font-size: 16px;
        line-height: 20px;
        padding: 2rem;
    }
}

.product{
    position: relative;
    background-color: #04027C;
    margin: unset !important;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    height: 100vh;
    z-index: 1;
}

.product::before{
    content: '';
    position: absolute;
    bottom: -50px;
    left: 30%;
    width: 151vw;
    height: 75vh;
    background-color: #04027C;
    border-radius:  0 0 0 50%;
    transform-origin: bottom;
    transform: translateX(-50%) rotate(2deg);
}

.product h2 {
    color: var(--White, #FFF);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    margin: unset !important;
    width: 60%;
    /* H2/Desktop Italics */
    font-family: 'Roboto', sans-serif;
    font-size: 35px;
    font-style: italic;
    font-weight: 400;
    line-height: 38px; /* 108.571% */
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .product h2 {
        width: 100%;
        font-size: 30px; 
        line-height: 40px;
    }
} 

.product img{
    max-width: 50%;
    height: 60%;
    margin: 2rem;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .product img{
        width: 100%;
        margin: unset;
        margin-top: 2rem;
        max-width: unset;
        height: auto;
    }
    
}

.tpm-section{
    background-color: #893ABE;
    display: flex;
    color: #fff;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 160px;
    padding-top: 100px;

}

@media screen and (max-width: 768px) {
    .tpm-section{
        padding-top: 50px;
    }
}

.tpm-product{
    width: 75%;
    display: flex;
    padding: 2rem;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .tpm-product{
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    
}

.tpm-product img{
    width: 100%; 
    height: auto;
}

.tpm-product__text h2 {
    color: #fff;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: 'Roboto', sans-serif;
    font-size: 46px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 69px */
}

.tpm-product__text p {
    color: #FFF;
    font-feature-settings: 'liga' off, 'clig' off;

    /* Body/Body */
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px; /* 127.778% */
}

.tpm-product__text .callout_text{
    color: var(--White, #FFF);

    /* H3/Desktop */
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px; /* 114.286% */
}

.icon__list {
    display: grid;
    grid-template-columns: repeat(6, 150px);
    grid-template-rows: repeat(1, 150px);
    gap: 2rem;
    margin-top: 1rem;
    width: fit-content;
}

.icon__list_stress{
    display: grid;
    grid-template-columns: repeat(5, 150px);
    grid-template-rows: repeat(1, 150px);
    gap: 2rem;
    margin-top: 1rem;
    width: fit-content;
}

@media screen and (max-width: 768px) {
    .icon__list {
        grid-template-columns: repeat(2, 150px);
        grid-template-rows: repeat(3, 150px);
        gap: 1rem;
        margin-top: 1rem;
    }
    .icon__list_stress {
        grid-template-columns: repeat(2, 150px);
        grid-template-rows: repeat(3, 150px);
        gap: 1rem;
        margin-top: 1rem;
    }
}

.icon__item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    color: white;
    padding: 1rem;
    border: solid 1px #fff;
    border-radius: 20px;
    text-align: center;
    cursor: pointer;
}
.icon__item img {
    width: 80px;
    height: 80px;
}

.stress-section{
    position: relative;
    background-color: #2EC4CB;
    display: flex;
    color: #fff;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 160px;
}

@media screen and (max-width: 768px) {
    .stress-section{
        padding-bottom: 50px;
    }
}

.stress-section::before{
    content: '';
    position: absolute;
    top: -50px;
    left: 30%;
    width: 151vw;
    height: 75vh;
    background-color: #2EC4CB;
    border-radius: 50% 0 0 0;
    transform-origin: bottom;
    transform: translateX(-50%) rotate(2deg);
}

.claim{
    position: relative;
    display: flex;
    width: 100%;
    padding: 2rem;
    background-color: #04027C;
    align-items: center;
    justify-content: center;
}


.claim::before{
    content: '';
    position: absolute;
    bottom: 70px;
    left: 30%;
    width: 151vw;
    height: 75vh;
    background-color: #04027C;
    border-radius: 50% 0 0 0;
    transform-origin: bottom;
    transform: translateX(-50%) rotate(2deg);
}

.claim__content{
    width: 60%;
    display: flex;
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .claim__content{
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
}

.claim__content img{
    width: 100%; 
    height: 100%;
}

.claim__text h2 {
    color: var(--Targifor_Orange, #FF902B);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: 'Roboto', sans-serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 700;
    line-height: 64px; /* 114.286% */
}

.claim__text h3{
    color: var(--White, #FFF);
    text-align: center;

    font-feature-settings: 'liga' off, 'clig' off;

    /* H3/Desktop */
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; /* 114.286% */
}

.claim__text p {
    color: var(--White, #FFF);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;

    /* Body/Body */
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px; /* 127.778% */
}