*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

body, html, option, select, input, textarea{
    font-family: 'Open Sans', sans-serif;
}

img{max-width: 100%; float: left;}

figure{overflow: hidden;}

input[type="submit"]{
    border: none;
    font-size: 1em;
    cursor: pointer;
}

h1, h2, h3{
    font-weight: 300;
}

:root{
    --brand-green: #008e9c;
    --grey-bg    : #eaeaea;
    --yellow     : #ffbb3f;
    --border-grey: #989898;
}

/** REUSABLE CSS **/
.wrapper{
    width: 90%;
    max-width: 980px;
    margin: 0 auto;
    overflow: hidden;
}

.dobra{
    padding: 30px 0
}

.dobra header{
    margin-bottom: 30px;
}

.dobra header h2{
    text-align: center;
    letter-spacing: 1px;
}

.title_border{
    display: block;
    width: 60px;
    margin: 10px auto 0px auto;
    height: 5px;
    background-color: #989898
}

.title_border_green {
    display: block;
    width: 60px;
    margin: 10px auto 0px auto;
    height: 5px;
    background-color: #008e9c;
}

.title_border_yellow {
    display: block;
    width: 60px;
    margin: 10px auto 0px auto;
    height: 5px;
    background-color: #ffbb3f;
}



.cta{
    color: #fff;
    padding: 1% 2%;
    display: table;
    max-width: 201px;
    text-transform: uppercase;
    font-size: .9em;
    border-radius: 20px;
    background-color: var(--brand-green);
    transition: background-color ease-in .2s
}

.cta:hover{
    background-color: #d3771d
}

.text{
    font-size: 1em;
    letter-spacing: 1.5px;
    line-height: 2.2;
}

.text_dark-grey{
    color: #494949
}

.text_white{
    color: #fff
}

.flexed{
    display: flex;
    flex-direction: row;
}

.flexed .flexed-description{
    width: 65%;
    background-color: #c3c3c3;
}

.flexed .flexed-description .dobra{
    width: 90%;
    max-width: 692px;
    padding: 40px 40px 40px 0;
}

.flexed .flexed-pic{
    width: 35%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat
}

.bold{
    font-weight: bold
}

span.bold{
    font-weight: 700
}

.green-text{
    color: var(--brand-green)
}

/** LP TOPO **/
#topo {
    padding: 10px 0;
    width: 100%;
    border-bottom: 6px solid #bababa;
    background-color: var(--brand-green);
}

#topo p{
    color: #fff;
    letter-spacing: 1.3px
}

#topo #contato-wrapper,
#topo #address-wrapper{
    width: 100%;
    float: left;
    text-align: center
}

#topo #contato-wrapper p:last-child{
    margin-left: 10px
}

#topo #contato-wrapper{margin-bottom: 5px}

#topo p.contact{
    display: inline;
    font-size: .9em
}

#topo p.contact:last-child{margin-left: 5px}

#topo #address-wrapper p{
    font-size: .8em;
}


/* GRID */
#diferenciais .grid{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content:space-around; 
    align-items: stretch;   
}

#diferenciais .grid .grid_item {
    margin-bottom: 20px;
    padding: 2%;
    border: 1px solid #d29a35;
}

.grid{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
}

.grid_item{
    width: 31%;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.grid_item figure img{
    display: block;
    margin: 0 auto;
    max-width: 140px
}

.grid_item h3{
    font-size: 1.5em;
    margin-top: 15px
}

.grid_item .title_border{
    height: 4px;
    width: 30px;
}

.grid_item .text{
    margin-top: 15px
}

/** MENU **/
.menu-fix {
    
    top: -5px !important;
    position: fixed;    
    border-bottom: 1px solid #CCC;    
    z-index: 999;    
    width: 100%;    
    background-color: #fff;
    
}


#toggle-menu{
    display: none
}

#menu figure{    
    width: 90px;    
    height: 76px;
}

#menu .menu-list {
    display: flex;
    flex-direction: row;
    align-items: center;    
}

#menu .menu-list li { display: inline-block; }

#menu .menu-list li a { color: black; }

#menu .menu-list li:hover a{
    color: var(--brand-green)
}

#menu .cta-topo{
    margin-left: 20px;
}

/** BANNER **/
.banner-infos{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.banner-infos h1{
    font-size: 3em;
    margin-bottom: 10px;
} 
.banner-infos h2{
    font-size: 2.3em;
    margin-bottom: 20px;
}

/** BANNER ATENDIMENTO ZAP **/
#banner .banner-infos .cta {
    display: table;
    border: none;    
    background-color: #3caab4;    
    color: #fff;    
    text-transform: uppercase;    
    font-size: 0.9em;    
    letter-spacing: 1px;    
    text-align: center;    
    margin: 0 auto;    
    border-radius: 20px;    
    background-color: var(--brand-green);    
    background-image: url(images/bt-zap.png);    
    background-repeat: no-repeat;    
    background-size: 20px;    
}

.owl-dots{
    position: absolute;
    bottom: 30px;
    width: 100%;
    padding: 5px 0;
    display: flex;
    flex-direction: row;
    justify-content: center
}

