@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital@1&display=swap');

/*---------------------------------------------------------------------*/
/* AREA DOS KEYFRAMES */

    @keyframes efeito1{
        100%{
            transform: rotatey(360deg);
        }
    }
    @keyframes efeito2{
        0%{
            transform: rotateZ(0deg);
        }
        50%{
            transform: rotateZ(-35deg);
        }
        100%{
            transform: rotatez(360deg);
        }
    }
    
    @keyframes efeito3{
        100%{
            transform: rotatey(-360deg);
        }
    }
    @keyframes efeito4{
        30%{
            transform: rotatez(-45deg);
        }
        60%{
            transform: rotatez(55deg);
        }
        100%{
            transform: rotateZ(0deg);
        }
    }

    @keyframes balanco{
        0%{
            transform: translateX(0px);
        }
        40%{
            transform: translateX(15px);
        }
        70%{
            transform: translateX(-20px);
        }
        100%{
            transform: translateX(0px);
        }
        
    }


/* FIM DA AREA DOS KEYFRAMES */
/*---------------------------------------------------------------------*/





/* estilo geral */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.clear{
    clear: both;
}

h1{
    text-align: center;
    padding: 30px 0 30px 0;
    font-family: 'Work Sans', sans-serif;
    color: #505050;
    font-size: 50px;
}

.max-width{
    /* border: 1px solid black; */
    max-width: 1300px;
    margin: 0 auto;
}

/* fim estilo geral */


/*---------------------------------------------------------------------*/



/* AREA DE ESTILOS DA HAPVIDA */


/* estilos das divisões */
body{
    background:   url(imagens/fundo/flor-l.png) no-repeat top left #0095DA;
    width: 100%;
    position: relative;
    margin: 0 auto;
    overflow-x: hidden;
    overflow-y: scroll;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.corpo{
    width: 100%;
}

#topo-hapvida{
    /* border: 1px solid red; */
    /* background: #0095DA; */
    background-image: linear-gradient(to right, #0095da, #36b1e6);
    position: fixed;
    top: 0;
    width: 100%;
    /* max-width: 1350px; */
    min-width: 320px;
    margin: 0 auto 50px auto;
    z-index: 1;
}

#area-apresentacao-hapvida{
    /*border: 1px solid yellow;*/
    display: flex;
    width: 100%;
    max-width: 1300px;
    min-width: 310px;
    position: relative;
    margin: 0 auto;
    padding-top: 140px;
}
/* fim estilo das divisões */


/*---------------------------------------------------------------------*/


/* Estilos do botao whatsapp */

#area-btn-whatsapp{
    /* background-color: red; */
    display: flex;
    width: max-content;
    position: fixed;
    top: 80%;
    right: 5%;
    z-index: 2;
    transition: all 0.5s;
}

#area-btn-whatsapp p{
    background-color: #c2c2c2;
    color: black;
    padding: 10px 10px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}
#area-btn-whatsapp .btn{
    border: none;
    background-color: transparent;
}
#area-btn-whatsapp .btn > img{
    position: relative;
    left: 50%;
    display: block;
    margin-bottom: 5px;
}
#area-btn-whatsapp:hover .btn > img{
    animation: balanco 0.4s ease-in-out 1;
}

/* fim dos estilos whatsapp */


/* Estilos do topo */

#header-hapvida{
    /* border: 1px dashed yellow; */
    display: flex;
    width: 100%;
    max-width: 1300px;
    min-width: 310px;
    height: 100px;
    min-height: 100px;
    padding: 5px;
    margin: 0 auto;
    flex-direction: row;
    align-items: center;
    z-index: 1;
    top: 0;
    position: relative;
}

#area-logo-hapvida{
    /* border: 1px solid black; */
    max-width: max-content;
    min-width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 10%;
}
.logo-hapvida h1{
    font-size: 40px;
    font-family: 'Work Sans', sans-serif;
    font-style: italic;
}
.logo-hapvida p{
    text-align: right;
    padding-right: 20px;
    font-size: 15px;
}
.logo-hapvida h1,p{
    color: white;
}


#area-menu-topo-hapvida{
    /* border: 1px solid red; */
    display: flex;
    position: absolute;
    right: 10%;
}
.ul-topo-hapvida{
    display: flex;
    width: max-content;
    flex-wrap: wrap;
    flex-direction: row;
    list-style: none;
    gap: 15px;
    align-items: center;
    justify-content: center;
}
.li-topo-hapvida a{
    color: white;
    text-decoration: none;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    flex-wrap: wrap;
    font-size: 1.1em;
    padding: 3px 10px;
}
.ul-topo-hapvida a:hover{
    text-decoration: underline;
    transition: 1s all;
}
.ul-topo-hapvida a:active{
    color: white;
    transition: none;
    -moz-transition: none;
    -webkit-transition: none;
    -o-transition: none;
}


