
/* geral */

.hide,
.hidden{
    display: none !important;
}
.show{
    display: block !important;
}

textarea,
input,
select,
button,
body{
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
}
body{
    color: black;
}
img{
    max-width: 100%;
}
.in{
    max-width: 1400px;
    padding: 0px 15px;
}
.in_med{
    max-width: 1100px;
}
/* headings */
h1{
    font-size: 40px;
    font-weight: 900;
}
h2{
    font-size: 35px;
    font-weight: 900;
}
h3{
    font-size: 30px;
    font-weight: 900;
}
h4{
    font-size: 30px;
}
h5{
    font-size: 25px;
    font-weight: 900;
}
h6{
    font-size: 25px;
}

/* texto */
.txt p{
    font-size: 14px;
    min-height: 20px;
    line-height: 20px;
    color: #333;
}
.txt p a{
    color: inherit;
    text-decoration: underline;
}
.txt p strong{
    font-weight: 700;
}
.txt p em{
    font-style: italic;
}

/* radio */
.radio{
    position: relative;
}
.radio input{
    display: none;
}
.radio label{
    padding-left: 30px;
    position: relative;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
}
.radio label:before{
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    box-sizing: border-box;
    border: 2px solid rgba(0,0,0,0.3);
}
.radio label:after{
    content: " ";
    width: 12px;
    height: 12px;
    background: #000;
    position: absolute;
    left: 4px;
    top: 4px;
    border-radius: 100%;
    opacity: 0;
}
.radio input[type=radio]:checked ~ label:after{
    opacity: 1;
}

.radio{
    position: relative;
}
.radio input{
    display: none;
}
.radio label{
    padding-left: 30px;
    position: relative;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
}
.radio label:before{
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    box-sizing: border-box;
    background: rgba(0,0,0,0.3);
}
.radio label:after{
    content: " ";
    width: 9px;
    height: 5px;
    position: absolute;
    left: 4px;
    top: 4px;
    opacity: 0;
    transform: rotate(-45deg);
    border: 3px solid #fff;
    border-top: none;
    border-right: none;
    transform: scale(0,0) rotate(-45deg);
    opacity: 0;
}
.radio input[type=radio]:checked ~ label:after{
    opacity: 1;
    transform: scale(1,1) rotate(-45deg);
}
.radio input[type=radio]:checked ~ label{
    color: red;;
}


/* checkbox */
.checkbox{
    position: relative;
}
.checkbox input{
    display: none;
}
.checkbox label{
    padding-left: 30px;
    position: relative;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
}
.checkbox label:before{
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    box-sizing: border-box;
    border: 2px solid rgba(0,0,0,0.3);
}
.checkbox label:after{
    content: " ";
    width: 9px;
    height: 5px;
    position: absolute;
    left: 4px;
    top: 4px;
    opacity: 0;
    transform: rotate(-45deg);
    border: 3px solid black;
    border-top: none;
    border-right: none;
}
.checkbox input[type=checkbox]:checked ~ label:after{
    opacity: 1;
}

/* select */
.select{
    background: white;
    border: 2px solid rgba(0,0,0,0.15);
    position: relative;
    display: inline-block;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}
.select select{
    border: none;
    box-shadow: none;
    background-image: none;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance:  none;
    padding: 10px 40px 10px 10px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
}
.select select:focus{
    outline: none;
}
.select:before{
    content: "";
    width: 10px;
    height: 10px;
    right: 10px;
    top: 50%;
    margin-top: -6px;
    position: absolute;
    transform: rotate(45deg);
    box-sizing: border-box;
    border: 3px solid rgba(0,0,0,0.15);
    border-left: none;
    border-top: none;
}
.select:hover{
    border-color: rgba(0,0,0,0.5);
}
.select:hover:before{
    border-color: rgba(0,0,0,0.5);
}

