/* Variáveis */

:root {
 --cor-base:#0b3c61;
 --cor-clara:#1b96f5;
 --cor-escura:#07263D;
 --cor-dois:#61cf9b;
 --cor-bg:#fff;
 --cor-bgcinza:#e5e5e5;
}

/* Reset */

* {
 margin:0; padding:0; border:0; outline:0;
 box-sizing:border-box;
}

/* Base */

html {
 position:relative;
 min-height:100%;
}

body {
 margin:0;
 height:100%;
 min-width:270px;
 overflow-y:scroll;
 overflow-x:hidden;
 background-color:var(--cor-bg);
 color:#000;
 font-family:Arial,Helvetica;
 font-size:1em;
 font-weight:400;
}

.beiruti {
 font-family:'Beiruti',Arial,Helvetica;
 font-weight:400;
 color:#000;
}

/* jQuery UI */

.ui-widget {
 font-style:inherit !important;
 font-family:Tahoma,Arial,Helvetica !important;
 font-size:100% !important;
}

.ui-dialog-titlebar-close {
 visibility:hidden;
}

.ui-tooltip-content {
 font-size:0.8em;
 line-height:initial;
}

.ui-accordion-header {
 outline:none !important;
}

.ui-datepicker {
 font-size:0.95em !important;
}

.ui-datepicker-calendar td,.ui-datepicker-calendar th {
 min-width:unset !important;
 margin:unset !important;
}

.ui-progressbar-value {
 height:2em !important;
}

.ui-widget-shadow {
 -webkit-box-shadow:2px 2px 5px var(--cor-base) !important;
 box-shadow: 2px 2px 5px var(--cor-base) !important;
}

.ui-autocomplete {
 max-height:200px;
 overflow-y:auto;
 overflow-x:hidden;
}

#dialog {
 display:none;
 font-family:sans-serif,Arial;
 line-height:1.2em;
}

.dialog-fixed {
 position:fixed !important;
}

/* Tags */

a {
 text-decoration:none;
 color:#000;
 outline:none;
 overflow-wrap:anywhere;
}

a.:hover {
 text-decoration:none;
 color:var(--cor-escura);
}

a.azul {
 text-decoration:none;
 color:var(--cor-base);
 outline:none;
 overflow-wrap:anywhere;
}

a.azul:hover {
 text-decoration:none;
 color:#000;
}

a.branco {
 text-decoration:none;
 color:#fff;
 outline:none;
 overflow-wrap:anywhere;
 transition:0.3s;
}

a.branco:hover {
 text-decoration:none;
 color:var(--cor-dois);
}

input[type=text],input[type=password],input[type=file],select,textarea {
 font-family:Arial,Helvetica;
 border:1px solid #c0c0c0;
 background-color:#fff;
 border-radius:2px;
 color:#000;
 margin-bottom:7px;
 padding:8px;
 outline:none;
 resize:none;
}

input[type=text]:focus,input[type=password]:focus,select:focus,textarea:focus {
 border:1px solid var(--cor-clara);
}

input[type=file] {
 width:100%;
 max-width:350px;
}

input[type=checkbox] {
 margin:10px 4px 13px 17px;
 vertical-align:middle;
}

input[type=checkbox]:nth-child(1) {
 margin-left:0;
}

::placeholder {
 color:var(--cor-escura);
 opacity:0.4;
 font-size:0.9em;
}

button,input[type=button],input[type=submit] {
 background-color:var(--cor-base);
 border:solid 1px var(--cor-base);
 border-radius:3px;
 padding:8px;
 color:#fff;
 outline:none;
 transition:0.3s;
 cursor:pointer;
}

button:hover,input[type=button]:hover,input[type=submit]:hover {
 background-color:var(--cor-clara);
 border:solid 1px var(--cor-clara);
}

hr {
 border:0;
 width:100%;
 height:2px;
 background-color:var(--cor-base);
}

li {
 margin-left:1em;
}

break {
 flex-basis:100%;
 width:0; height:0;
 overflow:hidden;
}

main {
 margin:0;
 padding:0;
}

/* Específicos */

.nosel {
 user-select:none;
 -moz-user-select:none;
 -ms-user-select:none;
 -webkit-user-select:none;
 -webkit-touch-callout:none;
 -webkit-tap-highlight-color:transparent;
}

.yessel {
 user-select:text !important;
 -moz-user-select:text !important;
 -ms-user-select:text !important;
 -webkit-user-select:text !important;
}