#whatsapp-button-area .whatsapp-button-button{
    position: static;
    background-color: #4BAE1F;
    color: white;
    padding: 10px;
    font-size: 1.2em;
    border-radius: 30px;
    border: none;
    transition: 0.1s;
    -moz-transition: 0.1s;
    -webkit-transition: 0.1s;
    -o-transition: 0.1s;
}
#whatsapp-button-area:hover .whatsapp-button-button{
    background-color: white;
    color: #25D366;
    cursor: pointer;
    text-decoration: underline;
    border-radius: 30px;
    transition: 0.1s;
    -moz-transition: 0.1s;
    -webkit-transition: 0.1s;
    -o-transition: 0.1s;
}


.li-topo-hapvida a.tabela-de-precos-btn{
    background-color: rgb(212, 76, 76);
    padding: 10px;
    border-radius: 30px;
    transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
}
.ul-topo-hapvida a.tabela-de-precos-btn:hover{
    background-color: white;
    color: rgb(233, 45, 45);
    /* padding: 15px; */
    transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
}

#whatsapp-button-area .whatsapp-button-button:active{
    color: white;
    transition: none;
    -moz-transition: none;
    -webkit-transition: none;
    -o-transition: none;
}
.ul-topo-hapvida a.tabela-de-precos-btn:active{
    color: white;
    transition: none;
    -moz-transition: none;
    -webkit-transition: none;
    -o-transition: none;
}

#area-botao-menu-topo{
    display: none;
    width: max-content;
    position: absolute;
    right: 40px;
    top: 35px;
    z-index: 1;
    background: none;
}
#area-botao-menu-topo .botao-menu-topo{
    background: none;
    padding: 5px 10px;
    border: none;
}
#area-button-whatsapp-mobile{
    display: none;
}



/* Fim estilos do topo */


/*---------------------------------------------------------------------*/



/* estilos da apresentação*/

.apresentacao-hapvida{
    /*border: 1px solid  blue;*/
    height: 530px;
    padding: 1px 1px 55px 1px;
    overflow-y: hidden;
}

.titulo{
    /*border: 1px solid black;*/
    display: flex;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    justify-content: center;
    align-items: center;
}
.cor-amarelo{
    color: #FFCC00;
    font-weight: 600;
}
.cor-azul{
    color: #0899DC;
    font-weight: 600;
}
.apresentacao-hapvida .titulo-titulo{
    color: white;
    width: 80%;
    font-size: 30px;
    font-weight: 100;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
}
.apresentacao-hapvida .preco{
    /*border: 1px solid green;*/
    width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-top: 100px;
}
.area-sub-titulo{
    /*border: 1px solid red;*/
    width: max-content;
    position: relative;
    margin: 15px auto 15px auto;
}
.sub-titulo{
    /*background-color: green;*/
    width: 300px;
    text-align: center;
    margin: 0 auto;
}
.sub-titulo p{
    font-size: min(23px, 6vw);
    color: white;
    font-family: sans-serif;
}
.apresentacao-hapvida .preco h4{
    width: max-content;
    padding: 10px 40px;
    background-color: #FFCC00;
    margin: 0 auto;
    border-radius: 50px;
    color: #004261;
}
.apresentacao-hapvida .preco .preco-valor{
    font-size: 40px;
}

/* fim estilo da apresentação */



/*---------------------------------------------------------------------*/



/* estilo da abelha */
.area-abelha {
    position: relative;
    width: max-content;
    bottom: 300px;
}
.area-abelha figure{
    width: max-content;
}
/* fim estilo da abelha*/



/*---------------------------------------------------------------------*/



/* estilo do cadastro*/


#cadastro-hapvida{
    /*border: 1px solid yellow;*/
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 50px;
}

.dados{
    width: 100%;
    height: 95%;
    background-color: white;
    border-radius: 10px;
    padding: 10px 30px;
}
.dados h2{
    color: #505050;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin-bottom: 10px;
}
.dados p{
    color: #505050;
    font-size: 20px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
}
.dados-user{
    border: 1px solid;
    width: 300px;
    margin: 5px auto;
    border-radius: 5px;
    border-color: gray;
    display: flex;
    justify-content: center;
    align-items: center;
}
.dados-user:hover{
    border: 1px solid rgb(40, 187, 255);
    border-radius: 5px;
}
.dados-user img{
    margin-left: 5px;
}

/* ========== */

#dados-user-email{
    border: 1px solid gray;
    width: 300px;
    margin: 5px auto;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#dados-user-email:hover{
    border: 1px solid rgb(40, 187, 255);
    border-radius: 5px;
}
#dados-user-email img{
    margin-left: 5px;
}