/* lightbox */
.lb.animated {
    animation-duration: .3s;
}
.lb{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    overflow-x: hidden;
    overflow-y: auto;
    background: rgba(0,0,0,0.5);
}
.lb_x{
    position: fixed;
    right: 15px;
    top: 15px;
    width: 20px;
    height: 20px;
    padding: 10px;
    z-index: 2;
}
.lb_in{
    z-index: 1;
}
.lb_centro .lb_in{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.lb_ct{
    position: relative;
    width: 100%;
}

/* accordion */
ul.acc{
    background: rgba(0,0,0,0.15);
}
ul.acc dt{
    background: rgba(0,0,0,0.15);
    cursor: pointer;
}
ul.acc dd{
    background: rgba(0,0,0,0.3);
    display: none;
}
ul.acc .aberto ~ dd{
    display: block;
    height: auto;
}

/* slider */
.owl-carousel{
    position: relative;
}
.owl-carousel .owl-nav {
    position: absolute;
    background: red;
    height: 0px;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    top: 50%;
    opacity: 0;
}
.owl-carousel .owl-prev,
.owl-carousel .owl-next{
    background: transparent;
    width: 60px;
    height: 60px;
    display: block;
    z-index: 10;
    position: absolute;
    transform: translateY(-50%);
    top: 0;
    opacity: 0.2;
}
.owl-carousel .owl-next{
    left: auto;
    right: 1px;
}
.owl-carousel .owl-prev span,
.owl-carousel .owl-next span{
    position: absolute;
    right: 35%;
    top: 25%;
    width: 50%;
    height: 50%;
    box-sizing: border-box;
    transform: rotate(-45deg);
    border: 5px solid #000;
    border-left: none;
    border-top: none;
}
.owl-carousel .owl-prev span{
    transform: rotate(135deg);
    left: 35%;
    right: auto;
}
.owl-carousel:hover > .owl-nav{
    opacity: 1;
}
.owl-carousel .owl-prev:hover,
.owl-carousel .owl-next:hover{
    opacity: 0.6;
}
.owl-carousel .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    width: 100%;
    bottom: 10px;
    height: 25px;
    font-size: 0px;
    background: red;
}
.local_pontos .owl-dot,
.owl-carousel .owl-dots .owl-dot {
    display: inline-block;
    background: transparent;
    width: auto;
    height: auto;
}
.local_pontos .owl-dot span,
.owl-carousel .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    background: rgba(255,255,255,0.25);
    box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
    display: block;
    -webkit-backface-visibility: visible;
    border-radius: 30px;
    margin: 5px;
}
.local_pontos .owl-dot.active span,
.local_pontos .owl-dot:hover span,
.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
    background: white;
}

/*
   ██████████   ███   ███   ███   ██████████  
   ██████████░░ ███░░ ███░░ ███░░ ██████████░░
   ████░░░░░░░░ ███░░ ███░░ ███░░ ████░░░░░░░░
   ██████████   ███░░ ███░░ ███░░ ██████████  
   ██████████░░ ███░░ ███░░ ███░░ ██████████░░
     ░░░░████░░ ███░░ ███░░ ███░░   ░░░░████░░
   ██████████░░ ███████████████░░ ██████████░░
   ██████████░░ ███████████████░░ ██████████░░
     ░░░░░░░░░░  ░░░░░░░░░░░░░░░░   ░░░░░░░░░░
*/


/* HEADER */
.header_site img {
    margin: 0 auto;
    display: block;
    width:350px;
    padding: 30px 25px;
}

/* BACKGROUND AND HEIGHT*/
main{
    background: url("/assets/img/bg/bg.jpg") no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    min-height: calc(100vh - 120px)
}

/* MAIN WRAPPERS AND CONTAINERS*/
#main-wp{
    padding:50px 0 15px 0;
}

#main-ct{
    background-color: white;
    -webkit-box-shadow: 0px 4px 15px -2px rgba(0,0,0,0.73);
    -moz-box-shadow: 0px 4px 15px -2px rgba(0,0,0,0.73);
    box-shadow: 0px 4px 15px -2px rgba(0,0,0,0.73);
    overflow: hidden;
}

#pic img{
    max-width:none;
    height:100%;
        transform: translateX(-50%);
    left: 50%;
    position: relative;
}
#text{
    background:white;
    height:750px;
}

