/* ----- IMPORTANDO FONTES ----- */
@import url('assets/fonts/fonts.css');
/* ----- RESETS ----- */
*{
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
}
/* ----- GENERAL ----- */
body{
    font-family: 'Roboto', sans-serif;
}
.section{
    padding: 8vw 0;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}
.title{
    margin-bottom: 1.5vw;
    font-size: 3vw;
    font-weight: normal;
    color: #292929;
    text-shadow: 0 3px 6px rgba(0,0,0,0.29);
}
.text{
    width: 50vw;
    margin-bottom: 6vw;
    font-size: 1.2vw;
    color: #292929;
    text-align: center;
    text-shadow: 0 3px 6px rgba(0,0,0,0.29);
}
.button{
    padding: 1.4vw 3.5vw;
    background: #82CA9C;
    font-size: 1.1vw;
    color: #FFF;
    cursor: pointer;
}
/* ----- GENERAL SMALL DEVICES ----- */
@media(max-width: 768px){
    .section{
        padding: 14vw 10vw;
    }
    .title{
        margin-bottom: 8vw;
        font-size: 11vw;
        text-align: center;
    }
    .text{
        margin-bottom: 16vw;
        width: 100%;
        font-size: 4.5vw;   
    }
    .button{
        padding: 5vw 10vw;
        font-size: 5vw;
    }
}
/* ----- NAVBAR ----- */
.navbar{
    height: 15vh;
    min-height: 6vw;
    width: 100%;
    padding: 0 6.5vw 0 12.5vw;
    background: #FFF;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}
.navbar__logo{
    width: 14vw;
}
.navbar__link{
    margin: 0 1vw;
    font-size: 1.1vw;
    color: #000;
    text-transform: uppercase;
    transition: all 0.5s;
}
.navbar__link:hover{
    color: #82CA9C;
}
.navbar__link--active{
    color: #82CA9C;
}
.navbar__button{
    margin: 0 1vw;
    padding: 0.5vw 2vw;
    border: 1px solid #82CA9C;
    border-radius: 2vw;
    font-size: 1vw;
    color: #82CA9C;
    text-transform: uppercase;
    transition: all 0.5s;
}
.navbar__button:hover{
    background: #82CA9C;
    color: #FFF;
}
.navbar__bars{
    display: none;
}
/* ----- NAVBAR MEDIUM DEVICES----- */
@media(max-width: 1366px){
    .navbar{
        max-height: 10vw;
    }
    .navbar__link{
        font-size: 1.5vw;
    }
    .navbar__button{
        font-size: 1.4vw;
    }
}
/* ----- NAVBAR SMALL DEVICES----- */
@media(max-width: 768px){
    .navbar{
        min-height: 15vh;
        max-height: 15vh;
        padding: 0 10vw 0 5vw;
    }
    .navbar__logo{
        width: 50vw;
    }
    .navbar__links{
        height: auto;
        border-bottom: 1px solid #DEDEDE;
        position: absolute;
        z-index: 1000;
        top: 15vh;
        right: 0;
        display: none;
    }
    .navbar__link{
        height: 16vw;
        width: 100vw;
        background: #FFF;
        margin: 0;
        border-top: 1px solid #DEDEDE;
        font-size: 6vw;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .navbar__button{
        display: none;
    }
    .navbar__bars{
        padding: 1.5vw 3vw;
        border: 1px solid #DEDEDE;
        border-radius: 1vw;
        display: block;
        cursor: pointer;
    }
    .bars:after{    
        content: "\f0c9"; 
        font-family: 'FontAwesome-Solid';
        font-size: 6vw;
        color: #6f6f6f;
    }
}
/* ----- HOME ----- */
.home{
    min-height: 85vh;
    width: 100%;
    background: url(assets/images/homebg.jpg) center;
    background-size: cover;
    color: #FFF;
}
.home__title{
    margin-bottom: 1.5vw;
    font-size: 3vw;
}
.home__text{
    width: 65vw;
    margin-bottom: 6vw;
    font-size: 1.15vw;
    text-align: center;
    text-shadow: 0 3px 6px rgba(0,0,0,0.29);
}
.home__form{
    height: 82px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}
.home__input{
    height: 100%;
    width: 363px;
    padding: 34px;
    border: 1px solid #DDDDDD;
}
.home__button{
    height: 100%;
    width: 202px;
    background: #82CA9C;
    font-size: 20px;
    color: #FFF;
    cursor: pointer;
}
/* ----- HOME SMALL DEVICES----- */
@media(max-width: 768px){
    .home__title{
        margin-bottom: 4vw;
        font-size: 11vw;
        text-align: center;
    }
    .home__text{
        width: 75vw;
        margin-bottom: 10vw;
        font-size: 5vw;
    }
    .home__form{
        height: 15vw;
        margin-bottom: 20vw;
    }
    .home__input{
        width: 50vw;
        padding: 5vw;
    }
    .home__button{
        width: 30vw;
        font-size: 4.5vw;
    }
}
/* ----- PRODUCT ----- */
.product__box{
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}
.product__box:first-child{
    margin-bottom: 6vw;
}
.product__image{
    width: 35vw;
}
.product__info{
    width: 50vw;
    margin: 6vw 0 0 6vw;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start;
}
.product__title{
    font-size: 3vw;
    font-weight: normal;
    color: #292929;
    text-shadow: 0 3px 6px rgba(0,0,0,0.29);
}
.product__texts{
    margin: 2vw 0 4vw;
}
.product__text{
    width: 32vw;
    font-size: 1.2vw;
    color: #292929;
    text-shadow: 0 3px 6px rgba(0,0,0,0.29);
    margin: 1vw 0;
}
/* ----- PRODUCT SMALL DEVICES----- */
@media(max-width: 768px){
    .product__box{
        flex-direction: column;
    }   
    .product__image{
        width: 80vw;
        order: -1;
    }
    .product__info{
        width: 80vw;
    }
    .product__title{
        margin: 6vw 0 4vw;
        font-size: 9vw;
    }
    .product__texts{
        margin-bottom: 6vw;
    }
    .product__text{
        width: 100%;
        margin: 3vw 0;
        font-size: 4.5vw;
    }
}
/* ----- SERVICE ----- */
.service{
    background: #F7F7F7;
}
.service__container{
    margin: 0 20vw;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-content: center;
}
.service__box{
    width: 25vw;
    margin-bottom: 4vw;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}
.service__image{
    width: 5vw;
    margin-right: 2vw;
}
.service__info{
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start;
}
.service__name{
    margin-bottom: 1vw;
    font-size: 1.5vw;
    font-weight: normal;
    color: #292929;
    text-transform: uppercase;
}
.service__text{
    font-size: 1.15vw;
    color: #6E6E6E;
}
/* ----- SERVICE SMALL DEVICES ----- */
@media(max-width: 768px){
    .service__container{
        margin: 0;
        flex-flow: column nowrap;
    }
    .service__box{
        width: 80vw;
        flex-direction: column;
        align-items: flex-start;
    }
    .service__image{
        width: 30vw;
    }
    .service__name{
        margin: 3vw 0;
        font-size: 9vw;
    }
    .service__text{
        margin-bottom: 10vw;
        font-size: 5.5vw;
    }
}
/* ----- PACKAGE ----- */
.package__container{
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}
.package__box{
    width: 387px;
    margin: 0 1vw;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}
.package__info{
    height: 153px;
    width: 100%;
    border: 1px solid #82CA9C;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}
.package__name{
    font-size: 20px;
    font-weight: normal;
    color: #000;
    text-transform: uppercase;
    text-shadow: 0 3px 6px rgba(0,0,0,0.29);
}
.package__price{
    font-size: 20px;
    font-weight: normal;
    color: #000;
    text-transform: uppercase;
    text-shadow: 0 3px 6px rgba(0,0,0,0.29);
}
.package__price:after{
    content: "/MO";
    font-size: 15px;
}
.package__content{
    height: 313px;
    width: 100%;
    border-left: 1px solid #D9D9D9;
    border-right: 1px solid #D9D9D9;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;    
}
.package__list{
    margin: 18px 0;
    font-size: 20px;
    color: #000;
    text-align: center;
    text-shadow: 0 3px 6px rgba(0,0,0,0.29);
}
.package__button{
    height: 72px;
    width: 100%;
    background: #82CA9C;
    font-size: 20px;
    color: #FFF;
    text-transform: uppercase;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center; 
    cursor: pointer;
}
.package--active{
    background: #82CA9C;
}
.package__info--active{
    color: #FFF;
}
/* ----- PACKAGE MEDIUM DEVICES----- */
@media(max-width: 1366px){
     .package__box{
        width: 28vw;
        margin: 0 1.5vw;
    }
    .package__info{
        height: auto;
        padding: 4vw 0;
    }
    .package__name{
        font-size: 2vw;
    }
    .package__price{
        font-size: 1.8vw;
    }
    .package__price:after{
        content: "/MO";
        font-size: 1.4vw;
    }
    .package__content{
        height: auto;
        padding: 3vw 0;
    }
    .package__list{
        margin: 2vw 0;
        font-size: 1.5vw;
    }
    .package__button{
        height: 6vw;
        font-size: 1.8vw;
    }
}
/* ----- PACKAGE SMALL DEVICES----- */
@media(max-width: 768px){
    .package__container{
        flex-direction: column;
    }
    .package__box{
        width: 80vw;
        margin: 6vw 0;
    }
    .package__info{
        height: auto;
        padding: 10vw 0;
    }
    .package__name{
        font-size: 7vw;
    }
    .package__price{
        font-size: 5vw;
    }
    .package__price:after{
        content: "/MO";
        font-size: 3.8vw;
    }
    .package__content{
        height: auto;
        padding: 10vw 0;
    }
    .package__list{
        margin: 5vw 0;
        font-size: 5vw;
    }
    .package__button{
        height: 20vw;
        font-size: 4vw;
    }
}
/* ----- BUSINESS ----- */
.business{
    background: #F7F7F7;
}
.business__container{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-content: center;
}
.business__box{
    width: 19vw;
    margin: 1vw;
    padding: 1vw 1.5vw 4vw;
    border: 1px solid #707070;
    background: #FFF;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}
.business__image{
    width: 25%;
}
.business__separator{
    height: 1px;
    width: 30%;
    margin: 1vw 0 2vw;
    background: #D9D9D9;
}
.business__title{
    margin-bottom: 2vw;
    font-size: 1vw;
    color: #000;
    text-transform: uppercase;
    text-shadow: 0 3px 6px rgba(0,0,0,0.29);
}
.business__text{
    font-size: 0.9vw;
    color: #777777;
    text-align: center;
    text-shadow: 0 3px 6px rgba(0,0,0,0.29);
    line-height: 1.5vw;
}
/* ----- BUSINESS SMALL DEVICES ----- */
@media(max-width: 768px){
    .business__container{
        flex-direction: column;
    } 
    .business__box{
        width: 80vw;
        margin: 4vw 0;
    }
    .business__title{
        margin: 4vw;
        font-size: 5.5vw;
    }
    .business__text{
        margin: 0 10% 8vw;
        font-size: 3.5vw;
        line-height: 8vw;
    }
}
/* ----- CONTACT ----- */
.contact__container{
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: flex-start;
}
.contact__form{
    width: 25vw;
    margin: 0 1vw;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}
.contact__input{
    height: 56px;
    width: 100%;
    margin-bottom: 2vw;
    padding: 17px;
    border: 1px solid #C7C7C7;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}
.contact__input--message{
    height: 177px;
}
.contact__info{
    width: 30vw;
    margin: 0 1vw;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}
.contact__text{
    margin-bottom: 2vw;
    font-size: 1.3vw;
    color: #606060;
    text-shadow: 0 3px 6px rgba(0,0,0,0.29);
}
.social-media{
    margin-right: 1.5vw;
    font-size: 2.5vw;
    color: #7E7E7E;
}
.facebook:after{    
    content: "\f09a"; 
    font-family: 'FontAwesome-Brand';
}
.linkedin:after{
    content: "\f0e1"; 
    font-family: 'FontAwesome-Brand';
}
/* ----- CONTACT SMALL DEVICES ----- */
@media(max-width: 768px){
    .contact__container{
        flex-direction: column;
    }
    .contact__form{
        width: 75vw;
        margin-bottom: 16vw;
    }
    .contact__input{
        margin-bottom: 8vw;
    }
    .contact__info{
        width: 75vw;
    }
    .contact__text{
        font-size: 5vw;
        margin-bottom: 6vw;
    }
    .social-media{
        margin-right: 4vw;
        font-size: 10vw;
    }
}
/* ----- FOOTER ----- */
.footer__container{
    padding: 6vw 9vw;
    background: #EAEAEA;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
}
.footer__box{
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start;
}
.footer__title{
    margin-bottom: 3vw;
    font-size: 1vw;
    color: #1D1D1D;
}
.footer__link{
    margin-bottom: 0.5vw;
    font-size: 1vw;
    color: #1D1D1D;
    text-transform: uppercase;
}
.footer__text{
    width: 18vw;
    font-size: 0.95vw;
    color: #000;
}
.footer__form{
    height: 3.5vw;
    width: 20vw;
    margin-top: 2vw;
    display: flex;
    flex-flow: row nowrap;
}
.footer__input{
    height: 100%;
    width: 11.25vw;
    padding: 1vw;
}
.footer__button{
    height: 100%;
    width: 8.75vw;
    background: #82CA9C;
    font-size: 12px;
    color: #FFF;
    cursor: pointer;
}
.footer__logo{
    width: 14vw;
    margin: 3vw 9vw;
}
/* ----- FOOTER SMALL DEVICES ----- */
@media(max-width: 768px){
    .footer__container{
        flex-direction: column;
    }
    .footer__box{
        margin: 6vw 0;
    }
    .footer__title{
        margin-bottom: 8vw;
        font-size: 5vw;
    }
    .footer__link{
        margin-bottom: 3vw;
        font-size: 4.2vw;
    }
    .footer__text{
        width: 90%;
        font-size: 4vw;
    }
    .footer__form{
        margin: 8vw 0 4vw;
        height: 15vw;
        width: 80vw;
    }
    .footer__input{
        width: 60%;
        font-size: 10px;
    }
    .footer__button{
        width: 40%;
    }
    .footer__logo{
        width: 60vw;
        margin: 8vw calc(50% - 30vw) 6vw;
    }
}