#area-dados-user-estado{
    display: flex;
    width: 81%;
    margin: 0 auto;
    padding: 0 9px;
    flex-direction: column;
    gap: 5px;
}
.dados-user-estado{
    position: relative;
    display: flex;
    border: 1px solid gray;
    border-radius: 5px;
}
.dados-user-estado img{
    margin: 0 30px 0 14px;
}
.estados{
    width: 100%;
    appearance: none;
    outline: 0;
    border: 0;
    box-shadow: none;
    cursor: pointer;
    background: none;
}
.estados:hover{
    border: 1px solid rgb(40, 187, 255);
    border-radius: 5px;
}
.custom-arrow{
    /*background-color: red;*/
    position: absolute;
    right: 10px;
    top: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.custom-arrow::after{
    content: "\25bc";
    color: gray;
    top: 50px;
}
.custom-arrow:hover{
    cursor: pointer;
}
.custom-arrow2::after{
    content: "\25bc";
    color: gray;
    top: 50px;
}


.dados-user .captura-text[type="text"],
[type="email"],[type="tel"]{
    background-color: none;
}
.dados-user .captura-text{
    padding: 10px 70px;
    border: 1px;
    outline: 0;
}

/* =========== */

#dados-user-email .captura-text[type="text"],
[type="email"],[type="tel"]{
    background-color: none;
}
#dados-user-email .captura-text{
    padding: 10px 70px;
    border: 1px;
    outline: 0;
}

.dados form{
    margin-top: 20px;
}
#cadastro-hapvida .dados form .captura-text{
   padding: 10px 60px 10px 30px;
}


.area-dados-tipo-plano{
    padding: 5px;
    margin: 15px auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.area-dados-tipo-plano h3{
    color: #505050;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
    margin-bottom: 10px;
}
.area-dados-tipo-plano label{
    font-family: sans-serif;
    font-size: 21px;
    font-weight: 400;
    width: max-content;
}
.dados-tipo-plano{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
#dados-plano{
    text-align: center;
    width: max-content;
    min-width: max-content;
    padding: 5px;
}
#dados-plano:hover{
    cursor: pointer;
}
#dados-plano label:hover{
    cursor: pointer;
    text-decoration: underline;
}
.captura-check{
    appearance: none;
    background-color: #D1D3D1;
    width: 1rem;
    height: 1rem;
    border-radius: 10px;
}
.captura-check:hover{
    box-shadow: 3px 3px 5px gray;
    cursor: pointer;
}
.captura-check:checked{
    background-color: #92DB84;
    box-shadow: 3px 3px 5px gray;
}

#area-button-form-hapvida{
    /* border: 1px solid yellow; */
    display: flex;
    justify-content: right;
    padding: 5px;
    margin-top: 20px;
    
}
.button-form-hapvida{
    padding: 15px 60px;
    border: 0;
    background-color: #FFCC00;
    border-radius: 30px;
    font-family: 'work sans', sans-serif;
    color: #004261;
    z-index: 2;
}
.button-form-hapvida:hover{
    box-shadow: 3px 3px 5px gray;
    cursor: pointer;
}
.button-form-hapvida:active{
    background-color: greenyellow;
    color: orangered;
}



/* fim estido do cadastro */



/* AREA ESTILOS DOS DIFERENCIAIS */

#corpo3{
    background-color: #F2F2F2;
    text-align: center;
    height: max-content;
}
#corpo3 h1{
    text-align: center;
    padding: 30px 0 30px 0;
    font-family: 'Work Sans', sans-serif;
    color: #505050;
    font-size: 50px;
    padding-top: 120px;
}
.titulo-diferencial{
    font-family: 'Work Sans', sans-serif;
    margin: 10px 0 30px 0;
}
.area-grid-diferencial{
    /* border: 1px solid red; */
    display: grid;
    grid-template-columns: 300px 300px 300px;
    grid-template-rows: 1fr;
    gap: 20px 30px;
    justify-content: center;
    padding: 30px 0;
    overflow: hidden;transition: 1s;
    -moz-transition: 1s;
    -webkit-transition: 1s;
    -o-transition: 1s;
}
.container-diferencial{
    width: 300px;
}
.area-imagem-diferencial{
    width: max-content;
    padding: 15px;
    margin-bottom: 100px;
    position: relative;
    margin: 0 auto;
    border-radius: 50%;
}
.texto-diferencial p{
    color: black;
}
#yellow{
    background-color: #FFCC00;
}
#orange{
    background-color: #F58220;
}
#red{
    background-color: red;
}

/* FIM DOS ESTILOS DIFERENCIAIS */