.noresp {
 display:initial;
}

.yesresp {
 display:none;
}

.flex {
 display:flex;
 flex-wrap:wrap;
 justify-content:center;
}

.loading {
 display:none;
 z-index:99;
}

.load1 {
 position:absolute;
 top:0; left:0;
 z-index:99;
 width:100%;
 height:100%;
 background-color:#fff;
 opacity:0.2;
}

.load2 {
 width:48px;
 height:48px;
 position:fixed;
 top:49%;
 left:49%;
 transform:translate(-50%,-50%);
 animation:rotation 1.7s infinite linear;
}

#lightbox {
 display:none;
 width:100vw;
 height:100vh;
 top:0; left:0;
 position:fixed;
 backdrop-filter:grayscale(1) brightness(0.8);
 z-index:99;
}

#lightbox-content {
 display:none;
 position:absolute;
 width:100%; max-height:100%;
 top:50%; left:50%;
 transform:translate(-50%,-50%);
 background:#fff;
 width:100%; max-height:100%;
 border:solid 5px var(--cor-base);
 border-radius:10px;
 padding:1em;
 overflow:auto;
 margin:0 auto;
}

#lightbox-close {
 position:absolute;
 top:0; right:0;
 margin:8px 4px;
 z-index:99;
}

#lightbox-close span {
 background-color:#fff;
 border:solid 8px #fff;
 padding:8px;
 border-radius:16px;
 cursor:pointer;
 box-shadow:0 0 5px;
}

#lightbox-close span:hover {
 border:solid 8px var(--cor-base);
}

@keyframes rotation {
 from { transform:rotate(0deg); }
 to { transform:rotate(359deg); }
}

.embed-container {
 position:relative;
 padding-bottom:56.25%;
 height:0;
 overflow:hidden;
 max-width:100%;
}

.embed-container iframe,.embed-container object,.embed-container embed {
 position:absolute;
 top:0;
 left:0;
 width:100%;
 height:100%;
}

@media screen and (max-width:639px) {

 .noresp {
  display:none;
 }

 .yesresp {
  display:initial;
 }

 tr {
  display:flex;
  justify-content:center;
  flex-direction:row;
  flex-wrap:wrap;
 }

 td,th {
  flex:1;
 }

}

@media screen and (max-width:300px) {
 body {
  font-size:0.9em;
 }
}

@media screen and (max-width:200px) {
 body { display:table-column;background:url(/imagens/layout/logotipo.png) center center / contain no-repeat fixed padding-box content-box var(--cor-bg); }
}

/** Projeto **/

.topo {
 width:100%;
 height:85px;
 background-color:var(--cor-base);
 box-shadow:0 3px 5px rgba(0,0,0,0.5);
 position:fixed;
 top:0;
 left:0;
 z-index:1;
}

.topologo {
 display:inline-block;
 width:100%;
 max-width:440px;
 padding:28px 20px 20px;
}

.logo {
 width:100%;
 max-width:400px;
}

.logoresp {
 display:none;
 width:100%;
 max-width:139px;
}

.topomenu {
 display:inline-block;
 float:right;
 vertical-align:top;
 color:#fff;
}

.menuitem {
 display:inline-block;
 font-size:1.2em;
 padding:32px 15px 0;
 position:relative;
 cursor:pointer;
}

.menuseta {
 width:10px;
 margin-left:5px;
}

.dropdown {
 visibility:hidden;
 opacity:0;
 position:absolute;
 top:100%;
 left:0;
 width:200px;
 padding:20px 0;
 background-color:var(--cor-base);
 border-radius:0 0 5px 5px;
 transform:translateY(-2em);
 z-index:-1;
 transition:all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

.menuitem:focus .dropdown, .menuitem:hover .dropdown {
 visibility:visible;
 opacity:1;
 z-index:1;
 transform:translateY(0%);
 transition-delay:0s, 0s, 0.3s;
}

.dropdown_item {
 display:inline-block;
 width:200px;
 text-align:center;
 padding:6px;
 margin:0;
 font-size:0.9em;
 color:#fff;
}

.dropdown_item:hover {
 color:var(--cor-dois);
}

.topologin {
 display:inline-block;
 vertical-align:top;
 padding:14px 20px 0;
}

.botlogin, .botcadastro {
 display:inline-block;
 width:90px;
 background-color:#fff;
 border-radius:3px;
 margin:3px 0;
 padding:4px 3px 2px 5px;
 font-weight:600;
 font-size:0.85em;
 color:var(--cor-base);
 transition:0.3s;
}

.botlogin:hover, .botcadastro:hover {
 background-color:#ddd;
}

.botlogin_ico {
 width:15px;
 margin-right:5px;
 margin-bottom:-2px;
}

#menu_hamb_ico {
 display:none;
 width:25px;
 height:25px;
 margin:19px 5px 0 0;
 border:0;
 cursor:pointer;
}

