
/* geral */

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

textarea,
input,
select,
button,
body{
    font-size: 16px;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
}

img{
    max-width: 100%;
}
.in{
    max-width: 1200px;
    padding: 0px 15px;
}
.in_m{
    max-width: 1100px;
}
.in_s{
    max-width: 1000px;
}
.in_xs{
    max-width: 900px;
}


/* texto */
.txt li,
.txt p{
    font-size: 18px;
    min-height: 25px;
    line-height: 30px;
    color: #4a6c82;
    font-weight: 300;
}
.txt p a{
    color: inherit;
    text-decoration: underline;
}
.txt p strong{
    font-weight: 500;
}
.txt p em{
    font-weight: 300;
    font-style: normal;
    color: #0079c1;
}

.txt ul{
    position: relative;
}

.txt ul.colunas{
    font-size: 0px;
}

.txt ul.colunas > li{
    display: inline-block;
    vertical-align: top;
    width: 25%;
    padding-right: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.txt li{
    font-weight: 400;
    position: relative;
    padding-left: 30px;
    box-sizing: border-box;
}

.txt li:before{
    font-family: 'signed';
    content: "\e93a";
    position: absolute;
    margin-left: -30px;
    opacity: 0.5;
}


/* 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;
}

/* checkbox */
.checkbox{
    position: relative;
}
.checkbox input{
    display: none;
}
.checkbox label{
    position: relative;
    cursor: pointer;
}
.checkbox label:before{
    font-family: 'signed';
    content: "\e937";
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    border-radius: 20px;
    text-align: center;
    line-height: 0px;
    text-indent: 3px;
    background: rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.1);
    color: rgba(0,0,0,0);
    box-sizing: border-box;
    text-shadow: none;
    margin-right: 10px;
}
.checkbox input[type=checkbox]:checked ~ label:before{
    color: #0A82FD;
    background: #fff;
    border-color: #0A82FD;
    opacity: 1;
    text-shadow: 1px 0px 0px #fff, 2px 0px 0px #fff;
    font-size: 18px;
    line-height: 14px;
}

/* 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: 100vw;
    height: 100vh;
    z-index: 1000;
    display: none;
    overflow: hidden;
}
.lb_frame{
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    overflow-x: hidden;
    overflow-y: auto;
}

.lb_area{
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
}

.lb_cortina{
    background: red;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.75);
    opacity: 0;
}

.lb_anim_arranque{
    display: block;
}

.lb_anim_arranque .lb_frame{
    margin-top: 150vh;
    margin-left: 100vw;
}
.lb_anim_aberto .lb_frame{
    margin-top: 0px;
    margin-left: 0vw;
}
.lb_anim_fechado .lb_frame{
    margin-top: 100vh;
    margin-left: 100vw;
}

.lb_anim_arranque .lb_cortina{
    opacity: 0;
}
.lb_anim_aberto .lb_cortina{
    opacity: 1;
}
.lb_anim_fechado .lb_cortina{
    opacity: 0;
}

.lb_x{
    position: absolute;
    right: -20px;
    top: -20px;
    width: 40px;
    height: 40px;
    z-index: 2;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0px 2px 15px rgba(0,0,0,0.3);
    transition: all 300ms ease-out;
    cursor: pointer;
}

.lb_x:before,
.lb_x:after{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 2px;
    background: #999;
    transform: rotate(45deg);
    margin-left: -9px;
    margin-top: -1px;
    border-radius: 2px;
}
.lb_x:after{
    transform: rotate(-45deg);
}
.lb_x:hover{
    transform: scale(1.3,1.3);
}
.lb_in{
    width: 100vw;
    display: flex;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    flex-wrap: wrap;
    height: 100vh;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px;
}

.lb_cont{
    background: #fff;
    width: auto;
    max-width: 600px;
    display: block;
    margin: 0px auto;
    position: relative;
    box-sizing: border-box;
    flex: auto;
    padding: 30px;
}


/* accordion */

.accordion{
}

/* slider */

.slider{
    font-size: 0px;
    position: relative;
    padding-bottom: 40px;
}

.swiper_bt_anterior,
.swiper_bt_proximo{
    position: absolute;
    width: 50px;
    height: 100%;
    top: 0;
    left: -50px;
    display: block;
    z-index: 2;
    background: -webkit-linear-gradient(left, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 100%);
    background: linear-gradient(to right, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 100%);
    cursor: pointer;
}

