/*GERAL*/
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');

body{
  font-family: 'Ubuntu', sans-serif;
}

h1{
	font-size: 2.2em;
  line-height: 1em;
	font-family: 'Ubuntu', sans-serif;
	font-weight: 500;
  font-style: normal;
  color: #FFF;
  margin-bottom: 25px;
}

h2{
	font-size: 1em;
	font-family: 'Ubuntu', sans-serif;
	font-weight: 700;
  font-style: normal;
  color: #FFF;
  text-transform: uppercase; 
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

h3{
	font-size: 1.3em;
	font-family: 'Ubuntu', sans-serif;
	font-weight: normal;
  font-style: normal;
  color: #FFF; 
  font-weight: 400;
  line-height: 1.3em;
  
}

h4{
	font-size: 1.1em;
  font-family: 'Ubuntu', sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #FFF; 
  font-weight: 400;
  line-height: 1.3em;
}

strong{
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  font-style: normal;
}

p{
	font-family: 'Ubuntu', sans-serif;
	font-weight: normal;
  font-style: normal;
  line-height: 1.5em;
}

a{
  font-family: 'Ubuntu', sans-serif;
  font-weight: normal;
  font-style: normal;
  color:#0bc4a5;
}

hr{
  border-top: 1px solid #E6E6E6;
}

.verde{
  color: #0BC4A5;
}

.azul{
  color: #273443;
}

.cinza{
  color: #999999;
}

.btnazul{
  width: 200px;
  height: 50px;
  padding: 0px 20px;
  line-height: 50px;  
  border-radius: 5px;
  background-color: #273443; 
  font-size: 1.2em;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  text-align: center;
  color: #0BC4A5;
  transition: all 0.5s ease;
}

.btnazul:hover{
  background-color: #37495E;
  color: #0BC4A5; 
  -moz-box-shadow: 0 12px 16px 0 rgba(39,52,67,0.1), 0 17px 50px 0 rgba(39,52,67,0.19);
  -webkit-box-shadow: 0 12px 16px 0 rgba(39,52,67,0.1), 0 17px 50px 0 rgba(39,52,67,0.19);
  box-shadow: 0 12px 16px 0 rgba(39,52,67,0.1), 0 17px 50px 0 rgba(39,52,67,0.19);
  }

 .btnverde, .envia button{
  margin: 0 auto;
  border:none;
  min-width: 100px;
  display: table;
  height: 50px;
  padding: 0px 20px;
  line-height: 50px;  
  border-radius: 5px;
  background-color: #0BC4A5; 
  font-size: 1.2em;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  text-align: center;
  color: #FFFFFF; 
  transition: all 0.5s ease;
  cursor: pointer;
}

.envia button{
  margin-bottom: 60px;
}

.btnverde:hover, .envia button:hover {
  background-color: #0DE6C1;
  color: #FFFFFF; 
  -moz-box-shadow: 0 12px 16px 0 rgba(39,52,67,0.1), 0 17px 50px 0 rgba(39,52,67,0.19);
  -webkit-box-shadow: 0 12px 16px 0 rgba(39,52,67,0.1), 0 17px 50px 0 rgba(39,52,67,0.19);
  box-shadow: 0 12px 16px 0 rgba(39,52,67,0.1), 0 17px 50px 0 rgba(39,52,67,0.19);
  } 

 /*MENU*/
.navBar {
  min-width: 100%;
  z-index: 300;
}

.logo {
  display: inline-block;
  height: 70px;
  margin: 55px 20px 45px 0px;
  width: 170px;
}

.wrapper {
  margin: 0 auto;
  max-width: 100%;
  padding: 0 2%;
}

nav ul {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  min-width: 25%;/* 35% */
}

nav ul a {
  color: #FFF;
  text-decoration: none;
  transition: all 0.5s ease;
}

nav ul a:hover {
  color:#EFF9F6;
}

nav li {
    display: inline-block;
    padding: 6px 20px;
    font-size: 1.2em;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
  font-style: normal;
}

#menu-icon { display: none; /* hide menu icon initially */}

nav #menu-toggle {
  display: none;
}
nav .label-toggle {
  display: none;
}
nav .wrapper {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .logo {
    display: inline-block;
    margin: 25px 10px ;
    height: 50px;
  }
  .logo img{
    width: 100%;  
  }   
  nav nav ul a {
    color: #FFF;
  }
  nav ul {
    background-color: #273443;
    display: block;
    height: 0;
    list-style-type: none;
    opacity: 0;
    text-align: center;
    transition: all 0.5s ease;
    width: 100%;
    visibility: hidden;
  }
  nav li {
    color: #53354A;
    display: block;
    font-size: 1.5em;
    padding: 1em 0;
    text-align: center;
  }
  nav #menu-toggle:checked ~ ul {
    opacity: 1;
    height: auto;
    visibility: visible;
    background:#273443;   }

  nav #menu-toggle:checked ~ ul li{
    border-bottom:1px solid #1EBEA6;
  }
  nav #menu-toggle:checked ~ ul li:last-child{
    margin-bottom: 20px;
  }
  nav .label-toggle {
    background: linear-gradient(to bottom, #FFF 0%, #FFF 20%, transparent 20%, transparent 40%, #FFF 40%, #FFF 60%, transparent 60%, transparent 80%, #FFF 80%, #FFF 100%);
    cursor: pointer;
    display: block;
    float: right;
    height: 25px;
    margin-top: 2.3em;
    margin-right: 1em;
    width: 25px;
  }
  nav .wrapper {
    display: block;
  }
}

