
/* geral */

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

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

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


/* texto */
.txt p{
    font-size: 18px;
    min-height: 25px;
    line-height: 25px;
    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;
}

/* 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: 100vw;
    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-left: -100vw;
}
.lb_anim_aberto .lb_frame{
    margin-left: 0px;
}
.lb_anim_fechado .lb_frame{
    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;
}

.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: #fff;
    box-shadow: 0px 0px 5px rgba(0,0,0,1);
}
.swiper-pagination-bullet-active{
    background: #fff;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
}

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


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

/* cores */

.c_main_tit{
    font-size: 24px;
    line-height: 32px;
    color: #ffb71b;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.c_tit{
    font-size: 20px;
    line-height: 28px;
    color: #0055b8;
    font-weight: 700;
    margin-bottom: 5px;
}

.c_lbl, .c_lnk{
    font-size: 18px;
    line-height: 20px;
    color: #0055b8;
    font-weight: 400;
    margin-bottom: 5px;
}

.c_lnk{
    text-decoration: none;
    display: block;
}

.c_lnk:hover{
    opacity: .6;
}

.c_logo img{
    display: block;
    width: 250px;
    margin: auto;
}

.c_logo{
    margin-bottom: 80px;
}

.c_bloc{
    margin-bottom: 40px;
}

.c_bloc_tit{
    margin-bottom: 60px;
}

.c_bloc:last-child{
    margin-bottom: 0px;
}

.c_lnk:last-child, .c_lbl:last-child{
    margin-bottom: 0px;
}

.c_info{
    text-align: center;
}



