/*Font Poppins*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap');

/*Var CSS*/
:root {
    /*Cores*/
    --primaryColor: #a200b4;
    --gradient: linear-gradient(to right, rgba(255, 255, 255, .5), #a200b4);
    --white: #fff;
    --black: #000;
    --gray: #191919;
    --grayLight: #F8F8F8;
    --border: #d4d4d4;
    --green: #14D66F;
    --red: #D61414;
    --purple: #6563FF;
    --yellow: #fcd143;
    --pink: #fc438a;
    --orange: #f76927;
    --blue: #275ff7;

    /*Sombras*/
    --shadowBlack: 0px 0px 30px rgba(0, 0, 0, .15);

    /*Font-Size*/
    --h1: 105px;
    --h2: 25px;
    --h3: 20px;
    --h4: 50px;
    --h5: 23px;
    --linkMenu: 17px;
    --text: 15px;
    --infos: 14px;
    --footer: 12px;

    /*Font-Weight*/
    --extraLight: 200;
    --light: 300;
    --regular: 400;
    --medium: 500;
    --semiBold: 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(--gray);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primaryColor);
}

::selection {
    background: var(--primaryColor);
    color: var(--white);
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    /* background-color: rgb(111, 216, 190); */
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--white);
}

h1 {
    font-size: var(--h3);
    font-weight: var(--extraLight);
    color: var(--white);
}

h2 {
    font-size: var(--h2);
    font-weight: var(--semiBold);
    color: var(--white);
}

h3 {
    font-size: var(--h3);
    font-weight: var(--extraLight);
    color: var(--primaryColor);
}

h4 {
    font-size: var(--h4);
    font-weight: var(--bold);
    color: var(--gray);
}

#home,
#about,
#service,
#faleConosco,
#contact {
    position: absolute;
    width: 1px;
    height: 1px;
    left: 0;
    background-color: transparent;
    z-index: -1;
}

#faleConosco {
    margin-top: -50px;
}

.btn {
    padding: 0.7rem 1.8rem;
    border: 1px solid #a200b4;
    border-radius: 5px;
    transition: 0.5s;
}

.btn:hover {
    background-color: var(--primaryColor);
    transition: 0.5s;
}

/*Header Nav*/
.header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 0 3rem;
}

.nav {
    display: flex;
    justify-content: initial;
    align-items: center;
    height: 8rem;
}

.navLogo img {
    width: 170px;
    max-width: 170px;
}

.navMenu {
    display: flex;
    align-items: center;
    margin-left: auto;
    color: var(--white);
}

.navList {
    display: flex;
}

.navLink {
    margin-left: 1.5rem;
    font-size: var(--linkMenu);
    color: var(--white);
    transition: 0.3s;
}

.navLink:hover {
    color: var(--primaryColor);
    transition: 0.3s;
}

.navLink.fone {
    margin-left: 4rem;
}

.navLink.fone i {
    color: var(--primaryColor);
    font-size: var(--h3);
}

.navLink.btn:hover{
    color: var(--branco);
}

.btnMenu {
    display: none;
}

/*Section Home*/
.networks {
    position: absolute;
    display: flex;
    flex-direction: column;
    bottom: 0.5rem;
    left: 2rem;
    font-size: var(--h3);
    z-index: 999;
}