#menu_resp {
 display:none;
 position:absolute;
 top:55px;
 left:0;
 width:100%;
 text-align:center;
 background:var(--cor-base);
 box-shadow:0 3px 5px rgba(0,0,0,0.4);
 padding:15px 20px 10px;
 z-index:9;
}

.menuitem_resp {
 display:inline-block;
 width:100%;
 background-color:var(--cor-escura);
 border-radius:3px;
 padding:7px;
 margin-bottom:10px;
 font-size:1.1em;
 font-weight:500;
 color:#fff;
 cursor:pointer;
}

.menuitem_resp:hover {
 color:#fff;
}

.rodape {
 width:100%;
 background-color:var(--cor-base);
 padding:10px;
 color:#fff;
}

.rodinfos {
 display:inline-block;
 vertical-align:top;
 padding:20px;
 font-size:1.3em;
}

.rodredes {
 display:inline-block;
 float:right;
 text-align:center;
 padding:20px;
 font-size:1.3em;
}

.rodbola {
 display:inline-block;
 width:40px;
 height:40px;
 background-color:var(--cor-dois);
 border-radius:20px;
 margin:5px 1px;
 padding-top:7px;
 text-align:center;
 transition:0.3s;
}

.rodico {
 width:25px;
}

.rodbola:hover {
 background-color:#fff;
}

.inweb {
 width:100%;
 background-color:var(--cor-escura);
 text-align:center;
 padding:15px 15px 12px;
 font-size:0.75em;
 letter-spacing:0.03em;
}

.titulo {
 display:inline-block;
 border-bottom:2px solid var(--cor-dois);
 padding:10px 15px;
 text-align:center;
}

h1 {
 font-size:3em;
 font-weight:300;
 color:var(--cor-base);
 line-height:0.8em;
}

h6 {
 display:block;
 border-radius:4px;
 background:var(--cor-base);
 font-size:1.25em;
 font-weight:bold;
 color:#fff;
 padding:3px 9px;
}

/** Homepage **/

.slick {
 width:100%;
 z-index:0;
}

.slickdesk {
 width:100%;
 margin-top:85px;
}

.slickmob {
 display:none;
}

.slickseta {
 position:absolute;
 top:45%;
 z-index:1;
 cursor:pointer;
}

.slickimg {
 width:27px;
 margin:0 25px;
 border:0;
 filter:invert();
 transition:0.3s;
}

.slickimg:hover {
 margin:0 20px;
}

.bhbotao {
 width:100%;
 max-width:1030px;
 margin:10px 0;
 font-size:0.9em;
 font-weight:500;
 color:#fff;
}

.home_encontre {
 width:100%;
 max-width:1600px;
 margin:0 auto;
 margin-top:-4px;
 padding:80px 20px;
}

.home_encontre_box {
 width:100%;
 max-width:820px;
 background-color:#fff;
 border:1px solid #b2b2b2;
 outline:5px solid #fff;
 border-radius:1px;
 box-shadow:0 0 20px rgba(0,0,0,0.2);
 margin:1em;
 padding:10px 15px;
 font-size:1.2em;
}

.home_encontre_tit {
 font-size:1.8em;
 color:var(--cor-base);
}

.home_encontre_form {
 flex:1;
 padding:10px 10px 0;
 text-align:left;
}

.home_destaque {
 width:100%;
 padding:60px 15px;
 text-align:center;
}

.home_destaque_box {
 display:inline-block;
 width:100%;
 max-width:420px;
 background-color:#fff;
 border-radius:5px;
 box-shadow:0 0 20px rgba(0,0,0,0.2);
 margin:20px;
 padding:10px;
 text-align:left;
 font-size:1.2em;
 line-height:1.2em;
 transition:0.4s;
 position:relative;
}