.owl-dot{
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #fff !important;
    opacity: 0.5
}

.owl-dot:not(:last-child){
    margin-right: 8px;
}

.owl-dot.active{
    opacity: 1
}

/** Como funciona **/
#como-funciona { background-color: var(--yellow) }

/** Nossos profissionais **/
#profissionais{ background-color: var(--yellow) }


/** Nossos Diferenciais **/
#diferenciais { background-color: var(--yellow) }


#diferenciais .cta-zap {
    display: table;
    margin: 40px auto 0 auto;    
}

    #diferenciais .cta-zap p {
        text-align: center;
    }

    #diferenciais .cta-zap a {
        display: table;
        border: none;
        background-color: #3caab4;
        color: #fff;
        text-transform: uppercase;
        font-size: 0.9em;
        letter-spacing: 1px;
        text-align: center;        
        border-radius: 20px;
        background-color: var(--brand-green);
        background-image: url(images/bt-zap.png);
        background-repeat: no-repeat;
        background-size: 20px;        
    }


/** Benefícios **/
#beneficios{
    background-image: url(images/beneficios/beneficios-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
}

/** Depoimentos **/
#depoimentos{
    background-color: #ffffff;
}

#depoimentos .grid_item{
    width: 100%
}


/** Perguntas **/
#perguntas{
    background-color: var(--grey-bg);
}

#perguntas .container{
    width: 100%;
}

#perguntas .container:not(:last-child){
    margin-bottom: 10px;
}

.pergunta {
    width: 100%;    
    display: flex;
    cursor: pointer;    
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: var(--brand-green);
    color: #fff;    
}

.pergunta .text{
    max-width: 90%;
    font-weight: bold;
}

.pergunta .plus{
    width: 30px;
    height: 30px;
    position: relative;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff
}

.pergunta .plus span{
    width: 40%;
    height: 2px;
    display: block;
    position: absolute;
    background-color: white;
    transition: all ease-in .2s;
}

.pergunta .plus span:last-child{
    transform: rotate(90deg)
}

.pergunta .plus.active span:last-child{
    transform: rotate(0deg)
}

.resposta{
    display: none;
    color: #666;
    margin-top: 5px;
    padding: 10px 35px;
}

.resposta ul li:not(:first-child){
    margin-top: 10px
}

.resposta ul li{
    font-size: 1em;
    letter-spacing: 1.5px;
    line-height: 1.8;
    position: relative;
    padding-left: 30px;
}

.resposta ul li span{
    position: absolute;
    left: 0
}

/** Rodapé - Contato **/
#rodape .form-radio {
    width: 100%;
}

#rodape .form-radio input[type=radio] {
    display: none;
}

#rodape .form-radio input[type=radio] + label {
    display:inline-block;
    height:30px;
    padding: 0 0 0 25px;    
    background-image:url(images/ico-master.png);
    background-repeat: no-repeat;    
}



    #rodape .form-radio p {
        font-weight: bold;
        color: #777777;        
    }

    #rodape .form-radio div label {
        color: #777777;        
    }


#rodape .ipt-text {
    width: 100%;
    display: table;
    color: #494949;
    padding: 5px 35px;    
    background-color: rgb(255, 255, 255);
    border: 2px solid #AAA;
    margin: 0 auto 20px auto;
    font-family: 'Open Sans', sans-serif;
}

#rodape .ipt-textarea {
    width: 100%;
    display: table;
    min-height: 120px;
    color: #494949;
    padding: 5px 35px;          
    background-color: rgb(255, 255, 255);
    border: 2px solid #AAA;
    margin: 0 auto 20px auto;
    font-family: 'Open Sans', sans-serif;
}

#rodape .ipt-submit {
    display: table;
    color: #ffffff;
    text-transform: uppercase;
    padding: 10px 25px;    
    border-radius: 25px;    
    background-color: var(--brand-green);    
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

#rodape .bt_whatsApp {
    display: table;
    border: none;
    background-color: #3caab4;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 1px;
    text-align: center;
    margin: 0 auto;
    padding: 5px 50px 5px 20px;

    border-radius: 20px;
    background-color: var(--brand-green);

    background-image: url(images/bt-zap.png);
    background-repeat: no-repeat;
    background-position: 180px center;
    background-size: 20px;
}

.dobra-rodape { padding: 30px 0 0 0; background-color: #ffbb3f; }

.dobra-rodape header { margin-bottom: 30px; }

.dobra-rodape header h2 { text-align: center; letter-spacing: 1px; }

#logo-agencia {
    display: block; margin: auto!important; width: 108px; height: 28px;
}
#logo-agencia img {
    display: block; margin: auto!important; float: none!important;
}


/*****************
    ONDE ESTAMOS 
******************/
#onde-estamos {
    background-color: #3caab4;
    margin-top: 30px;
    padding: 30px 0;
}

    #onde-estamos h2 { color: #fff; }

    #onde-estamos a { color: #fff; text-align: center; display: table; margin: 0 auto; }

    #onde-estamos a span { text-decoration: underline; display: table; margin: 10px auto 0 auto; }