main{
    display: flex;
    flex-direction: column;
    padding: 163px 0 0;
    gap: 150px;
}


.sobre{
    width: 100%;
}
.sobre .container{
    display: flex;
    align-items: center;
    gap: 50px;
}
.sobre .texto{
    max-width: 527px;
    width: 100%;
    gap: 30px;
}
.sobre .texto h2,
.sobre .texto h2 span{
    font-size: 56px;
    font-weight: 800;
}
.sobre .texto h2{
    color: var(--cor-3);
}
.sobre .texto h2 span{
    color: var(--cor-2);
}
.sobre .texto p{
    font-size: 20px;
    color: var(--cor-1);
}
.sobre .img{
    max-width: 721px;
    width: 100%;
    height: fit-content;
    border-radius: 10px;
    align-items: center;
}
.sobre .img img{
    width: 100%;
    border-radius: 10px;
    object-fit: contain;
}


.ajudamos{
    width: 100%;
}
.ajudamos .container{
    display: flex;
    align-items: center;
    gap: 50px;
}
.ajudamos .titulo{
    width: 100%;
    justify-content: center;
    text-align: center;
}
.ajudamos .titulo h2,
.ajudamos .titulo h2 span{
    font-size: 56px;
    font-weight: 800;
}
.ajudamos .titulo h2{
    color: var(--cor-3);
}
.ajudamos .titulo h2 span{
    color: var(--cor-2);
}
.ajudamos .ajudamos-div{
    width: 100%;
    gap: 26px;
    justify-content: center;
}
.ajudamos .ajudamos-div .box{
    width: calc(100% - 75% - 20px);
    border-radius: 10px;
    border: 1px solid #797979;
    transition: ease .3s;
    background-color: #fff;
}
.ajudamos .ajudamos-div .box:hover .img img{
    transform: scale(1.1);
    transition: ease .3s;
}
.ajudamos .ajudamos-div .box .img{
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
}
.ajudamos .ajudamos-div .box .img img{
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: ease .3s;
}
.ajudamos .ajudamos-div .box .texto{
    width: 100%;
    padding: 40px 20px;
    background-color: #fff;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    gap: 20px;
}
.ajudamos .ajudamos-div .box .texto h3{
    font-size: 32px;
    font-weight: 700;
    font-family: var(--fonte-1);
    color: var(--primaria);
    line-height: 1.2;
}
.ajudamos .ajudamos-div .box .texto p{
    font-size: 14px;
    font-family: var(--fonte-3);
    color: var(--cor-1);
}