/* ESTILOS DA AREA CARENCIA */

    #area-carencias{
        /* border: 1px solid red; */
        background-color: #fff;
        width: 100%;
        padding-top: 90px;
    }

    #titulo-carencias{
        /* border: 1px solid blue; */
        width: max-content;
        margin: 0 auto 50px auto;
    }
    #conteudo-carencias{
        /* border: 1px dashed green; */
        margin-bottom: 35px;
    }
    #carencias{
        /* border: 1px solid red; */
        position: relative;
        display: flex;
        width: max-content;
        height: max-content;
        margin: 0 auto;
        align-items: top;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
    }

    .itens{
        /* border: 1px solid green; */
        width: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 10px 0;
    }
    .itens > img{
        width: max-content;
        margin: 0 auto;
    }
    .itens > .linha{
        position: relative;
        width: 100%;
        height: 3px;
        background-color: #0E9CDD;
        margin: 10px 0;
    }
    .itens .linha::after{
        content: "";
        background-color: #0E9CDD;
        width: 15px;
        height: 15px;
        position: absolute;
        top: -6px;
        left: 45%;
        border-radius: 50%;
    }
    .itens > h4{
        margin: 5px auto;
    }
    .itens > p{
        /* border: 1px solid green; */
        display: flex;
        justify-content: center;
        align-items: center;
        color: black;
        width: 100%;
        height: 50px;
        font-size: 1.05em;
        font-family: sans-serif;
        text-align: center;
        
    }

    #area-botao-carencias{
        /* border: 1px solid blue; */
        padding: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 80px;
    }

    #botao-carencias{
        /* border: 1px solid red; */
        width: max-content;
        display: flex;
    }
    #botao-carencias a{
        padding: 10px;
        text-decoration: none;
        background: #F58220;
        color: #fff;
        box-shadow: 2px 2px 4px black;
        transition: 0.5s;
    }
    #botao-carencias a:hover{
        background:  #fff;
        color: #F58220;
        box-shadow: 1px 1px 3px black;
        transition: 0.5s;
    }
    

/* FIM DOS ESTILOS DA CARENCIA */


/* FIM DO ESTILO AREA-HAPVIDA */



/*---------------------------------------------------------------------*/




/* INICIO ESTILO AREA-O-REI-DOS-PLANOS */



    #area-o-rei-dos-planos{
        /* border: 1px solid red;  */
        width: 100%;
        height: max-content;
        padding: 50px 70px;
        z-index: 0;
        background: #F9F9FB url(imagens/fundo/fundo_o-rei.jpg) no-repeat left bottom;
        /* border-top: 2px solid black; */
        transition: 1s;
        -moz-transition: 1s;
        -webkit-transition: 1s;
        -o-transition: 1s;
    }

    .conteudo{
        /* border: 1px solid green; */
        max-width: 1350px;
        margin: 0 auto;
        padding-top: 100px;
        padding-bottom: 100px;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }
    .area-video{
        /* border: 1px solid yellow; */
        width: max-content;
        height: min-content;
        margin-top: 5%;
        box-shadow: 2px 2px 10px black;
    }

    .area-texto{
        /* border: 1px solid red; */
        width: 530px;
        padding: 20px;
        border-radius: 5px;
        background-color: rgba(255, 255, 255, 0.747);
        box-shadow: 1px 1px 10px black;
    }
    .area-texto:hover{
        transition: 0.3s;
        -moz-transition: 0.3s;
        -webkit-transition: 0.3s;
        -o-transition: 0.3s;
    }
    .area-texto h1{
        text-align: center;
        padding-bottom: 20px;
        color: #000;
    }
    .conteudo .area-texto p{
        color: #404040;
        text-align: left;
        line-height: 23px;
        font-size: 18px;
    }

    


/* FIM DO ESTILO AREA-O-REI-DOS-PLANOS */




/* ------------------------------------------------- */




/* ESTILOS AREA QUALIDADE */

#corpo4{
    width: 100%;
    height: max-content;
    /* margin-bottom: 200px; */
}
#area-qualidade{
    width: 100%;
    height: max-content;
    background-color: #f2f2f2;
    padding-top: 80px;
    padding-bottom: 80px;
    transition: 1s;
        -moz-transition: 1s;
        -webkit-transition: 1s;
        -o-transition: 1s;
}
#area-qualidade h1{
    text-align: center;
    padding: 50px 0 30px 0;
    font-family: 'Work Sans', sans-serif;
    color: #505050;
    font-size: 50px;
}
.area-grid{
    /* border: 1px solid red; */
    display: grid;
    grid-template-columns: max-content max-content;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 20px 30px;
    justify-content: center;
    padding: 30px 0;
    overflow: hidden;transition: 1s;
    -moz-transition: 1s;
    -webkit-transition: 1s;
    -o-transition: 1s;
}
.servicos{
    /* border: 1px solid blue; */
    text-align: center;
    width: 480px;
    max-width: 500px;
    background-color: fff;
    box-shadow: 2px 2px 5px gray;
    border-radius: 15px;
    word-wrap: break-word;
    padding: 30px;
    justify-content: center;
    align-items: center;
    font-size: none;
    transition: 0.3s;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
}
.servicos:hover{
    box-shadow: 3px 3px 10px #29AAE3;
    cursor: help;
    transition: 0.3s;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
}
.servicos:hover h2{
    display: inline;
    color: #0899DC;
    font-weight: bold;
    font-size: 28px;
    transition: 0.2s;
}