.swiper_bt_proximo{
    left: auto;
    right: -50px;
    background: -webkit-linear-gradient(
        right, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 100%
    );
    background: linear-gradient(to left, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 100%);
}

.slider:hover > .swiper_bt_anterior{
    left: 0;
}
.slider:hover > .swiper_bt_proximo{
    right: 0;
}

.swiper_bt_anterior.swiper-button-disabled,
.swiper_bt_proximo.swiper-button-disabled{
    opacity: 0;
}
.swiper_bt_anterior:after,
.swiper_bt_proximo:after{
    content: "";
    position: absolute;
    top: 50%;
    width: 25px;
    height: 25px;
    margin-top: -12px;
    box-sizing: border-box;
    border: 2px solid rgba(255,255,255,0.5);
    border-bottom: none;
    border-right: none;
    transform: rotate(-45deg);
    left: 15px;
}
.swiper_bt_proximo:after{
    transform: rotate(135deg);
    left: auto;
    right: 15px;
}
.swiper_bt_anterior:hover::after,
.swiper_bt_proximo:hover::after{
    border-color: rgba(255,255,255,1);
}

.swiper-pagination-bullet{
    background: #0079c1;
}
.swiper-pagination-bullet-active{
    background: #0079c1;
}

.swiper-pagination-bullets-dynamic{
    overflow: visible;
}

.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets{
    bottom: 0;
}

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


.txt ul.laranja,
.txt ul.laranja li,
.txt li.laranja,
.txt p.laranja,
.laranja{
    color: #f29100;
}

.txt ul.azul,
.txt ul.azul li,
.txt li.azul,
.txt p.azul,
.azul{
    color: #0079c1;
}


header.screen{
    background-image: linear-gradient(to bottom right, #ffcc66, #ff6600);
    background-image: url(/_sws/data/img/bgs/17.jpg);
}
.wp_numeros.bg{
    background-image: url(/_sws/data/img/bgs/11.jpg);
    background-attachment: fixed;
}
.wp_mapa.bg{
    background-image: url(/_sws/data/img/bgs/15.jpg);
    background-attachment: fixed;
}
.wp_fim.bg{
    background-image: url(/_sws/data/img/bgs/18.jpg);
    background-attachment: fixed;
}

.menu{
    position: fixed;
    top: 10px;
    left: 10px;
    right: 10px;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255,0.5);
    border-radius: 5px;
    overflow: hidden;
}

.menu_pos{
}

.menu_bt{
    padding: 15px 5px;
    text-align: center;
    color: #fff;
    box-sizing: border-box;
    cursor: pointer;
    text-align: center;
}

.menu_bt:last-child{
}

.menu_bt:hover{
    text-shadow: 0px 0px 5px #fff;
}

.menu.opaco{
    background: #fff;
    box-shadow: 0px 0px 30px rgba(28, 96, 135, 0.2);
    border: 1px solid rgba(255, 255, 255,1);
}

.menu.opaco .menu_bt{
    color: #0079c1;
}
.menu.opaco .menu_bt:hover{
    text-shadow: 0px 0px 0px #fff;
    color: #f29100;
}




.logo{
    text-align: center;
}
.logo img{
    max-width: 350px;
    filter: drop-shadow(0px 0px 20px rgba(0,0,0,0.3));
}

.scroll_i{
    position: relative;
    font-size: 40px;
    color: #fff;
    text-align: center;
    padding-top: 20px;
}

.scroll_i i{
    transform: translateY(0%);
    opacity: 1;
    animation-name: scroll_i_anim;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

@keyframes scroll_i_anim {
  0% {
    transform: translateY(-50%);
    opacity: 0;
    }
  30% {
    transform: translateY(0%);
    opacity: 1;
    }
  100% {
    transform: translateY(200%);
    opacity: 0;
    }
}

.msg_ceo_cx{
    background: #fff;
    padding: 50px;
    width: calc(100% + 50px);
    margin-left: -50px;
    box-sizing: border-box;
    margin-top: -30px;
    border-radius: 5px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.05);
}
.hist_aspa{
    padding-right: 40px;
    font-style: italic;
    font-size: 30px;
    line-height: 40px;
    font-weight: 300;
    padding-bottom: 20px;
}

.ceo_col_foto{
    z-index: 2;
}

.wp_intro{
    padding-top: 50px;
    padding-bottom: 150px;
    text-align: center;
}

