/*Font Poppins*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,300&display=swap');

/*Var CSS*/
:root {
    /*Cores*/
    --cor-primaria: rgb(123, 180, 65);
    --white: #fff;
    --black: #000;
    --gray: #262626;
    --grayLight: #4E4E4E;
    --blue: #148FD6;
    --red: #D61414;
    --purple: #6563FF;
    --green: #14D66F;
    --yellow: #FFCB63;
    --turquoise: #63FFF4;
    --orange: #fe6f27;

    /*Sombras*/
    --shadow: 0px 0px 50px rgba(123, 180, 65, .8);
    --shadowBlack: 5px 5px 25px rgba(0, 0, 0, .1);

    /*Font-Size*/
    --h1: 30px;
    --h2: 25px;
    --h3: 20px;
    --text: 15px;
    --infos: 14px;
    --footer: 12px;

    /*Font-Weight*/
    --thin: 100;
    --extra-light: 200;
    --light: 300;
    --light-italic: 1.300: --regular: 400;
    --medium: 500;
    --semi-bold: 600;
    --bold: 700;
}

/*Reset*/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/*Global*/
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: var(--light);
    color: var(--grayLight);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--cor-primaria);
}

::selection {
    background: var(--cor-primaria);
    color: var(--white);
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--white);
}

a.btn {
    padding: 0.6rem 1.6rem;
    color: var(--white);
    background-color: var(--cor-primaria);
    border-radius: 5px;
    transition: 0.5s;
}

a.btn:hover {
    box-shadow: var(--shadow);
    transition: 0.5s;
}

#sobre {
    position: absolute;
    width: 1px;
    height: 1px;
    left: 0;
    margin-top: -35rem;
    background-color: transparent;
    z-index: -1;
}

#beneficios {
    position: absolute;
    width: 1px;
    height: 1px;
    left: 0;
    margin-top: -50px;
    background-color: transparent;
    z-index: -1;
}

/*Header Nav*/
.header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

.nav {
    display: flex;
    justify-content: initial;
    align-items: center;
    height: 5rem;
}

.navLogo img {
    width: 120px;
    max-width: 120px;
}

.navMenu {
    display: flex;
    align-items: center;
    margin-left: auto;
    color: var(--white);
}

.navList {
    display: flex;
}

.navLink {
    margin-left: 1.5rem;
    font-size: var(--text);
    color: var(--white);
    transition: 0.3s;
}

.navLink:hover {
    color: var(--cor-primaria);
    transition: 0.3s;
}

.btnMenu {
    display: none;
}

/*Topo e Whats*/
.whats {
    position: fixed;
    bottom: 1.3rem;
    left: 2rem;
    z-index: 999;
}

.whats img {
    width: 40px;
    height: 40px;
}

.topo {
    display: none;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    text-align: center;
    justify-content: center;
    z-index: 999;

}

.topo i {
    padding: 0.5rem 0.7rem;
    color: var(--white);
    background-color: var(--cor-primaria);
    font-size: var(--h3);
    border-radius: 50%;
    transition: 0.5s;
}

.topo i:hover {
    color: var(--cor-primaria);
    background-color: var(--white);
    transition: 0.5s;
}

.scroll-topo {
    display: block;
}

/*Section Home*/
.box-home {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../img/home1.webp') fixed center;
    background-size: cover;
}

.cont-home {
    position: absolute;
    width: 100%;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -40%);
    text-align: center;
}

.cont-home h3 {
    font-size: var(--h3);
    color: var(--cor-primaria);
    margin-bottom: 0.8rem;
}

.cont-home h1 {
    font-size: var(--h1);
    font-weight: var(--extra-light);
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 2.5rem;
}

/*Section Sobre*/
.boxSobre {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 5rem;
}

.boxCardsInicio {
    position: absolute;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    top: -7rem;
    max-width: 1200px;
}

.cardInicio {
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 2rem;
    margin: 0.5rem;
    border-radius: 5px;
    background-color: var(--white);
    box-shadow: var(--shadowBlack);
}

.cardInicio i {
    font-size: var(--h1);
    color: var(--cor-primaria);
}

.boxInfoSobre {
    display: flex;
    margin-top: 13rem;
    text-align: left;
    justify-content: space-evenly;
    align-items: center;
}

.boxInfoSobre img {
    max-width: 350px;
    margin-right: 2rem;
}

.boxInfoSobre .imgMobile {
    display: none;
}

.infoSobre {
    display: flex;
    flex-direction: column;
}

.infoSobre h3 {
    font-weight: var(--light);
}

.infoSobre h2 {
    font-weight: var(--light);
    margin-bottom: 2rem;
}