/* EFEITOS */

#efeito1:hover .area-imagem img{
    animation-name: efeito1;
    animation-duration: 1s;
    -moz-animation-duration: 1s;
    -webkit-animation-duration: 1s;
    -o-animation-duration: 1s;
}
#efeito2:hover .area-imagem img{
    animation-name: efeito2;
    animation-duration: 1s;
    -moz-animation-duration: 1s;
    -webkit-animation-duration: 1s;
    -o-animation-duration: 1s;
}
#efeito3:hover .area-imagem img{
    animation-name: efeito2;
    animation-duration: 1s;
    -moz-animation-duration: 1s;
    -webkit-animation-duration: 1s;
    -o-animation-duration: 1s;
}
#efeito4:hover .area-imagem img{
    animation-name: efeito3;
    animation-duration: 1s;
    -moz-animation-duration: 1s;
    -webkit-animation-duration: 1s;
    -o-animation-duration: 1s;
}
#efeito5:hover .area-imagem img{
    animation-name: efeito4;
    animation-duration: 1s;
    -moz-animation-duration: 1s;
    -webkit-animation-duration: 1s;
    -o-animation-duration: 1s;
}
#efeito6:hover .area-imagem img{
    animation-name: efeito1;
    animation-duration: 1s;
    -moz-animation-duration: 1s;
    -webkit-animation-duration: 1s;
    -o-animation-duration: 1s;
}

/* FIM DOS EFEITOS */

.area-imagem{
    /* border: 1px solid black; */
    display: inline;
    width: max-content;
    height: max-content;
    position: relative;
    float: left;
    transition: 1s;
    -moz-transition: 1s;
    -webkit-transition: 1s;
    -o-transition: 1s;
}
.servicos h2{
    display: inline;
    color: #606060;
    font-family: sans-serif;
}
.servicos h2:hover{
    cursor: help;
}

/* FIM DOS ESTILOS DA AREA QUALIDADE */



/* ESTILOS DE POPUPS CADASTRO */
#area-popup{
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.479);
    z-index: 2;
    transition: 1s;
}
.popup{
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    top:50%;
    bottom: 50%;
    left: 0;
    right: 0;
    margin: auto;
    width: 500px;
    height: 250px;
    padding: 20px;
    background-color: #ffcc00d0;
    box-shadow: 3px 3px 10px rgb(54, 54, 54);
    border-radius: 7px;
}
.popup h3{
    font-family: sans-serif;
}

.area-botao-popup{
    position: absolute;
    top: 15px;
    right: 15px;
}
.area-botao-popup input{
    width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 50%;
    border: none;
    color: white;
    background: rgba(0, 0, 0, 0.39);
    font-size: 20px;
    box-shadow: 2px 2px 5px gray;
}
.area-botao-popup input:hover{
    cursor: pointer;
    color: black;
    background: none;
    font-size: 20px;
    border: 1px solid gray;
    box-shadow: 2px 2px 5px gray;
}

/* FIM DOS ESTILOS DE POPUPS */



/* ESTILOS DO FOOTER */