/*HOME*/
  .home{ 
    margin:20px 20px 0px 20px;
    padding-bottom: 30px;  
    width: auto;
    min-height: 700px;
    background: rgb(11,196,165);
    background: -moz-linear-gradient(180deg, rgba(11,196,165,1) 0%, rgba(71,220,162,1) 669px, rgba(255,255,255,1) 669px, rgba(255,255,255,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(11,196,165,1) 0%, rgba(71,220,162,1) 669px, rgba(255,255,255,1) 669px, rgba(255,255,255,1) 100%);
    background: linear-gradient(180deg, rgba(11,196,165,1) 0%, rgba(71,220,162,1) 669px, rgba(255,255,255,1) 669px, rgba(255,255,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0bc4a5",endColorstr="#ffffff",GradientType=1);
  }


/*FUNCIONALIDADES*/
.backfuncionalidades {
    width: 100%;
    padding-top:100px; 
    background: linear-gradient(to right, #EFF9F6 50%, white 50%);

}

.funcionalidades{
  margin: 50px 0px 100px 0px;
}

.funcionalidades .item{
  min-height: 100px;
  margin-bottom: 40px;
  padding-right: 20px; 
  display: flex;
}

.funcionalidades .item .icone{
  margin-right: 40px;
  height: 100px;
  width: 100px;
  float: left;
  border-radius: 5px;
  background-color: #FFFFFF;
 -moz-box-shadow: 0 12px 16px 0 rgba(39,52,67,0.1), 0 17px 50px 0 rgba(39,52,67,0.19);
  -webkit-box-shadow: 0 12px 16px 0 rgba(39,52,67,0.1), 0 17px 50px 0 rgba(39,52,67,0.19);
  box-shadow: 0 12px 16px 0 rgba(39,52,67,0.1), 0 17px 50px 0 rgba(39,52,67,0.19);
  transition: all 0.3s ease;
}

.funcionalidades .item .caixa{
  display: block;
}

.funcionalidades .item .caixa p{
  margin-top: 10px;
  font-size: 1em;
  line-height: 1.4em;
}

/*CONTADORES*/
.backcontadores{
  background-color:#273443;
  padding: 50px 0px; 
}

.backcontadores h3{
  margin-top: -20px;
}

/*CRIAR*/
.backcriar{
  height: auto;
   background: rgb(11,196,165);
    background: -moz-linear-gradient(45deg, rgba(11,196,165,1) 0%, rgba(71,220,162,1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(11,196,165,1) 0%, rgba(71,220,162,1) 100%);
    background: linear-gradient(45deg, rgba(11,196,165,1) 0%, rgba(71,220,162,1) 100%);
  padding: 80px 0px; 
}

.backcriar .info{
    margin-top: 20%;
  }

 .backcriar .mockup img{
    width: 100%;
  }  

.criar{
  margin: 80px auto;
  padding: 15%;
  border-radius: 5px;
  background-color: #FFFFFF;
  -moz-box-shadow: 0 12px 16px 0 rgba(39,52,67,0.1), 0 17px 50px 0 rgba(39,52,67,0.19);
  -webkit-box-shadow: 0 12px 16px 0 rgba(39,52,67,0.1), 0 17px 50px 0 rgba(39,52,67,0.19);
  box-shadow: 0 12px 16px 0 rgba(39,52,67,0.1), 0 17px 50px 0 rgba(39,52,67,0.19);
}

.criar label{
  float: left;
  margin: 5px 0px;
  width: 100%;
  font-size: 1em;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  text-align: left;
}

.criar input{
  margin: 0px auto 20px auto;
  padding: 0px 10px;
  height: 40px;
  width: 100%;
  box-sizing: border-box;
  border:2px solid #E6E6E6;
  border-radius: 5px;
  font-size: 1em;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 400;
}

.criar textarea{
  margin: 0px auto ;
  padding: 10px;
  height: 120px;
  width: 100%;
  box-sizing: border-box;
  border:2px solid #E6E6E6;
  border-radius: 5px;
  font-size: 0.98em;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 400;
}

.criar textarea::placeholder, .criar input::placeholder{
  color: #CCC;
  }

.caixaeditor{
  width: 100%; 
  display: table;
  margin-bottom: 15px;
}

input#botaoNegrito, input#botaoItalico, input#botaoMonoespacado, input#botaoTachado, .emojis  {
  height: 30px;
  width: 30px;
  float: left;
  background-color: #E6E6E6;
  border-radius: 5px;
  border:none;
  color: #4D4D4D;
  margin: 5px;
  padding: 5px;
  font-size: 0.98em;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
}

.buttonImage{
  display: none;
}
input#botaoNegrito {
  font-weight: bold;  
}
input#botaoItalico {
  font-style: italic;
}
input#botaoMonoespacado {
  font-family: monospace;
}
input#botaoTachado {
  text-decoration: line-through;
}