.intro_cont{
    text-align: center;
    padding-top: 150px;
}

.titulo{
    font-weight: 700;
    font-size: 22px;
    padding-top: 20px;
    color: #fff;
}

.titulo br{
    display: none;
}

.subtitulo{
    font-size: 30px;
    padding: 10px;
    color: #fff;
}

.subtitulo strong{
    font-weight: 300;
    display: block;
    position: absolute;
    top: -150vh;
}

.wp_sec{
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 100px 0px;
}

.wp_margem{
    padding: 100px 0px;
}

.topico{
    font-weight: 700;
    font-size: 30px;
    padding-bottom: 30px;
}

.bt_lermais{
    margin: 20px 0px;
    display: inline-block;
    padding: 0px 25px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 3px;
    text-transform: uppercase;
    color: #4a6c82;
    font-size: 14px;
    cursor: pointer;
    overflow: hidden;
    height: 50px;
    line-height: 50px;
    box-sizing: border-box;
    position: relative;
    box-shadow: 0px 0px 0px #fff;
}

.bt_lermais.branco{
    border-color: #fff;
    color: #fff;
}

.bt_lermais:hover{
    border-color: #f29100;
    background: #f29100;
    color: #fff;
    box-shadow: 0px 5px 10px rgba(242, 145, 0, 0.5);
}

.bt_lermais.branco:hover{
    border-color: #fff;
    color: #f29100;
    background: #fff;
    box-shadow: 0px 0px 0px rgba(242, 145, 0, 0);
}


dt.aberto .bt_lermais{
    margin: 0px;
    padding: 0px 25px;
    height: 0px;
    border: 0px solid rgba(0,0,0,0);
}

.wp_cinza{
    background: rgba(0,0,0,0.05);
    padding: 100px 0px;
}

.aspa{
    font-weight: 300;
    font-style: italic;
    font-size: 30px;
    line-height: 40px;
    padding: 50px 0px;
}

.aspa_icon img{
    width: 50px;
}

.ceo .accordion{
    margin-left: 100px;
}

.ceo_nome{
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 14px;
}

.ceo_info{
    padding-right: 75px;
}

.ceo_info .txt p{
    line-height: 20px;
    font-size: 14px;
}

.cols .txt p{
    text-align: justify;
}

.wp_numeros{
    background-image: linear-gradient(to bottom right, #ffcc66, #ff6600);
    min-height: 80vh;
    text-align: center;
}

.numeros{
    font-size: 40px;
    color: #fff;
    font-weight: 300;
    padding-bottom: 30px;
    display: block;
}

.win{
    position: relative;
    text-align: center;
    padding-top: 40px;
}

.win img{
    max-width: 150px;
}

.numeros{
    position: relative;
    max-width: 900px;
    margin: 0px auto;
    padding-top: 50px;
    text-align: center;
}


.numeros span{
    font-weight: 900;
    font-size: 70px;
    display: block;
}

.numeros span strong{
    display: inline-block;
    padding: 20px;
    margin: 20px;
    border: 3px solid #fff;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.numeros span strong:before{
    content: "";
    position: absolute;
    width: 80px;
    height: 300px;
    background: rgba(255,255,255,0.15);
    left: 15%;
    top: -100px;
    transform: rotate(-23deg);
}

.numeros span strong:after{
    content: "";
    position: absolute;
    width: 30px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    left: 70%;
    top: -100px;
    transform: rotate(-23deg);
}

.numeros span strong em{
    font-weight: 300;
}

.mais_num{
    text-align: center;
    padding: 40px 20px;
    color: #4a6c82;
}

.mais_num em{
    font-weight: 700;
}

.mais_num strong{
    display: block;
    font-weight: 900;
    font-size: 80px;
    color: #fff;
}

.num_empresa .mais_num em,
.num_empresa .mais_num strong{
    color: #0079c1;
}

.mais_num span{
    display: block;
    margin: 10px auto;
    max-width: 250px;
    line-height: 22px;
    font-size: 18px;
    color: #fff;
}

.test{
    margin: 20px;
}

.test_msg{
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.05);
    position: relative;
    z-index: 2;
}

.test_pessoa{
    text-align: center;
    padding-top: 30px;
    color: #0079c1;
}

.test_pessoa_in{
    display: inline-block;
    padding-left: 120px;
    position: relative;
    height: 100px;
}