#corpo5{
    display: flex;
    width: 100%;
    height: 100px;
    position: absolute;
    background-image: linear-gradient(to right,  #36b1e6, #0095da);
    justify-content: center;
    align-items: center;
}
.footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    color: white;
    height: max-content;
    margin-bottom: 0;
}
.footer .rei{
    margin-bottom: 10px;
    text-align: center;
    padding: 0 10px;
}
.footer .criador{
    display: flex;
    flex-direction: row;
    text-align: center;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer .criador .criador-nome{
    text-decoration: none;
    cursor: default;
}
.custom-arow2::after{
    content: U+00BB;
    color: gray;
    top: 50px;
}

.link-footer{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding-left: 5px;
}
.link-footer a{
    color: white;
}

/* FIM DOS ESTILOS DO FOOTER */



/* ------------------------------------------------- */



/* MEDIA QUERY AREA-HAPVIDA */


@media screen and (max-width: 1270px){
    .area-grid-diferencial{
        /* border: 1px solid red; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 60px;
        transition: 1s;
        -moz-transition: 1s;
        -webkit-transition: 1s;
        -o-transition: 1s;
    }
    .container-diferencial{
        width: 600px;
        font-size: 30px;
        font-weight: 600;
    }
    
    #area-o-rei-dos-planos{
        height: max-content;
        padding: 30px 10px;
        background-position: center bottom;
        background-size: 90%;
        transition: 1s;
        -moz-transition: 1s;
        -webkit-transition: 1s;
        -o-transition: 1s;
    }
    .conteudo .area-video{
        background: none;
        box-shadow: none;
        width: 100%;
        margin: 0 auto;
        justify-content: center;
        float: none;
    }
    .conteudo .area-video iframe{
        display: flex;
        width: 80%;
        margin: 0 auto;
        box-shadow: 10px 10px 10px gray;
    }

    .conteudo .area-texto{
        width: 80%;
        border-radius: 5px;
        background: rgba(0, 0, 0, 0.637) ;
        color: white;
        float: none;
        margin: 60px auto 0 auto;
        padding: 20px 30px;
        position: relative;
        
    }
    .area-texto h1{
        text-align: center;
        color: white;
        font-size: 45px;
        transition: 1s;
        -moz-transition: 1s;
        -webkit-transition: 1s;
        -o-transition: 1s;
    }
    .conteudo .area-texto p{
        color: white;
        text-align: left;
        font-size: 30px;
        text-indent: 30px;
        line-height: 40px;
        font-family: sans-serif;
        transition: 1s;
        -moz-transition: 1s;
        -webkit-transition: 1s;
        -o-transition: 1s;
    }


    /* Querys das credenciais */

    ul#carencias{
        display: grid;
        grid-template-columns: max-content max-content max-content;
        width: max-content;
        margin: 0 auto;
        transition: 0.5s;
    }

    /* Fim dos querys das credenciais */

}



@media screen and (max-width: 1120px)
{

/* Querys gerais */
    body{
        overflow: auto;
        font-family: sans-serif;
    }
    #corpo1{
        overflow-x: hidden;
    }
    
/* Fim dos querys gerais */


/* Querys do topo */

    #topo-hapvida{
    background: none;
    position: relative;
    }
    #header-hapvida{
    /* border: 1px solid black; */
    width: 100%;
    display: flex;
    height: max-content;
    margin: 20px 0 0 0;
    transition: 1s;
    -moz-transition: 1s;
    -webkit-transition: 1s;
    -o-transition: 1s;
    }

    #area-logo-hapvida{
    position: absolute;
    width: max-content;
    left: 30%;
    border-bottom: 1px solid black;
    transition: 0.5s;
    }
    

    #area-menu-topo-hapvida{
    padding-bottom: 10px;
    background-color: black;
    /* opacity: 0; */
    z-index: 1;
    }

    #area-menu-topo-hapvida .ul-topo-hapvida{
        display: flex;
    }
    #area-menu-topo-hapvida .ul-topo-hapvida{
        display: none;
    }

    #area-button-whatsapp-mobile{
        list-style: none;
        position: absolute;
        width: max-content;
        right: 3%;
        top: 25%;
    }
    #area-button-whatsapp-mobile a{
        background-color: #4BAE1F;
        color: white;
        font-weight: 600;
        padding: 10px;
        border-radius: 30px;
        transition: 0.1s;
        -moz-transition: 0.1s;
        -webkit-transition: 0.1s;
        -o-transition: 0.1s;
        
    }
    #area-button-whatsapp-mobile a{
        text-decoration: none;
    }
    #area-button-whatsapp-mobile a:hover{
        background-color: white;
        color: #25D366;
        padding: 15px;
        border-radius: 30px;
        transition: 0.1s;
        -moz-transition: 0.1s;
        -webkit-transition: 0.1s;
        -o-transition: 0.1s;
    }
    
    


/* fim dos Querys do topo */


/* Querys da apresentação */

    #area-apresentacao-hapvida{
        display: flex;
        flex-direction: column;
        padding-top: 0;
    }
    .area-abelha img{
        display: none;
    }
    .apresentacao-hapvida{
        width: 99%;
        height: max-content;
        margin: 0 auto;
        padding-bottom: 1px;
        transition: 0.5s;
        -moz-transition: 0.5s;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
    }
    .area-sub-titulo{
        width: 98%;
        margin: 20px auto 0 auto;
        transition: 1s ease-in;
        -moz-transition: 1s ease-in;
        -webkit-transition: 1s ease-in;
        -o-transition: 1s ease-in;
    }

/* Fim do query da apresentação */