pre {
  white-space: pre-wrap;       /* Since CSS 2.1 */
  white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
  white-space: -pre-wrap;      /* Opera 4-6 */
  white-space: -o-pre-wrap;    /* Opera 7 */
  word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

.contador {
  float: right;
  font-family: 'Ubuntu', sans-serif;
  color: #999999;
  padding: 0.8rem 0 0 0;
  font-size: 0.875rem;
}

.verifica_usuario {
  float: right;
  height: 1em;
  min-width: 1em;
  font-family: 'Ubuntu', sans-serif;
  padding: 0;
  color:#0BC4A5;
  font-size: 0.875rem;
}

.input-grupo-addon {
    padding: 0px 12px; 
    height: 30px; 
    text-align: center;
    background: #F5F5F5;
    border:2px solid #E6E6E6;
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
    display: table-cell;
    border-collapse: separate;
     font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #999999;
}

.prefix input {
    border-radius: 0px 5px 5px 0px; 
    margin-bottom: 0;   
}
.prefix .input-grupo-addon {
    border-right: 0;
    border-radius: 5px 0px 0px 5px;
}

.input-grupo {
    position: relative;
    display: table;
    border-collapse: separate;
    margin-bottom: 15px; 
}

.input-grupo:last-of-type{
  margin-bottom: 20px;
}

.flag{
  background: url(../img/flag.png) no-repeat scroll 12px 11px, #F5F5F5;
  padding-left:45px;
}

.anuncio_top{
  margin: 0px auto;
  height: 90px;
  width: auto;
}

.anuncio_lucasguse{
  margin: 0px auto;
  width: auto; 
}

.criar ul {
  list-style: none;
  padding: 0;
}

.criar ul .inner {
  overflow: hidden;
  display: none;
  padding-top: 20px;
}

.criar ul li {
  margin: 30px 0;
}

.criar ul li a.toggle {
  width: 100%;
  display: block;
  background: #0BC4A5;
  color: #fefefe;
  padding: 0.75em 0;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.criar ul li a.toggle:hover {
  background: #0BC4A5;
}

.criar input[type=checkbox] + label {
  display: block;
  margin-top: -15px;
  margin-bottom: 25px;
  cursor: pointer;
  padding: 0.2em;
  font-size: 0.9em;
  color: #999;
}

.criar input[type=checkbox] {
  opacity: 0;
  width: 10px;
  height: 10px;
  position: relative;
  float: left;    
}

.criar input[type=checkbox] + label:before {
  content: "\2714";
  border: 2px solid #E6E6E6;
  border-radius: 0.2em;
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  padding-left: 0.2em;
  padding-bottom: 0.3em;
  margin-right: 0.3em;
  vertical-align: bottom;
  color: transparent;
  transition: .2s;
}

.criar input[type=checkbox] + label:active:before {
  transform: scale(0);
}

.criar input[type=checkbox]:checked + label:before {
  background-color: #0BC4A5;
  border-color: #0BC4A5;
  color: #fff;
}

/*EXIBE WHATSBIO*/
.whatsbio{
 margin:0px auto;
 padding-top: 50px;
}

.whatsbio .ancora{
 margin:50px auto 50px auto;
 display: flex;
 flex-wrap: wrap;
 justify-content: space-between;
}

.whatsbio .ancora .botao{
  width: 110px; 
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
  border-radius: 5px; 
}

.whatsbio .ancora .botao img{
  margin: 0px auto 10px auto;
  width: 110px; 
  height: 110px;
  padding: 15px;
  box-sizing: border-box;
  border:2px solid #E6E6E6;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.whatsbio .ancora .botao img:hover{
  background: #E6E6E6;  
}

.ativo {
  transition: all 0.3s ease; 
  background: #E6E6E6;  
}

.whatsbio .ancora .botao h4{
  width: 100%;
  color: #4D4D4D;
  font-weight: 500;
  font-size: 1em;
}

.whatsbio .box{
  margin: 0px auto 40px auto;
  padding: 35px 25px;
  box-sizing: border-box;
  border:2px solid #E6E6E6;
  border-radius: 5px;
  width: 100%;  
}

.whatsbio .box ::selection {
  color: white;
  background: #0BC4A5;
}

.whatsbio .box .botao-alinhar {
  width: 100%;
  display: flex;
  margin-bottom: 25px;
}

.whatsbio .box .botao-alinhar img{
  margin-right: 10px;
  height: 45px;
  width: 45px;
}

.whatsbio .box p{
  text-align: left;
  margin: 10px 0px 30px 0px;
  color: #999999;
}

.whatsbio .box .botao-alinhar button{
  width: auto;
  float: left;
  background-color: #E6E6E6;
  border-radius: 5px;
  border:none;
  color: #4D4D4D;
  margin: 5px;
  padding: 7px 10px;
  font-size: 0.98em;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
}

.whatsbio .box .botao-face, .whatsbio .box .botao-whats, .whatsbio .box .botao-twitter, .whatsbio .box .botao-telegram{
  width: 50%;
  height: 50px;
  line-height: 50px;
  margin: 15px auto;
  padding: 0px 20px;
  cursor: pointer;
  border-radius: 5px;
  color: #FFF;
  transition: all 0.3s ease;
}
.whatsbio .box .botao-face{  
  background-color: #1669BB;
  margin-top: 70px;
}
.whatsbio .box .botao-whats{
  background-color:#25d366;
}
.whatsbio .box .botao-twitter{
  background-color:#1da1f2;
}
.whatsbio .box .botao-telegram{
  background-color:#0088cc;
}
.whatsbio .box .botao-face i, .whatsbio .box .botao-whats i, .whatsbio .box .botao-twitter i, .whatsbio .box .botao-telegram i{
  line-height: 50px;
  margin-right: 10px;
  }
.whatsbio .box .botao-face:hover, .whatsbio .box .botao-whats:hover, .whatsbio .box .botao-twitter:hover, .whatsbio .box .botao-telegram:hover{  
  box-shadow:inset 0 0 0 99999px rgba(0,0,0,0.12); 
}

#div2 {
    display: none;    
}
#div3 {
    display: none;    
}