.home_destaque_box:hover,.home_news_box:hover {
 box-shadow:3px 5px 20px var(--cor-base);
}

.home_destaque_box:hover,.home_news_box:hover,.home_dica_bolaverde:hover {
 box-shadow:0 0 12px var(--cor-base);
}

.home_destaque_box_foto {
 display:inline-block;
 width:100%;
 max-width:400px;
 aspect-ratio:16 / 9;
 background-position:center;
 background-repeat:no-repeat;
 background-size:cover;
 padding-left:5px;
}

.home_destaque_box_broker {
 display:inline-block;
 width:100px;
 height:80px;
 background-image:url(/imagens/home/bgbroker.png);
 background-position:center;
 background-repeat:no-repeat;
 text-align:center;
}

.home_destaque_box_tit {
 width:100%;
 background-color:var(--cor-bgcinza);
 text-align:center;
 margin-top:5px;
 padding:12px 8px;
 color:var(--cor-base);
 font-weight:700;
 font-size:1.3em;
}

.home_destaque_box_bot {
 display:inline-block;
 width:100%;
 background-color:var(--cor-base);
 border-radius:3px;
 text-align:center;
 padding:7px;
 font-size:0.9em;
 font-weight:500;
 color:#fff;
 letter-spacing:0.05em;
 transition:0.3s;
}

.home_destaque_box_bot:hover {
 background-color:var(--cor-clara);
}

.home_destaque_box_tag {
 position:absolute;
 top:16px;
 right:15px;
 background-color:var(--cor-clara);
 color:#fff;
 font-weight:bold;
 font-size:0.9em;
 padding:2px 12px;
 border-radius:66px;
}

.home_serv {
 width:100%;
 background-color:var(--cor-bgcinza);
 padding:60px 15px;
 text-align:center;
}

.home_serv_box {
 display:inline-block;
 width:100%;
 max-width:165px;
 margin:30px 15px 20px;
 font-size:1.3em;
 color:var(--cor-base);
 line-height:0.9em;
}

.home_serv_bola {
 display:inline-block;
 width:100px;
 height:100px;
 background-color:#fff;
 border:1px solid var(--cor-base);
 border-radius:50px;
 text-align:center;
 padding-top:18px;
 margin-bottom:10px;
 transition:0.5s;
}

.home_serv_ico {
 width:60px;
}

.home_serv_box:hover .home_serv_bola {
 background-color:var(--cor-base);
}

.home_serv_box:hover .home_serv_ico {
 filter:brightness(100);
}

.home_dica {
 width:100%;
 max-width:1200px;
 margin:0 auto;
 text-align:center;
 padding:50px 15px 25px;
}

.home_dica_col {
 flex:1;
 padding:20px;
 text-align:left;
}

.home_dica_bola {
 flex:1;
 max-width:75px;
}

.home_dica_bolaverde {
 width:75px;
 height:75px;
 border-radius:40px;
 text-align:center;
 padding-top:22px;
 transition:0.5s;
}

.home_dica_texto {
 flex:4;
 padding:5px 15px 45px;
 font-size:1.3em;
 color:var(--cor-base);
 line-height:1.2em;
}

.home_news {
 width:100%;
 background-color:var(--cor-bgcinza);
 padding:50px 15px;
 text-align:center;
}

.home_news_box {
 display:inline-block;
 width:100%;
 max-width:420px;
 background-color:#fff;
 border-radius:5px;
 box-shadow:0 0 20px rgba(0,0,0,0.2);
 margin:20px;
 padding:10px;
 font-size:1.3em;
 font-weight:700;
 line-height:1.1em;
 transition:0.4s;
}

.home_news_bot {
 display:inline-block;
 width:100%;
 background-color:var(--cor-base);
 border-radius:3px;
 text-align:center;
 padding:7px;
 margin-top:10px;
 font-size:0.75em;
 font-weight:500;
 color:#fff;
 letter-spacing:0.05em;
 transition:0.3s;
}

.home_news_bot:hover {
 background-color:var(--cor-clara);
}

.blur {
 filter:blur(4px);
 margin-left:5px;
 color:var(--cor-escura);
}

/** Internas **/

.int_titulo {
 width:100%;
 background-color:var(--cor-bgcinza);
 text-align:center;
 margin-top:85px;
 padding:50px 15px;
}

.centro {
 font-family:'Beiruti',Arial,Helvetica;
 width:100%;
 max-width:1500px;
 margin:0 auto;
 padding:50px 15px;
 font-size:1.3em;
}