/* Query do cadastro */
    
    #cadastro-hapvida{
        display: block;
        width: 100%;
        position: relative;
        margin: 50px;
        transition: 1s ease;
        -moz-transition: 1s ease;
        -webkit-transition: 1s ease;
        -o-transition: 1s ease;
    }
    .dados{
        margin: 0 auto;
        min-width: 360px;
    }

    #area-apresentacao-hapvida .preco{
        margin-top: 40px;
        transition: 1s;
        -moz-transition: 1s;
        -webkit-transition: 1s;
        -o-transition: 1s;
    }
    .dados{
        width: 70%;
        height: max-content;
    }
    .dados h2{
        text-align: center;
        font-size: max(5vw, 3vw);
    }
    .dados p{
        color: #505050;
        text-align: center;
        font-size: 4vw;
        padding-bottom: 30px;
    }
    .dados .dados-user{
        width: 100%;
        height: 50px;
        display: flex;
        justify-content: left;
    }
    .dados .dados-user .captura-text{
        width: 100%;
        font-size: 20px;
    }
    .dados .dados-user .captura-text::placeholder{
        font-size: 25px;
        justify-content: center;
        align-items: center;
    }
    /* ================ */

    .dados #dados-user-email{
        width: 100%;
        height: 50px;
        display: flex;
        justify-content: left;

    }
    .dados #dados-user-email .captura-text{
        width: 100%;
        font-size: 20px;
    }
    .dados #dados-user-email .captura-text::placeholder{
        font-size: 25px;
        justify-content: center;
        align-items: center;
    }

    #area-dados-user-estado{
        width: 100%;
        padding: 0;
    }
    .dados-user-estado{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 50px;
        padding-right: 0;
    }
    .dados-user-estado select{
        font-size: 25px;
    }

/* -------- */

    .area-dados-tipo-plano{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .area-dados-tipo-plano h3, .area-dados-tipo-plano #dados-plano label{
        width: max-content;
        margin: 0 auto;
        font-size: 1.9rem;
        margin: 10px 0 25px 0;
        transition: 1s;
        -moz-transition: 1s;
        -webkit-transition: 1s;
        -o-transition: 1s;
    }
    .area-dados-tipo-plano #dados-plano .captura-check{
        width: 30px;
        height: 30px;
        border-radius: 50%;
    }
    #area-button-form-hapvida .button-form-hapvida{
        width: 500rem;
        height: 60px;
        font-size: 2rem;
        line-height: 1rem;
    }

    /* Fim dos querys do cadastro */

    #area-o-rei-dos-planos{
        padding: 0;
        margin: 0;
        padding-top: 20px;
        background-position: left -35px bottom;
        border-top: 1px groove;
        transition: 1s;
        -moz-transition: 1s;
        -webkit-transition: 1s;
        -o-transition: 1s;
    }
    .conteudo{
        padding-bottom: 10px;
        display: flex;
        flex-direction: column;
    }
    .conteudo .area-video{
        margin-bottom: 10px;
    }
    .conteudo .area-video iframe{
        width: 90%;
    }
    .conteudo .area-texto{
        background: rgba(0, 0, 0, 0.041) ;
        width: 95%;
    }
    .conteudo .area-texto h1{
        color: #505050;
        transition: 1s;
        -moz-transition: 1s;
        -webkit-transition: 1s;
        -o-transition: 1s;
    }
    .conteudo .area-texto p{
        color: black;
        padding-bottom: 190px;
        font-size: 20px;
        text-indent: 30px;
        line-height: 30px;
        font-family: sans-serif;
        text-align: justify;
        transition: 1s;
        -moz-transition: 1s;
        -webkit-transition: 1s;
        -o-transition: 1s;
        
    }
    #area-button-form-hapvida .button-form-hapvida{
        width: 500rem;
        height: 80px;
        font-size: 2rem;
        line-height: 30px;
        text-align: center;
    }

}


@media screen and (min-width: 1110px){
    .apresentacao-hapvida{
        width: 59%;
        transition: 0.5s;
        -moz-transition: 0.5s;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
    }
}


@media screen and (max-width: 930px) {
    /*.border-style{
        border-right: 1px solid gray;
        padding-right: 10px;
        transition: 1s ease-in;
    }*/
    .dados-tipo-plano{
        flex-direction: column;
    }
    #dados-plano{
        width: 100%;
        text-align: left;
        border-bottom: 1px solid gray;
        transition: 1s;
        -moz-transition: 1s;
        -webkit-transition: 1s;
        -o-transition: 1s;
    }
    #dados-plano .captura-check{
        appearance: none;
    }
}



@media screen and (max-width:730px){

    #titulo-carencias{
        width: 100%;
    }
    #titulo-carencias > h1{
        width: 80%;
        margin: 0 auto;
        transition: 0.5s;
    }
    
    ul#carencias{
        display: grid;
        grid-template-columns: max-content max-content;
    }

}