#div4 {
    display: none;    
}

#lado2 {
    display: none;    
}

#selectCode {
    -moz-appearance: textfield-multiline;
    -webkit-appearance: textarea;    
    overflow: auto;
    resize: both;  
    margin: 0px auto 15px auto ;
    padding: 10px;
    height: 150px;    
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
    border:2px solid #E6E6E6;
    border-radius: 5px;
    font-size: 0.98em;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    text-align: left;
    white-space: pre-wrap;    
    white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
    white-space: -pre-wrap; /* Opera 4-6 */    
    white-space: -o-pre-wrap;
    word-break: break-all;
}

/*CELULAR*/
.celular, .celularcard{
  margin: 80px 0px 0px 0px;
  position: relative;
  display: inline-block;
  border-radius: 30px;
  width: 100%;
  padding: 80px 24px 40px 24px;
  background: #333333;
 -moz-box-shadow: 0 12px 16px 0 rgba(39,52,67,0.1), 0 17px 50px 0 rgba(39,52,67,0.19);
  -webkit-box-shadow: 0 12px 16px 0 rgba(39,52,67,0.1), 0 17px 50px 0 rgba(39,52,67,0.19);
  box-shadow: 0 12px 16px 0 rgba(39,52,67,0.1), 0 17px 50px 0 rgba(39,52,67,0.19);
}