/** Responsivo **/

@media screen and (max-width:1550px) {
 .topo {
  height:60px;
 }
 .topologo {
  max-width:320px;
  padding:20px 10px 0;
 }
 .logo {
  max-width:300px;
 }
 .menuitem {
  font-size:1.1em;
  padding:21px 10px 0;
 }
 .topologin {
  padding:5px 10px 0;
 }
 .botlogin, .botcadastro {
  width:85px;
  margin:2px 0;
  padding:3px 3px 1px 5px;
 }
 .slickdesk, .int_titulo {
  margin-top:60px;
 }
}

@media screen and (max-width:1260px) {
 .menuitem {
  display:none;
 }
 #menu_hamb_ico {
  display:inline-block;
 }
 .centro {
  padding:40px 15px;
 }
}

@media screen and (max-width:850px) {
 h1 {
  font-size:2.5em;
 }
 .home_encontre {
  padding:60px 20px;
 }
 .home_encontre_tit {
  font-size:1.6em;
 }
 .home_encontre_form {
  padding:10px 5px 0;
 }
 .home_destaque {
  padding:40px 15px;
 }
 .home_dica {
  padding:40px 15px 0;
 }
 .home_dica_col {
  padding:10px;
 }
 .home_dica_bola {
  max-width:65px;
 }
 .home_dica_bolaverde {
  width:65px;
  height:65px;
  padding-top:18px;
 }
 .home_dica_texto {
  padding:5px 15px 40px 10px;
  font-size:1.2em;
 }
}

@media screen and (max-width:650px) {
 .logo, .botcadastro, .logintxt {
  display:none;
 }
 .topologo {
  max-width:169px;
  padding:5px 15px 0;
 }
 .logoresp {
  display:inline-block;
 }
 .topologin {
  padding:17px 10px 0;
 }
 .botlogin {
  width:30px;
  margin:0 5px 0 0;
 }
 .botlogin_ico {
  width:20px;
  margin-right:0;
  margin-bottom:0;
 }
 .rodinfos {
  width:100%;
  padding:10px;
  font-size:1.1em;
 }
 .rodredes {
  width:100%;
  float:none;
  text-align:left;
  padding:10px;
  font-size:1.1em;
 }
 .rodbola {
  width:35px;
  height:35px;
 }
 .rodico {
  width:20px;
 }
 .inweb {
  padding:13px 15px 11px;
  font-size:0.7em;
 }
 .titulo {
  padding:6px 10px;
 }
 h1 {
  font-size:2.1em;
 }
 .slickdesk {
  display:none;
 }
 .slickmob {
  display:inline-block;
  width:100%;
  background-color:var(--cor-bgcinza);
  margin-top:60px;
 }
 .slickimg {
  margin:0 10px;
 }
 .slickimg:hover {
  margin:0 10px;
 }
 .home_encontre {
  padding:40px 20px;
 }
 .home_encontre_box {
  padding:10px 10px 5px;
  font-size:1.1em;
  text-align:center;
 }
 .home_encontre_tit {
  font-size:1.4em;
  font-weight:500;
 }
 .home_encontre_form {
  flex:none;
  display:inline-block;
  width:100%;
  min-width:0;
  padding:5px 0 0;
 }
 .home_destaque {
  padding:30px 20px;
 }
 .home_destaque_box {
  margin:20px 0;
  font-size:1em;
 }
 .home_serv {
  padding:30px 15px;
 }
 .home_serv_box {
  max-width:150px;
  margin:15px 10px 10px;
  font-size:1.2em;
 }
 .home_serv_bola {
  width:80px;
  height:80px;
  padding-top:15px;
  margin-bottom:5px;
 }
 .home_serv_ico {
  width:45px;
 }
 .home_dica {
  padding:30px 20px 15px;
 }
 .home_dica_col {
  flex:none;
  display:inline-block;
  width:100%;
  padding:0;
 }
 .home_dica_texto {
  padding:0 0 30px 10px;
 }
 .home_news {
  padding:30px 20px;
 }
 .home_news_box {
  margin:20px 0;
  font-size:1.2em;
 }
 .int_titulo {
  padding:30px 15px;
 }
 .centro {
  padding:25px 15px;
  font-size:1.2em;
 }
 .home_destaque_box_broker {
  zoom:75%;
 }
}