/* TEXTS */

#tit-wp{
    margin-top:65px;
}

.tit_red{
    font-weight: 600;
    color: #b31041;
    font-size: 37px;
}

.sub_tit_ct{
    margin-top: 15px;
}

.sub_tit_ct p{
    line-height:1.5;
    color: #6a6a6a;
    font-size:17px;
    opacity:0.85;
}

.sub_tit_ct strong{
    text-decoration: underline;
    color: #545454;
    font-weight: 700
}

/* WRAPPER PADDINGS */
.wp_pad{
    padding:50px 75px 25px 75px;
}


/* STEPS */
#step-ico-ct {
    padding-left:75px;
    padding-right:75px;
    margin-left:auto;
    overflow-x: hidden;
    overflow-y: hidden;
}


#step-ico-ct  svg{
    width:35px;
    fill:white;
    height: 100%;
}

#step-ico-ct  div.it{
    border-radius:100%;
    width:60px;
    height:60px;
    background:#dfdfdf
}

#step-ico-ct  div.active{
    background-color: #b31041;
}

#step-line{
    position:absolute;
    top: 50%;
    content: '';
    border: 1px solid #dfdfdf;
    width:calc(100% - 165px);
}


#gratis-icon img{
    width:20%;
    max-width:115px;
    position:absolute;
    right:15px;
    top: 175px;
}

#steps-ct{
    margin-top: 40px;
}


#politica-ct p, #step-2 small{
    font-size:10px;
    line-height:1.5;
    color: #6a6a6a;
    opacity:0.85;
}

#sucesso{
    margin-top:25px;
}
#sucesso p{
    font-size:20px;
    line-height:1.5;
    color: #6a6a6a;
    opacity:0.85;
}


#step-3{
    margin-top: 125px;
}

.bt_step {
    display: inline-block;
    background: #B31041;
    height: 50px;
    line-height: 50px;
    color: #fff;
    text-transform: uppercase;
    min-width: 150px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 4px 8px rgba(0,0,0,0.15);
    -webkit-box-shadow: 0px 4px 8px rgba(0,0,0,0.15);
    cursor: pointer;
}

.bt_step:hover {
    background: #000;
}

#step-1-ico:not(.active),#step-2-ico:not(.active){
    cursor: pointer;
}

#step-3 svg{
    fill: #7ec462;
    width:150px;
}



/* FORM ELEMENTS */
.form_select{
    margin-top:5px;
    margin-bottom: 5px;
}
.form_linha input:focus {
    border-color: #b31041;
}

.form_linha {
    margin-bottom: 20px;
    overflow-x: hidden;
}
.form_linha input {
    display: block;
    width: 100%;
    text-align: left;
    height: 45px;
    line-height: 45px;
    border-bottom: 2px solid rgba(0,0,0,0.1);
    font-size: 17px;
    position: relative;
    padding-left:15px;
}


.select {
    position: relative;
    display: block;
    overflow: hidden;
    cursor: pointer;
    background: rgba(0,0,0,0.07);
    border: none;
    border-radius:0px;
}

.select:before {
    content: "";
    width: 10px;
    height: 10px;
    right: 10px;
    top: 50%;
    margin-top: -6px;
    position: absolute;
    transform: rotate(45deg);
    box-sizing: border-box;
    border: 3px solid rgba(0,0,0,0.15);
    border-left: none;
    border-top: none;
}

.select select {
    border: none;
    box-shadow: none;
    background-image: none;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 15px 40px 15px 15px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
    font-size: 17px;
    color: #666;
}
.select select:focus {
    outline: none;
}

.priv{
    position: relative;
}

.priv_in{
    position: relative;
    max-width: 1000px;
    margin: 0px auto;
    padding: 40px 15px;
}

#politica-ct a{text-decoration: underline; color:#545454}

#resp-head{
    display:none;
        overflow: hidden;
}

#resp-head img{max-width:none; width:100%;     margin-bottom: -15px;}


#form-kw{height:330px}