.banner-mid{
    width: 100%;
}
.banner-mid .container{
    position: relative;
    padding: 100px 50px;
    border-radius: 15px;
    background-image: linear-gradient(90deg, rgba(128, 87, 75, 1) 0%, rgba(77, 52, 45, 1) 100%);
}
.banner-mid .container::after{
    content: "";
    display: flex;
    width: 100%;
    height: 15px;
    background-image: linear-gradient(90deg, rgba(219, 178, 123, 1) 0%, rgba(163, 112, 43, 1) 50%, rgba(82, 56, 22, 1) 100%);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    position: relative;
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: 1;
}
.banner-mid .img{
    max-width: 460px;
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 50px;
    z-index: 2;
}
.banner-mid .img img{
    width: 100%;
}
.banner-mid .texto{
    max-width: 592px;
    width: 100%;
    position: relative;
    z-index: 3;
    gap: 30px;
}
.banner-mid .texto img{
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
    align-self: flex-start;
}
.banner-mid .texto p{
    font-size: 20px;
    font-family: var(--fonte-3);
    color: #F5F5F5;
}
.banner-mid .texto p strong{
    font-size: 20px;
    font-family: var(--fonte-3);
    color: #F0DFC8;
}
.banner-mid .texto a{
    max-width: 176px;
    width: 100%;
    height: 44px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #F0DFC8;
    border-radius: 5px;
}
.banner-mid .texto a span{
    max-width: calc(100% - 44px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}


.planos{
    width: 100%;
}
.planos .container{
    display: flex;
    align-items: center;
    gap: 50px;
}
.planos .titulo{
    width: 100%;
    justify-content: center;
    text-align: center;
}
.planos .titulo h2,
.planos .titulo h2 span{
    font-size: 56px;
    font-weight: 800;
}
.planos .titulo h2{
    color: var(--cor-3);
}
.planos .titulo h2 span{
    color: var(--cor-2);
}
.planos .planos-div{
    width: 100%;
    gap: 30px;
}
.planos .planos-div .box{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
    padding: 75px 30px;
    border-radius: 10px;
    border: 1px solid #797979;
    background-image: linear-gradient(90deg, rgba(223, 223, 223, 1) 0%, rgba(245, 245, 245, 1) 50%);
}
.planos .planos-div .box .nome{
    max-width: 33%;
    width: fit-content;
}
.planos .planos-div .box .nome h2{
    font-size: 58px;
    font-family: var(--fonte-1);
    font-weight: 700;
    color: #4D342D;
}
.planos .planos-div .box .preco{
    max-width: 33%;
    min-width: 232px;
    width: fit-content;
    align-items: center;
    gap: 20px;
}
.planos .planos-div .box .preco h2, 
.planos .planos-div .box .preco h2 span{
    color: #80574B;
    font-family: var(--fonte-3);
}
.planos .planos-div .box .preco h2{
    font-size: 24px;
}
.planos .planos-div .box .preco h2 span{
    font-size: 64px;
    font-weight: 600;
}
.planos .planos-div .box .preco a{
    max-width: 232px;
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #E2C093;
    border: 1px solid #E2C093;
    border-radius: 5px;
}
.planos .planos-div .box .preco a img {
    width: 44px;
    height: 44px;
    display: flex;
}
.planos .planos-div .box .preco a span {
    max-width: calc(100% - 44px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-1);
    font-size: 20px;
}
.planos .planos-div .box .lista{
    max-width: 33%;
    width: fit-content;
    gap: 20px;
}
.planos .planos-div .box .lista span{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-family: var(--cor-3);
    color: var(--cor-1);
}



/* MEDIA DESKTOP */
@media screen and (min-width: 2000px){
    
}
@media screen and (max-width: 1600px){

}

@media screen and (max-width: 1458px){
    
}

@media screen and (max-width: 1366px){
    .ajudamos .ajudamos-div .box .texto h3{
        font-size: 26px;
    }

    .banner-mid .texto{
        max-width: 52.8%;
    }

    
}

@media screen and (max-width: 1280px){
    .planos .planos-div .box .nome h2{
        font-size: 50px;
    }
    .planos .planos-div .box .preco h2 span{
        font-size: 56px;
    }
}

@media screen and (max-width: 1100px){
    .sobre .container{
        flex-wrap: wrap;
        justify-content: center;
    }
    .sobre .texto{
        max-width: 721px;
    }

    .ajudamos .ajudamos-div .box{
        width: calc(100% - 50% - 20px);
    }

    .planos .planos-div .box{
        flex-wrap: wrap;
    }
    .planos .planos-div .box .nome{
        max-width: fit-content;
    }
    .planos .planos-div .box .preco{
        max-width: fit-content;
    }
    .planos .planos-div .box .lista{
        max-width: fit-content;
    }

    
}

/* MOBILE */
@media screen and (max-width: 1000px){
    .sobre .texto h2{
        font-size: 50px;
    }

    .banner-mid .container{
        flex-direction: column;
        gap: 50px;
        padding: 100px 30px 0;
    }
    .banner-mid .img{
        max-width: 717px;
        position: relative;
        bottom: unset;
        right: unset;
    }
    .banner-mid .texto{
        max-width: 100%;
        align-items: center;
    }
}

@media screen and (max-width: 800px){
    main{
        gap: 100px;
        padding-top: 113px;
    }

    .planos .planos-div .box .preco h2 span{
        font-size: 8vw;
    }
}

@media screen and (max-width: 600px){
    .ajudamos .ajudamos-div .box{
        max-width: 310px;
        width: 100%;
    }

    .banner-mid .container{
        padding: 50px 20px 0;
    }

    .sobre .texto h2,
    .ajudamos .titulo h2, .ajudamos .titulo h2 span,
    .planos .titulo h2, .planos .titulo h2 span,
    .sobre-vitare .texto h2, .sobre-vitare .texto h2 span{
        font-size: 40px;
        text-align: center;
    }

    .planos .planos-div .box{
        justify-content: center;
    }
    .planos .planos-div .box .nome{
        max-width: 100%;
        width: 100%;
        text-align: center;
    }
    .planos .planos-div .box .preco h2 span {
        font-size: 50px;
    }
    
}

@media screen and (max-width: 480px){
    .planos .planos-div .box .preco h2 span {
        font-size: 10vw;
    }
    .planos .planos-div .box .preco a{
        max-width: 100%;
    }
}

@media screen and (max-width: 400px){

}

@media screen and (max-width: 375px){

}