.celular {
  margin-top: 50px ;
}

.celular:before, .celularcard:before {
  content: "";
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
  height: 5px;
  width: 60px;
  border-radius: 10px;
  background-color: #666666;
}

.celular .area ,.celularcard .area{
  width: auto;
  height: 400px;
  background-color: #CCC;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  background: url("../img/wallpaper-whats.png") repeat;
  z-index: 0;
}

.celular .areacard, .celularcard .areacard{
  min-height: 300px;
  padding: 20px 0px;
  width: 100%;
  height: 380px;
  overflow: auto;
  margin-bottom: 30px;
  background: rgb(11,196,165);
  background: -moz-linear-gradient(180deg, rgba(11,196,165,1) 0%, rgba(71,220,162,1) 40%, rgba(255,255,255,1) 40%, rgba(255,255,255,1) 100%);
  background: -webkit-linear-gradient(180deg, rgba(11,196,165,1) 0%, rgba(71,220,162,1) 40%, rgba(255,255,255,1) 40%, rgba(255,255,255,1) 100%);
  background: linear-gradient(180deg, rgba(11,196,165,1) 0%, rgba(71,220,162,1) 40%, rgba(255,255,255,1) 40%, rgba(255,255,255,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0bc4a5",endColorstr="#ffffff",GradientType=1);
}

.celular .areacard::-webkit-scrollbar, .celularcard .areacard::-webkit-scrollbar
{
  background-color:#fff;
  width:16px
}

.celular .areacard::-webkit-scrollbar-thumb, .celularcard .areacard::-webkit-scrollbar-thumb
{
 background-color:#babac0;
 border-radius:16px;
 border:5px solid #fff
}

/*CARD*/
.card{
  width: calc(90% - 20px);
  height: auto;
  display: table;
  margin:0px auto;
  background: #FFF;
  padding: 15px 15px 25px 15px;
  border-radius: 5px;
  -moz-box-shadow: 0 12px 16px 0 rgba(39,52,67,0.1), 0 17px 50px 0 rgba(39,52,67,0.19);
  -webkit-box-shadow: 0 12px 16px 0 rgba(39,52,67,0.1), 0 17px 50px 0 rgba(39,52,67,0.19);
  box-shadow: 0 12px 16px 0 rgba(39,52,67,0.1), 0 17px 50px 0 rgba(39,52,67,0.19);
}

.card .nome{
  border-bottom:1px solid #E6E6E6;
  padding: 10px 20px 20px 20px;
  font-size: 1.3em;
  word-break: break-word;
  font-weight: 500;
  text-align: center;
}

.card .descricao{
  padding: 30px 20px;
  color: #666666;
  text-align: left;
  word-break: break-word;
}

.card span{
  float: left;
  margin:30px 0px 10px 0px;
}

.card .botao{
  width: 100%;
  height: 50px;
  margin: 15px auto;
  cursor: pointer;
  display: flex;
}

.card .whatsapp, .card .facebook, .card .instagram, .card .site{
  padding: 0px 20px;
  height: 50px;
  line-height: 50px;
  width: calc(80% - 40px);
  border-radius: 0px 5px 5px 0px;
  color: #FFF;
  font-weight: 500;
  font-size: 1em;
  font-style: normal;
  text-align: left;
  float: left;
  transition: all 0.3s ease;  
}
.card .whatsapp{
  background: #25D366;
}
.card .facebook{
  background: #1976D2;
}
.card .instagram{
  background: #FF496D;
}
.card .site{
  background: #4D4D4D;
}

.card .icon-whatsapp, .card .icon-facebook, .card .icon-instagram, .card .icon-site{
  width:20%;
  height: 50px; 
  line-height: 50px;
  font-size: 1.6em;
  border-radius: 5px 0px 0px 5px;
  float: left;
  text-align: center;
  color: #FFFFFF;
}
.card .icon-whatsapp{
    background: #21B95A;
}
.card .icon-facebook{
    background: #1668B8;
}
.card .icon-instagram{
    background: #E04060;
}
.card .icon-site{
    background: #444444;
}

.card .whatsapp:hover, .card .facebook:hover, .card .instagram:hover, .card .site:hover{
  box-shadow:inset 0 0 0 99999px rgba(0,0,0,0.12);  
}

/*WHATS*/
.user-bar {
  height: 55px;
  background: #005e54;
  color: #fff;
  padding: 0 8px;
  font-size: 24px;
  position: relative;
  z-index: 1;
}

.user-bar:after {
  content: "";
  display: table;
  clear: both;
}

.user-bar div {
  float: left;
  transform: translateY(-50%);
  position: relative;
  top: 50%;
}

.user-bar .actions {  
  margin: 0px 0 0 0px;
}

.user-bar .actions i{
  font-size: 0.75em;
  margin: 0px 5px 0 15px;
}

.user-bar .avatar {
  margin: 0 0 0 5px;
  width: 36px;
  height: 36px;
}

.user-bar .avatar img {
  border-radius: 50%;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
  display: block;
  width: 100%;
}

.user-bar .name {
   font-size: 0.7em;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin: 0 0 0 8px;
  white-space: nowrap;
  overflow: hidden;
  width: calc(90% - 50px);
  text-align: left;  
  float: left;
}

.user-bar .name::before{
  content: "+55 ";
}

div#preview { 
  background-color: #FFF;
  color: #333;
  border-radius: 15px;  
  width: calc(85% - 30px);
  min-height: 20px;  
  padding: 10px;
  margin:8px; 
  text-align: left;
  font-size: 0.98em;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 400;
  white-space: pre-wrap;       /* Since CSS 2.1 */
  white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
  white-space: -pre-wrap;      /* Opera 4-6 */
  white-space: -o-pre-wrap;    /* Opera 7 */
  word-wrap: break-word;  /* Internet Explorer 5.5+ */
  position: absolute;
  bottom: 0;     
}

.enviawhats {
  background: transparent;
  border: 0;
  flex: 0 0 auto;
  margin:  8px;
  padding: 0;
  position: relative;
  outline: none;
  margin-left: .5rem;
  position: absolute;
  bottom: 0;
  right: 0;  
}

.enviawhats .circle {
  background: #008a7c;
  border-radius: 50%;
  color: #fff;
  position: relative;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.enviawhats .circle i {
  font-size: 18px;
  margin-left: 1px;
}

/*PERFIl*/
  .fundo_perfil{ 
  margin:20px 20px 0px 20px;
  padding-bottom: 30px;  
  width: auto;
  min-height: 100vh;
  height: auto;
  display: flex;
  position: relative;
  background: rgb(11,196,165);
  background: -moz-linear-gradient(180deg, rgba(11,196,165,1) 0%, rgba(71,220,162,1) 40%, rgba(255,255,255,1) 40%, rgba(255,255,255,1) 100%);
  background: -webkit-linear-gradient(180deg, rgba(11,196,165,1) 0%, rgba(71,220,162,1) 40%, rgba(255,255,255,1) 40%, rgba(255,255,255,1) 100%);
  background: linear-gradient(180deg, rgba(11,196,165,1) 0%, rgba(71,220,162,1) 40%, rgba(255,255,255,1) 40%, rgba(255,255,255,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0bc4a5",endColorstr="#ffffff",GradientType=1);
  }

  .fundo_perfil .logo{
    margin-top: 40px;
  }

  .fundo_perfil .perfil{
    margin: 0px auto; 
    width: 50%;
  }

/*BLOG*/
.home-blog{ 
  margin:20px 20px 0px 20px;  
  width: auto;
  min-height: 170px;
  background: rgb(11,196,165);
  background: -moz-linear-gradient(45deg, rgba(11,196,165,1) 0%, rgba(71,220,162,1) 100%);
  background: -webkit-linear-gradient(45deg, rgba(11,196,165,1) 0%, rgba(71,220,162,1) 100%);
  background: linear-gradient(45deg, rgba(11,196,165,1) 0%, rgba(71,220,162,1) 100%);
}

.blog{  
  padding:80px 0px;
}

.blog img{  
  width: 100% !important;
  height: auto;
}

.blog .lateral ul {
  counter-reset: my-awesome-counter;
  list-style: none;
  padding: 20px 30px;
  margin: 10px 0 20px 0;
  border-radius: 5px;
  background-color: #F5F5F5;
}

.blog .lateral ul li{
  margin: 10px 0;
  counter-increment: my-awesome-counter;
  font-weight: 500;
  padding-bottom: 10px;  
  border-bottom: 2px solid #CCC;
}

.blog .lateral ul li:last-child{
  border:none;
  }

.blog .lateral ul li a{
  color:#333;
}  

.blog .lateral ol {
  counter-reset: my-awesome-counter;
  list-style: none;
  padding: 20px 40px 20px 50px;
  margin: 10px 0 20px 0;
  border-radius: 5px;
  background-color: #F5F5F5;
}

.blog .lateral ol li{
  margin: 15px 0;
  counter-increment: my-awesome-counter;
  position: relative;
  font-weight: 500;  
}

.blog .lateral ol li span{
  font-size: 0.8em;
  color:#999999;
}

.blog .lateral ol li::before{
  content: counter(my-awesome-counter);
  color:  #0BC4A5;
  font-size: 1.6em;
  position: absolute;
  --size: 32px;
  left: calc(-1 * var(--size));  
  top: 0;
  text-align: center;
}

.blog .lateral ol li a{
  color:#333333;
  font-weight: 500; 
}

.blog .paginacao ul{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid #FFF;
}

.blog .paginacao ul li{
  float: left;
  height: 30px;
  line-height: 30px;
  min-width: 10px;
  padding: 0 10px;
  margin: 0 5px; 
  border: 1px solid #333;
  border-radius: 5px;
  color: #333;
  transition: all 0.3s ease;
}

.blog .paginacao ul li:hover, .blog .paginacao .atual{
  color: #1EBEA6;
  border-color: #1EBEA6;
}

.post{
  width: 100%;
  min-height: 300px;
  height: auto;
  display: table;
  flex-wrap: wrap;
  align-items: flex-start;
  margin:0px auto 50px auto;
  background: #FFF;
  padding: 0px 0px 30px 0px;
  border-radius: 5px;
  -moz-box-shadow: 0 12px 16px 0 rgba(39,52,67,0.1), 0 17px 50px 0 rgba(39,52,67,0.19);
  -webkit-box-shadow: 0 12px 16px 0 rgba(39,52,67,0.1), 0 17px 50px 0 rgba(39,52,67,0.19);
  box-shadow: 0 12px 16px 0 rgba(39,52,67,0.1), 0 17px 50px 0 rgba(39,52,67,0.19);
}

.post .capa{
  width: auto;
  min-height: 180px;
  border-radius: 5px 5px 0px 0px;
  overflow: hidden;
}

.post .capa img{
  width: 100%;
}

.post .texto{
  padding: 20px;
  width: auto;
  height: 200px;
  display: table;
}

.post .texto h3, .post .texto h4{
  color: #333;
}

.exibe-post{
  font-size: 1.1em;
  line-height: 1.2em;  
}

.exibe-post img {
 width: 100% !important;
 margin-bottom: 5px;
}

.exibe-post .img-responsive{
  width: 100% !important;
  height: auto;
}

.exibe-post .compartilha{
  margin: 15px 0 20px 0;
  font-size: 0.9em; 
  color: #999;
  height: 30px;
  line-height: 30px;
}

.exibe-post .compartilha .social{
  float: right;
  color: #0BC4A5;
  }

.exibe-post .compartilha .social i{
  border: 1px solid #0BC4A5;
  height: 30px;
  width: 30px;
  border-radius: 5px;
  color: #0BC4A5;
  text-align: center;
  vertical-align: middle;
  display: table-cell;
  transition: all 0.5s ease;
  }  

.exibe-post .compartilha .social i:hover{
  color: #273443;
  border-color: #273443;
  }

/*CONSULTA ACESSOS*/
.consulta-acesso input{
  margin: 0px auto 20px auto;
  padding: 0px 10px;
  width: 100%;
  box-sizing: border-box;
  border:2px solid #E6E6E6;
  border-radius: 5px;
  font-size: 1em;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 400;
}

/*LEI*/
.lei{
  padding: 70px 0px;
  text-align: left;  
}

.lei h2{
  margin-top: 20px;
}

.lei ul, .lei ol{
   font-weight: 700;
   margin: 40px 0;
}

.lei ul li{
  list-style-type: decimal-leading-zero;
  color: #0bc4a5;
  margin-left: 25px;
  text-transform: uppercase; 
}

.lei ol li{
  color: #0bc4a5;
  text-transform: uppercase; 
}

.lei ul li a, .lei ol li a{
  font-size: 1em;
  line-height: 1.6em;
  font-weight: 700;
  font-style: normal;
  color: #0bc4a5;
  text-transform: uppercase; 
  letter-spacing: 0.05em;
}

.lei ul p, .lei ol p{
  margin: 5px 0px 30px 0px;   
}

.lei ul span, .lei ol span{
  display: list-item;
  list-style-type: circle;
  margin-left: 20px;
  margin-bottom: 10px;   
}

/*RODAPÉ*/
.rodape{
  background:#273443;
  padding: 50px 0px;
  border-spacing:5px;
}

.rodape ul li{
  font-size: 1em;
  line-height: 1.5em;
  font-family: 'Ubuntu', sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #FFF;
}

.rodape ul li a{
   color: #FFF;
   transition: all 0.3s ease;
}

.rodape ul li a:hover {
  color: #1EBEA6;
}

.rodape i{
  border: 1px solid #FFF;
  height: 30px;
  width: 30px;
  border-radius: 5px;
  color: #FFF;
  text-align: center;
  vertical-align: middle;
  display: table-cell;
  transition: all 0.5s ease;
}

.rodape i:hover{
  color: #1EBEA6;
  border-color: #1EBEA6;
  }

.direitos{
  background: #232F3C;
  padding: 5px;
  color: #FFF;
  font-size: 0.8em;
  line-height: 1.5em;
  text-align: left;
}

.direitos img{
  float: right;  
}

/*RESPONSIVO*/
@media only screen and (max-width: 1024px) { 
  .funcionalidades .item{
  min-height: 180px;
  }
  .post .capa{
    min-height: 95px;
  }
  .post .texto{
  min-height: 300px;
  }
  .criar input[type=checkbox] + label {
    margin-top: 0px;
  }
  .whatsbio .ancora .botao{
  width: 40%; 
  margin-bottom: 25px; 
  }
}

@media only screen and (max-width: 768px) { 
  .funcionalidades .item{
  margin-bottom: 0px;
  }
  .funcionalidades{
    margin: 0px;
  }
  .fundo_perfil .perfil{      
      width: 90%;
  }
  .backfuncionalidades {
    background: #EFF9F6;
  }  
  .celularcard, .celular{
    display: none;
  }
  .post .texto{
    min-height: 50px;
    height: 50px;
  }
  .criar input[type=checkbox] + label {
    margin-top: 10px;
  }
  input#botaoNegrito, input#botaoItalico, input#botaoMonoespacado, input#botaoTachado, .emojis  {
    display: none;
  }
  .home-blog{ 
  min-height: 100px; 
}
  .direitos img{
  float: left;  
  }
}

@media only screen and (max-width: 540px) {
  .fundo_perfil .perfil{
  width: 95%;
  }
  .funcionalidades .item{
    margin-bottom: 20px;
  }
  .backcriar{
    padding-bottom: 0px;    
  }
  .home{
    margin:0px;
  }

.anuncio_top{
  width: 250px;
}

.anuncio_lucasguse img{ 
    width: 90%; 
}

  .criar{
  padding: 10% 5% 15% 5%;
  display: table;
  margin-top: 20px;
  width: 90%;
  } 
  .criar input[type=checkbox] + label {
    margin-top: 10px;
  }
  .blog{
  padding-top: 10px; 
  }
  .exibe-post .compartilha .social{
    width: 100%;
    float: left;
    margin: 10px 0px 20px 0px;
  }
  .verifica_usuario {
    display: table;
  }
  .whatsbio .ancora .botao{
  width: 45%;
  margin-bottom: 20px; 
  } 
  .direitos img{
  float: left;  
  }  
}

/*ANIMAÇÕES*/

.fadein {
    opacity:0;
}
.slideinleft {
  opacity:0;
  margin-left: -50px;
  max-width:100%;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}