.test_pessoa_in em{
    position: absolute;
    left: 0;
    top: 0;
}


.test_pessoa_in em:before{
    content: "";
    background: #fff;
    width: 30px;
    height: 30px;
    position: absolute;
    transform: rotate(45deg);
    left: 50%;
    margin-left: -15px;
    margin-top: -50px;
    box-shadow: 3px 3px 15px rgba(0,0,0,0.05);
}

.test_pessoa_in em img{
    width: 100px;
    border-radius: 100px;
}

.test_pessoa_in span{
    display: inline-block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    line-height: 20px;
    max-width: 300px;
    text-align: left;
    color: #4a6c82;
}

.test_pessoa_in span strong{
    display: block;
    font-size: 18px;
    line-height: 20px;
    color: #0079c1;
    font-weight: 700;
}
.test_pessoa_in span small{
    display: block;
    font-size: 12px;
}

.testemunhos{
    text-align: center;
    font-size: 40px;
    padding-bottom: 40px;
    font-weight: 300;
}

.wp_mapa{
    background-image: linear-gradient(to bottom right, #ffcc66, #ff6600);
    padding: 100px 0px;
}

.mapa_info{
    position: absolute;
    left: 0px;
    bottom: 0px;
    color: #fff;
    font-size: 40px;
    text-transform: uppercase;
    text-align: left;
    line-height: 45px;
    font-weight: 900;
    text-shadow: 0px 3px 0px rgba(0,0,0,0.15);
}

.footer_bt{
    color: #000;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.5;
    cursor: pointer;
}

.footer_bt:hover{
    opacity: 1;
}

.cand{
    background: #0079c1;
    position: fixed;
    right: 10px;
    bottom: 10px;
    height: 50px;
    line-height: 50px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0px 20px;
    color: #fff;
    z-index: 100;
    box-shadow: 0px 0px 0px #0079c1;
    cursor: pointer;
}

.fim_bt_pos .cand{
    position: relative;
    display: inline-block;
    right: auto;
    bottom: auto;
    background: #f29100;
    opacity: 0;
    pointer-events: none;
}

.cand:hover{
    box-shadow: 0px 0px 30px #0079c1;
}

body.nofim .cand{
    opacity: 0;
    pointer-events: none;
}

body.nofim .fim_bt_pos .cand{
    opacity: 1;
    pointer-events: auto;
}

.fim_bt_pos{
    padding-top: 20px;
}

.lb_iframe .lb_cont{
    max-width: calc(100vw - 80px);
    max-height: calc(100vh - 80px);
    padding: 0;
}

.lb_iframe .lb_cont iframe{
    width: calc(100vw - 80px);
    height: calc(100vh - 80px);
}

.ceo_foto{
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    font-size: 0px;
}

.test_msg .txt p{
    font-size: 20px;
    line-height: 30px;
}

.test_msg.tam_2 .txt p{
    font-size: 17px;
    line-height: 22px;
}

.test_msg.tam_3 .txt p{
    font-size: 14px;
    line-height: 18px;
}

.rp{
    padding: 30px 0px;
}

.casais img{
    height: 30px;
}

.copy{
    font-size: 14px;
}

.copy span{
    opacity: 0.5;
}

.copy a{
    padding-left: 10px;
    color: #000;
    text-decoration: underline;
    opacity: 0.5;
}
.copy a:hover{
    opacity: 1;
}

.marca span{
    padding: 30px;
    background: #fff;
    display: block;
    border-radius: 5px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.05);
    font-size: 0px;
    height: 100px;
}

.marca span img{
    max-width: 100%;
    max-height: 100px;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    left: 50%;
    position: relative;
    display: block;
}

.marca span em{
    font-size: 18px;
    text-align: center;
    display: block;
    text-transform: uppercase;
    position: relative;
    opacity: 0.3;
    font-weight: 700;
    top: 50%;
    transform: translateY(-50%);
}


.cont_fim{
    text-align: center;
    font-size: 30px;
    color: #fff;
    font-weight: 900;
}

.cont_fim_pt{
    font-weight: 300;
    padding-top: 5px;
}


.video_frame{
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 5px;
    max-width: 100%;
}
.video_frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cont{
    position: relative;
}

.cont.cont_especial{
    border: 5px solid #f29100;
    padding: 75px;
}


.cont.cont_especial .txt p{
    font-size: 23px;
    line-height: 35px;
}