.boxInfo {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.info {
    width: 250px;
    margin-top: 1.5rem;
}

.info h3 {
    font-weight: var(--bold);
    transition: 0.5s;
}

.info:hover h3 {
    color: var(--cor-primaria);
    transition: 0.5s;
}

/*Section Frase 1*/
.boxFrase1 {
    position: relative;
    width: 100%;
    height: 30vh;
    background: url("../img/home2.webp") center fixed;
    background-size: cover;
    margin-bottom: 5rem;
}

.contFrase {
    position: absolute;
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
}

.contFrase h2 {
    font-size: var(--h1);
    font-weight: var(--extra-light);
}

.digitando {
    color: var(--cor-primaria);
}

/*Section Beneficios*/
.tituloBeneficios {
    text-align: center;
}

.tituloBeneficios h3 {
    font-weight: var(--light);
}

.tituloBeneficios h2 {
    font-weight: var(--light);
    margin-bottom: 5rem;
}

.tituloBeneficios h2 strong {
    color: var(--cor-primaria);
}

.boxBeneficios {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 5rem;
}

.cardBeneficio {
    border-radius: 5px;
    padding: 2rem 3rem;
    margin: 1rem;
    transition: 0.5s;
}

.cardBeneficio:hover {
    box-shadow: var(--shadowBlack);
    transition: 0.5s;
}

.cardBeneficio i {
    font-size: var(--h1);
}

.cardBeneficio h3 {
    font-size: var(--h3);
    margin-bottom: 1rem;
}

.cardBeneficio i.blue {
    color: var(--blue);
}

.cardBeneficio i.red {
    color: var(--red);
}

.cardBeneficio i.purple {
    color: var(--purple);
}

.cardBeneficio i.green {
    color: var(--green);
}

.cardBeneficio i.yellow {
    color: var(--yellow);
}

.cardBeneficio i.turquoise {
    color: var(--turquoise);
}

/*Section Frase 2*/
.boxFrase2 {
    position: relative;
    width: 100%;
    height: 40vh;
    background: url("../img/home3.webp") center fixed;
    background-size: cover;
    margin-bottom: 5rem;
}

.boxFrase2 h2 {
    margin-bottom: 2rem;
}

/*Section Financeiro*/
.tituloFinanceiro h2 {
    font-size: var(--h2);
    font-weight: var(--light);
    text-align: center;
    margin-bottom: 2rem;
}

.boxFinanceiro {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    text-align: center;
    margin-bottom: 5rem;
}

.cardFinanceiro {
    padding: 0 2rem;
    margin: 1rem;
    transition: 0.5s;
    transition: 0.5s;
    cursor: default;
}

.cardFinanceiro i {
    font-size: var(--h1);
}

.cardFinanceiro h3 {
    margin-bottom: 1rem;
    transition: 0.5s;
}

.cardFinanceiro:hover i,
.cardFinanceiro:hover h3 {
    color: var(--cor-primaria);
    transition: 0.5s;
}

/*Section Contato*/
#contato {
    background-color: var(--gray);
}

.fraseContato {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    padding: 3rem 0;
}

.fraseContato h2 {
    font-size: var(--h2);
}

.fraseContato .btnContato {
    margin-top: 0.6rem;
}

.boxContato hr {
    opacity: 0.2;
    margin-bottom: 3rem;
}

.contContato {
    display: flex;
    justify-content: space-between;
    color: var(--white);
}

.descricaoContato,
.intagramContato {
    margin-right: 3rem;
}

.contContato img {
    width: 120px;
    margin-bottom: 1rem;
}

.contContato p {
    font-size: var(--infos);
    margin-bottom: 1rem;
}

.faleConosco h3,
.insta h3{
    margin-bottom: 1rem;
}

.faleConosco p {
    cursor: pointer;
    transition: 0.5s;
}

.faleConosco p:hover {
    color: var(--cor-primaria);
    transition: 0.5s;
}

.insta i {
    font-size: var(--h2);
    transition: 0.5s;
}

.insta i:hover {
    color: var(--cor-primaria);
    transition: 0.5s;
}

/*Footer*/
footer {
    padding: 2rem 0;
    background-color: var(--gray);
    color: var(--white);
    font-weight: var(--extra-light);
    font-size: var(--footer);
}

.boxFooter {
    display: flex;
    justify-content: space-between;
}

.boxFooter span {
    color: var(--orange);
    cursor: pointer;
}