.networks a {
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.video-background img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.contHome {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 80vh;
    align-items: center;
}

.textHome {
    text-align: center;
    margin-top: 3rem;
}

.textHome h1 {
    font-size: 70px;
    letter-spacing: -2px;
    line-height: 70px;
    font-weight: bold;
    margin-bottom: 2.7rem;
    text-shadow: 0 0 50px rgba(0, 0, 0, .8);
}

/*Section Sobre*/
.backgroundAbout {
    background: linear-gradient(90deg, rgba(245, 245, 245) 60%, rgba(255, 255, 255) 30%);
    background-image: url('../assets/imgBackground.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.boxAbout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7rem 0;
}

.about {
    width: 60%;
    padding: 0 4rem 0 0;
    font-weight: var(--extraLight);
}

.titleAbout{
    margin-bottom: 2rem;
}

.about .bold {
    font-weight: var(--light);
    margin-bottom: 1.5rem;
}

.boxIconsAbout {
    display: flex;
    margin-top: 2rem;
}

.iconsAbout {
    margin-right: 2rem;
}

.iconsAbout i {
    font-size: var(--h4);
}

.iconsAbout h4 {
    font-size: var(--h3);
    font-weight: var(--light);
}

.years span.spanInfoMusicas {
    font-size: 1.5rem;
    margin-right: 1.5rem;
}

.years span.number {
    font-family: 'Montserrat', sans-serif;
    font-size: 220px;
    font-weight: bold;
    color: transparent;
    background: url('../assets/text-image.jpg');
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -ms-background-clip: text;
}

.years h4 {
    color: var(--primaryColor);
    /* margin: -2rem 0 0 0; */
    line-height: 50px;
}

/*Servicos*/
.boxServicos {
    padding: 5rem 0;
}

.tituloServicos {
    margin-bottom: 2.5rem;
}

.boxCardServicos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.boxCardServicos.beneficios{
    grid-template-columns: 1fr 1fr 1fr;
}

.cardServico {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 3rem;
    transition: 0.5s;
}

.cardServico h3 {
    font-weight: 600;
}

.cardServico i {
    font-size: 2rem;
}

.cardServico:hover {
    transition: 0.5s;
}

.cardServico.roxo {
    background-color: var(--primaryColor);
    color: var(--white);
}

.cardServico.roxo h3 {
    color: var(--white);
}

.cardServico.branco {
    background-color: var(--branco);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.cardServicoContato {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cardServicoContato a {
    color: var(--primaryColor);
}

.cardServicoContato a:hover {
    color: var(--white);
}

.cardServico.fullSize h3 {
    text-align: center;
    color: var(--gray);
}

.boxServicos.boxClientes .cardServico h3 {
    font-weight: 300;
}

/*Frase*/
.infos {
    position: relative;
    display: flex;
    min-height: 35vh;
    background: url('../assets/infos.jpg') center fixed;
    background-size: cover;
    margin-bottom: 4rem;
}

.infos::before {
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, 0.85);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.itens-infos {
    position: absolute;
    width: 1200px;
    max-width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    align-items: center;
    color: var(--white);
}

.itens-infos h1 {
    font-size: 1.5rem;
}

.itens-infos h1 span {
    color: var(--primaryColor);
    font-weight: 600;
}

/*Section Servicos*/
.boxVantagens {
    margin-bottom: 4rem;
}

.boxInfoVantagens {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 500px;
}

.imgVantagens {
    width: 100%;
    overflow: hidden;
}

.infoVantagens {
    height: 500px;
}

.cardInfoVantagens {
    display: flex;
    height: 250px;
    align-items: center;
    padding: 0 5rem;
}

.cardInfoVantagens.full {
    background-color: var(--gray);
    font-size: 35px;
    font-weight: var(--bold);
}

.cardInfoVantagens.full.animateBottom1 {
    color: var(--white);
}

.contVantagens {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.cardVantagens {
    padding: 4rem 4rem;
    transition: 0.5s;
}

.cardVantagens i {
    font-size: 30px;
}

.cardVantagens i.green {
    color: var(--green);
}

.cardVantagens i.purple {
    color: var(--purple);
}

.cardVantagens i.red {
    color: var(--red);
}

.cardVantagens i.primary {
    color: var(--primaryColor);
}

.cardVantagens i.blue {
    color: var(--blue);
}

.cardVantagens i.yellow {
    color: var(--yellow);
}

.cardVantagens i.orange {
    color: var(--orange);
}

.cardVantagens i.pink {
    color: var(--pink);
}

.cardVantagens h4 {
    font-size: var(--h2);
}

.cardVantagens:hover {
    box-shadow: var(--shadowBlack);
    transition: 0.5s;
}

/* Estatisticas */
.fundoEstatisticas {
    position: relative;
    background: linear-gradient(to bottom, var(--gray) 70%, #fff 30%);
    margin-bottom: 3rem;
}

.fundoEstatisticas p{
    font-size: 1.5rem;
    text-align: center;
}

.dadosEstatisticas {
    padding: 2rem 0;
    color: var(--branco);
}

.boxEstatisticas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 500px;
    margin-bottom: 3rem;
}

.imgEstatisticas {
    width: 100%;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.imgEstatisticas img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.infoEstatisticas {
    height: 500px;
}

.cardInfoEstatisticas {
    display: flex;
    height: 250px;
    align-items: center;
    justify-content: center;
    padding: 0 4rem;
}

.cardInfoEstatisticas p {
    line-height: 2.4rem;
}

.cardInfoEstatisticas.full {
    background-color: var(--white);
    color: var(--gray);
    font-size: 35px;
    font-weight: var(--bold);
    border-top-right-radius: 20px;
}

.cardInfoEstatisticas.fullCinza {
    background-color: var(--primaryColor);
    color: var(--white);
    border-bottom-right-radius: 20px;
}

.cardInfoEstatisticas.fullCinza p {
    line-height: 1.5rem;
    font-size: 2.5rem;
    font-weight: var(--bold);
    line-height: 2.4rem;
}

/* Beneficios e Vantagens */
.boxBeneficios {
    padding: 5rem 0;
}

.boxCardsBeneficios {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 5rem;
}

.cardBeneficio {
    padding: 2rem 3rem;
    transition: 0.5s;
}

.cardBeneficio h3 {
    margin-bottom: 0.5rem;
}

.cardBeneficio:hover {
    transition: 0.5s;
}

.cardBeneficio.verde {
    background-color: var(--corPrimaria);
    color: var(--branco);
}

.cardBeneficio.branco {
    background-color: var(--branco);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.cardBeneficio i {
    font-size: 1.5rem;
    color: var(--corPrimaria);
}

/*FAQ*/
/*FAQ*/
.boxFaq {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 0 2.5rem 0;
    padding: 0 1.5rem;
}

.tituloDuvidas {
    margin-bottom: 1.5rem;
}

.boxPerguntas {
    display: flex;
    gap: 0.5rem;
}

.perguntasItem {
    background-color: var(--white);
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
}

.pergunta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    column-gap: .5rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    background-color: var(--grayLight);
    border: 1px solid var(--border);
    border-radius: 5px;

}

.pergunta span {
    color: var(--text);
    font-weight: 500;
}

.pergunta i {
    font-size: 1.3rem;
    color: var(--primaryColor);
}

.boxRespostas {
    overflow: hidden;
    height: 0;
}

.resposta {
    margin-top: 0.5rem;
    padding: 1rem 1.5rem;
    text-align: left;
    background-color: var(--primaryColor);
    color: var(--white);
    border-radius: 5px;
    font-weight: 300;
}

.resposta a {
    color: var(--white);
    font-weight: 700;
}

.perguntasItem,
.pergunta,
.boxRespostas,
.resposta {
    transition: 0.5s;
}

.boxFaq {
    margin-bottom: 5rem;
}

/*Section Fale Conosco*/
.titleFaleConosco {
    text-align: center;
    padding: 0 1.5rem;
}

/*Section Contact*/
.phrasecontact {
    background-color: var(--primaryColor);
}

.boxPhrase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 0;
}

.phrase h4 {
    margin: 0;
}

.phrase h3 {
    margin: 0;
    color: var(--white);
}

.btn.contact {
    background-color: var(--gray);
    color: var(--white);
}

.btn.contact:hover {
    background-color: var(--white);
    color: var(--primaryColor);
}

.contContact {
    background-color: var(--grayLight);
}

.boxContact {
    display: flex;
    justify-content: space-between;
    color: var(--gray);
    padding: 6rem 0 3rem 0;
}

.boxContact h5 {
    font-size: var(--h5);
    font-weight: var(--semiBold);
    margin-bottom: 1rem;
}

.boxContact p {
    margin-bottom: 1rem;
}

.boxContact a {
    color: var(--gray);
}

.social i {
    font-size: 35px;
    transition: 0.5s;
}

.social i:hover {
    color: var(--primaryColor);
    transition: 0.5s;
}

.logoRodape {
    width: 250px;
    max-width: 250px;
}

/*Footer*/
footer {
    background-color: var(--gray);
    padding: 1.5rem 0;
    font-size: var(--footer);
    color: var(--white);
}

.boxFooter {
    display: flex;
    justify-content: space-between;
}

.boxFooter a {
    font-weight: var(--semiBold);
}



@media only screen and (min-width: 768px) {
    .whatsapp-chat .hide-mobile {
        display: none
    }
}

@media only screen and (max-width: 767px) {
    .whatsapp-chat .hide-web {
        display: none;
    }
}

.whatsapp-chat {
    position: fixed;
    z-index: 999;
    bottom: 10px;
    right: 10px;
}

.whatsapp-chat img {
    height: 35px;
    width: auto;
}

.pulse {
    cursor: pointer;
    animation: pulse 2s infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.3);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}

@keyframes pulse {
    10% {
        -moz-box-shadow: 0 0 0 0 #128c7e;
        box-shadow: 0 0 0 0 #128c7e;
    }

    80% {
        -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 15px rgba(204, 169, 44, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.3);
        box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}

#Msg .JanelaWhatsAberta {
    border-width: 3px !important;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    margin-left: 18px;
    z-index: 99999999;
    bottom: -5px;
    height: 37px;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    background-color: #128c7e !important;
    width: 250px;
}

#Msg .JanelaWhatsAberta.yp_onscreen {
    animation-duration: 1s;
    animation-delay: 0s;
    animation-name: bob;
}

.WhatsCel .Whatsclose {
    background-color: #128c7e !important;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

#Msg #pop .WhatsCel {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

/*Media Queries*/
@media screen and (max-width: 1600px) {
    .contHome {
        justify-content: center;
    }

    .cardHome {
        width: 410px;
        height: 640px;
    }

    .years {
        margin-right: 3rem;
    }

}

@media screen and (max-width: 1400px) {
    .cardHome {
        width: 320px;
        height: 460px;
    }

    .years {
        margin-right: 5rem;
    }

}

@media screen and (max-width: 1250px) {
    .years {
        margin-right: 6rem;
    }

    .boxPhrase {
        padding: 4rem 2rem;
    }

    .boxContact {
        padding: 6rem 2rem 3rem 2rem;
    }

    footer {
        padding: 1.5rem 2rem;
    }
}

@media screen and (max-width: 1200px) {
    .boxAbout {
        padding: 7rem 1.5rem;
    }

    .boxServicos {
        padding: 5rem 1.5rem;
    }

    .boxVantagens {
        padding: 0 1.5rem;
    }

    .boxEstatisticas {
        padding: 0 1.5rem;
    }

    .boxBeneficios {
        padding: 5rem 1.5rem;
    }
}

@media screen and (max-width: 1190px) {

    /*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;
    }

    .navLink.fone {
        margin-left: 0;
    }

    .btnMenu {
        display: block;
        z-index: 999;
    }

    .btnMenu i {
        font-size: var(--h3);
        color: var(--white);
    }

    .show {
        right: 0;
    }

    /*Section Home*/
    .boxHome:before {
        width: 100%;
    }

    .contHome {
        text-align: center;
    }

    .cardHome {
        display: none;
    }

    .textHome h1 span {
        margin-left: 0;
    }

    .networks {
        flex-direction: row;
    }

    .networks a {
        margin-right: 1.5rem;
    }

    .boxContact {
        flex-wrap: wrap;
    }

    .social {
        margin-top: 1.5rem;
    }

    .boxCardServicos {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 1000px) {
    .backgroundAbout {
        background: linear-gradient(90deg, rgba(245, 245, 245) 60%, rgba(245, 245, 245) 30%);
    }

    .textHome h1 {
        font-size: 60px;
        line-height: 60px;
    }

    .boxAbout {
        flex-direction: row;
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }

    .about {
        width: 100%;
        padding: 0;
        text-align: left;
    }

    .years {
        margin: 3rem 0 0 0;
    }

    .boxPhrase {
        flex-direction: column;
        text-align: center;
    }

    .phrase h3 {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 960px) {

    /* Estatisticas */
    .fundoEstatisticas {
        margin-top: -0.5rem;
    }

    .boxEstatisticas {
        grid-template-columns: 1fr;
        height: auto;
    }

    .imgEstatisticas {
        display: flex;
        height: 300px;
        align-items: center;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .imgEstatisticas img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .cardInfoEstatisticas.full {
        border-top-right-radius: 0;
    }

    .cardInfoEstatisticas.fullCinza {
        border-bottom-left-radius: 20px;
    }

    .boxCardsBeneficios {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 850px) {
    .boxPerguntas {
        flex-direction: column;
        gap: 0;
    }
}

@media screen and (max-width: 800px) {
    .boxCardsBeneficios {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 790px) {
    .textHome h1 {
        font-size: 50px;
        line-height: 50px;
    }

    .boxInfoVantagens {
        display: grid;
        grid-template-columns: 1fr;
        height: auto;
    }

    .imgVantagens {
        height: 300px;
        overflow: hidden;
    }

    .imgVantagens img {
        max-width: 100%;
    }

    .contVantagens {
        grid-template-columns: 1fr;
    }

    .boxContact {
        flex-direction: column;
    }

    .contact {
        margin-top: 1rem;
    }

    .boxFooter {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 680px) {
    .boxCardServicos {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 615px) {
    .textHome h1 {
        font-size: 40px;
        line-height: 40px;
    }
}

@media screen and (max-width: 585px) {
    .itens-infos {
        padding: 0 2rem;
    }
}

@media screen and (max-width: 480px) {
    .header {
        padding: 0 1.5rem;
    }

    .cardInfoVantagens.full {
        font-size: 32px;
    }

    .titleFaleConosco {
        margin-bottom: 1.5rem;
    }

    .boxBtn {
        padding: 3rem 0 4.5rem 0;
    }

    .cardInfoEstatisticas.full {
        font-size: 1.8rem;
    }

    .itens-infos h1 {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 430px) {
    .navLogo img {
        width: 150px;
        max-width: 150px;
    }

    .textHome h1 {
        font-size: 35px;
        line-height: 35px;
    }

    .boxCardServicos {
        margin-bottom: 2rem;
    }

    .cardInfoVantagens.full {
        font-size: 25px;
    }

    .cardInfoVantagens {
        padding: 0 2.5rem;
    }

    .cardVantagens {
        padding: 4rem 2.5rem;
    }

    .mail {
        font-size: 14px;
    }
}

@media screen and (max-width: 385px) {
    :root {
        --h3: 17px;
        --h4: 41px;
    }

    .textHome h1 {
        font-size: 30px;
        line-height: 30px;
    }

    .mail {
        font-size: 12px;
    }
}