@media screen and (max-width:500px){
    
    .dados{
        border-radius: 0;
        transition: 1s;
        -moz-transition: 1s;
        -webkit-transition: 1s;
        -o-transition: 1s;
    }
    .logo-hapvida{
        position: relative;
        right: 10px;
    }
    #area-botao-menu-topo{
        right: 10px;
        top: 0px;
        transition: 1s;
        -moz-transition: 1s;
        -webkit-transition: 1s;
        -o-transition: 1s;
    }

    #conteudo-carencias{
        position: relative;
    }
    ul#carencias{
        display: grid;
        grid-template-columns: max-content;
    }
    ul#carencias .itens > .linha{
        display: none;
    }

    .itens{
        margin-bottom: 50px;
    }

    #linha-vertical{
        width: 3px;
        height: 100%;
        background-color: #0E9CDD;
        position: absolute;
        top: 0;
        left: 15%;
    }
    #linha-vertical > .bolinha-vertical{
        position: relative;
        width: 15px;
        height: 15px;
        border-radius: 50%;
        background-color: #0E9CDD;
        top: 6%;
        left: -6px;
        margin-bottom: 197px;
    }

}



/* FIM DO MEDIA QUERY AREA-HAPVIDA */



/*---------------------------------------------------------------------*/




/* MEDIA QUERY AREA REI DOS PLANOS */



@media screen and (max-width: 500px) {

    .area-grid-diferencial{
        /* border: 1px solid red; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 60px;
        transition: 1s;
        -moz-transition: 1s;
        -webkit-transition: 1s;
        -o-transition: 1s;
    }
    .container-diferencial{
        width: 100%;
        font-size: 20px;
        padding: 0 10px;
        font-weight: 600;
    }



    #cadastro-hapvida{
        margin-bottom: 0;
    }


}

/* FIM DO QUERY AREA REI DOS PLANOS */




/* ========================================================== */




/* MEDIA QUERY AREA QUALIDADE */


@media screen and (max-width: 1270px) {


    .area-grid{
        /* border: 1px solid red; */
        grid-template-columns: 90%;
        gap: 50px;
        transition: 1s;
        -moz-transition: 1s;
        -webkit-transition: 1s;
        -o-transition: 1s;
    }
    

    .servicos{
        /* border: 1px solid blue; */
        width: 100%;
        max-width: none;
        transition: 1s;
        -moz-transition: 1s;
        -webkit-transition: 1s;
        -o-transition: 1s;
    }
    .servicos h2{
        text-align: center;
        line-height: 5rem;
    }
    .servicos h2 br{
        display: none;
    }
}

@media screen and (max-width: 800px) {
    
    .servicos{
        text-align: center;
    }
    .servicos h2{
        line-height: 40px;
        transition: 1s;
        -moz-transition: 1s;
        -webkit-transition: 1s;
        -o-transition: 1s;
    }
    .servicos h2 br{
        display: block;
    }
    .area-imagem{
        /* border: 1px solid black; */
        display: inline;
        width: max-content;
        height: max-content;
        position: relative;
        top: 5px;
        transition: 1s;
        -moz-transition: 1s;
        -webkit-transition: 1s;
        -o-transition: 1s;
    }
}

@media screen and (max-width: 380px) {
    .servicos{
        text-align: center;
        padding: 10px;
    }
    .servicos h2{
        text-align: justify;
        line-height: 40px;
        transition: 1s;
        -moz-transition: 1s;
        -webkit-transition: 1s;
        -o-transition: 1s;
        
    }
    .servicos h2 br{
        display: block;
    }
    .area-imagem{
        /* border: 1px solid black; */
        display: inline;
        width: max-content;
        height: max-content;
        position: relative;
        float: left;
        top: 5px;
        transition: 1s;
        -moz-transition: 1s;
        -webkit-transition: 1s;
        -o-transition: 1s;
    }
}

/* FIM DOS QUERYS AREA QUALIDADE */


/* MEDIA QUERY FOOTER */

@media screen and (max-width: 500px) {
    #corpo5{
        height: max-content;
        padding: 20px 0 25px 0;
    }
}

/* FIM DO QUERY FOOTER */


@media screen and (max-width: 500px){
    
    /* Querys do botao whatsapp */

        #area-btn-whatsapp p{
            display: none;
        }
        #area-btn-whatsapp{
            /* background-color: red; */
            display: flex;
            width: max-content;
            position: fixed;
            top: 78%;
            right: 13%;
            z-index: 2;
            transition: all 0.5s;
        }

    /* Querys do botao whatsapp */

}



/* fim estilo midia query */