/*Media Queries*/
@media screen and (max-width: 1250px) {

    /*Global*/
    .container {
        padding: 0 2rem;
    }

    /*Section Beneficios*/
    .cardBeneficio {
        padding: 2rem 2rem;
        margin: 0.5rem;
    }

    /*Section Contato*/
    .descricaoContato,
    .faleConosco {
        margin-right: 4rem;
    }
}

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

    /*Section Sobre*/
    .boxCardsInicio {
        grid-template-columns: 1fr 1fr;
    }

    .boxInfoSobre {
        margin-top: 25rem;
    }

    .boxInfoSobre img {
        max-width: 320px;
    }

    /*Section Financeiro*/
    .cardFinanceiro {
        padding: 1.5rem;
        margin: 0.5rem;
    }

    /*Section Contato*/
    .contContato {
        flex-wrap: wrap;
    }

    .contContato div {
        margin-bottom: 2rem;
    }
}

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

    /*Section Sobre*/
    #sobre {
        margin-top: -1rem;
    }

    .boxSobre {
        margin-bottom: 3rem;
    }

    .boxInfoSobre {
        flex-direction: column;
    }

    .boxInfoSobre .imgDesktop {
        display: none;
    }

    .boxInfoSobre .imgMobile {
        display: block;
    }

    .boxInfoSobre img.imgMobile {
        max-width: 100%;
        margin: 0 0 3rem 0;
    }

    .infoSobre {
        width: 100%;
        text-align: center;
    }

    .info {
        width: 100%;
        margin-bottom: 2rem;
    }

    /*Section Frase*/
    .boxFrase {
        margin-bottom: 3rem;
    }

    .tituloBeneficios h2 {
        margin-bottom: 3rem;
    }

    .boxBeneficios {
        grid-template-columns: 1fr 1fr;
    }

    /*Section Beneficios*/
    .boxBeneficios {
        margin-bottom: 3rem;
    }

    .boxFinanceiro {
        margin-bottom: 3rem;
    }

    /*Section Contato*/

}

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

    /*Header Nav*/
    .nav {
        justify-content: space-between;
        height: 5rem;
    }

    .navMenu {
        position: fixed;
        flex-direction: column;
        width: 100%;
        height: 100%;
        top: 0;
        right: -100%;
        padding: 6rem 2rem;
        background-color: var(--black);
        font-weight: var(--light);
        transition: 0.5s;
    }

    .navList {
        text-align: center;
        flex-direction: column;
    }

    .navItem {
        margin-bottom: 2.5rem;
    }

    .navLink {
        font-size: var(--h3);
        margin-left: 0;
    }

    .btnMenu {
        display: block;
        z-index: 999;
    }

    .btnMenu i {
        font-size: var(--h3);
        color: var(--white);
    }

    .show {
        right: 0;
    }

    /*Topo e Whats*/
    .whats {
        bottom: 0.8rem;
        left: 1rem;
    }

    .topo {
        bottom: 1.5rem;
        right: 1rem;
    }

    /*Section Home*/
    .cont-home {
        padding: 0 1rem;
    }

    .cont-home h3 {
        font-size: var(--text);
    }

    .cont-home h1 {
        font-size: var(--h2);
    }

    /*Section Sobre*/
    #sobre {
        margin-top: -5rem;
    }

    /*Section Beneficios*/
    .boxBeneficios {
        grid-template-columns: 1fr;
    }

    /*Section Frase 2*/
    .contFrase h2 {
        font-size: var(--h3);
    }

    /*Section Financeiro*/
    .boxFinanceiro {
        grid-template-columns: 1fr;
    }

    /*Section Contato*/
    .fraseContato h2 {
        font-size: var(--h3);
    }
}

@media screen and (max-width: 650px){
    .descricaoContato,
    .faleConosco,
    .insta{
        margin-right: 0;
    }
}

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

    /*Section Sobre*/
    #sobre {
        margin-top: -45rem;
    }

    .boxCardsInicio {
        grid-template-columns: 1fr;
    }

    .boxInfo {
        display: grid;
        grid-template-columns: 1fr;
    }

    .boxInfoSobre {
        margin-top: 55rem;
    }

    /*Section Beneficios*/
    .cardBeneficio {
        padding: 0;
        margin-bottom: 3rem;
    }

    /*Section Financeiro*/
    .cardFinanceiro {
        padding: 0;
        margin-bottom: 3rem;
    }

    /*Section Contato*/
    .fraseContato {
        flex-direction: column;
        text-align: center;
    }

    .fraseContato h2 {
        margin-bottom: 1rem;
    }

    /*Footer*/
    .boxFooter {
        text-align: center;
        flex-direction: column;
    }

    .direitos {
        margin-bottom: 1rem;
    }
}