/* reset */

html,
body {
  overflow-x: hidden;
}
html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ol,
ul,
li,
form,
label,
article,
footer,
header,
nav,
section,
main {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
a {
  text-decoration: none;
}

ol,
ul {
  list-style: none;
}
h2,
h1,
h3,
h4,
h5,
h6,
p,
a,
ul {
  font-size: 1em;
  font-weight: normal;
}
* {
  box-sizing: border-box;
}

/* geral */
body {
  font-family: "Barlow", sans-serif;
  scroll-behavior: smooth;
}
.titulo {
  font-family: "Jockey One", sans-serif;
  text-align: center;
  font-size: 32px;
  color: #575757;
  font-weight: bold;
  margin-bottom: 25px;
}
.meucontainer {
  width: 1150px;
  margin: 0 auto;
}
header {
    background: rgba(0, 47, 93, 0.514);
    height: 85px;
    /*height: 75px;*/
    position: fixed;
    top: 0;
    width: 100vw;
    left: 0;
}
header.change {
  background: #002e5d;
  transition: ease 0.6s;
}
header .meucontainer {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}
.btn-mobile {
  display: none;
}
.menu ul {
  display: flex;
}
.menu ul li {
  margin-right: 30px;
}
.menu ul a,
.login span {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-decoration: none;
}
.menu ul a {
    /*padding: 30px 10px 26px 10px;*/
    padding: 30px 10px 36px 10px;
    transition: ease 0.4s;
    transition: 0.3s ease;
}
.menu ul a:hover,
.nav-menu li a.ativo {
  color: #5ae0e0;
  border-bottom: 4px solid #5ae0e0;
}
a.login {
  display: flex;
  align-items: center;
  transition: ease 0.4s;
}

a.login:hover,
.itens-blog a:hover {
  transform: scale(1.1);
}
p {
  font-size: 15px;
  line-height: 22px;
}

.logo {
    /*background: #fff;*/
    /*width: 65px;
    height: 65px;*/
    width: 85px;
    height: 85px;
    border-radius: 50%;
}

/* servicos */
.itens-servicos {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.itens-servicosA {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
.servicos,
.beneficios,
.blog {
  padding: 90px 0;
}
.item-servico,
.item-beneficio{
    padding: 40px 100px 100px 100px;
    text-align: center;
    background: #ececec;
    color: #002e5d;
}
.item-servico:nth-child(even) {
  background: #002e5d;
  color: #fff;
}

.item-servico h3,
.itens-beneficios h3 {
    color: #002e5d;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 40px;
}
.item-servico:nth-child(even) h3 {
  color: #fff !important;
}
.item-servico img, 
.itens-beneficios img {
    margin-bottom: 40px;
    height: 60px;
}
.servicos > p {
  color: #002e5d;
  text-align: center;
  margin-top: 20px;
}

/* beneficios */
.beneficios {
  background: #2d2d2d;
}
.beneficios .titulo {
  color: #fff;
}
.itens-beneficios,
.itens-blog {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.item-beneficio {
  background: #002e5d;
  color: #fff;
}
.item-beneficio h3 {
  color: #fff;
}
.item-beneficio:nth-child(even) {
  background: #ececec;
  color: #002e5d;
}
.item-beneficio:nth-child(even) h3 {
  color: #002e5d;
}

/* footer */
#footer {
  height: 220px;
  background: #002e5d;
  color: #fff;
  display: flex;
  width: 100%;
  justify-content: center !important;
  align-items: center !important;
}

.check-itens {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.item-check {
  display: grid;
  grid-template-columns: 15px 1fr;
  grid-gap: 10px;
  align-items: center;
}
.LinkFaleConosco {
    position: fixed;
    display:none;
    right: 5px;
    bottom: 5px;
    z-index: 1000; /* Faz com que fique sobre todos os elementos da página */
}
/* responsivo */
@media (max-width: 900px) {
.LinkFaleConosco{
    display:block;
}
header{
    height:75px;
}
.menu ul a {
    /*padding: 30px 10px 26px 10px;*/
    padding: 30px 10px 26px 10px;
}
.logo {
    /*width: 65px;
height: 65px;*/
    width: 65px;
    height: 65px;
}
.btn-mobile {
    display: block;
    border: none;
    background: none;
    padding: 5rem 1rem;
    cursor: pointer;
  }
  .btn-mobile span {
    width: 30px;
    border-top: 2px solid #fff;
    display: block;
  }
  .btn-mobile span::after,
  .btn-mobile span::before {
    width: 30px;
    height: 2px;
    background: #fff;
    display: block;
    margin-top: 8px;
    content: "";
    transition: 0.3s;
    position: relative;
  }
  .menu.ativo .btn-mobile span {
    border-top-color: transparent;
  }
  .menu.ativo .btn-mobile span::before {
    transform: rotate(135deg);
  }
  .menu.ativo .btn-mobile span::after {
    transform: rotate(-135deg);
    top: -9px;
  }
  .menu ul li {
    margin-bottom: 30px;
  }
  .nav-menu {
    /* display: none !important; */
    position: absolute;
    width: 100%;
    top: 75px;
    right: 0px;
    background-color: #002e5d;
    flex-direction: column;
    height: 0;
    z-index: 1000;
    transition: 0.6s;
    visibility: hidden;
    overflow-y: hidden;
  }
  .nav-menu a {
    padding: 1rem 0;
    margin: 0 1rem;
  }
  .menu.ativo .nav-menu li a {
    padding-bottom: 15px !important;
  }
  .menu.ativo .nav-menu {
    height: auto;
    padding: 50px 10px;
    visibility: visible;
    overflow-y: auto;
  }
}
@media (max-width: 1450px) {
  .item-servico {
    padding: 40px !important;
  }
  .acoes.parceiros form {
    padding: 0px 60px !important;
  }
  .col-form {
    grid-template-columns: 50px 1fr !important;
    grid-gap: 10px !important;
  }
}
@media only screen and (min-width: 900px) and (max-width: 1150px) {
  .meucontainer {
    width: 90%;
  }
  .capa .meucontainer {
    height: auto !important;
  }
  .item-servico,
  .item-beneficio {
    padding: 40px 20px !important;
  }
  .capa .meucontainer {
    height: auto;
    padding-top: 80px !important;
  }
  .dados > div {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media only screen and (min-width: 788px) and (max-width: 899px) {
  .meucontainer {
    width: 90%;
  }
  .capa .meucontainer {
    height: auto !important;
  }
  .itens-servicos {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .item-beneficio {
    padding: 20px;
  }
  .capa .container {
    height: auto;
    padding-top: 60px !important;
  }

  .dados > div {
    grid-template-columns: 1fr !important;
  }
  .col-form {
    grid-template-columns: 80px 1fr !important;
  }
  .fotos-itens {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media only screen and (min-width: 551px) and (max-width: 787px) {
  .meucontainer {
    width: 90%;
  }
  .capa .meucontainer {
    height: auto !important;
  }
  .capa span {
    font-size: 24px !important;
    line-height: 38px !important;
  }
  .capa h1 {
    font-size: 30px !important;
    line-height: 45px !important;
  }
  .acesso-rapido {
    margin-top: 40px !important;
  }
  .acesso-rapido > div,
  .dados > div {
    grid-template-columns: 1fr !important;
  }
  .itens-beneficios,
  .itens-servicos {
    padding: 40px;
  }
  .itens-servicos,
  .itens-bancarios,
  .check-itens,
  .itens-beneficios {
    grid-template-columns: 1fr !important;
  }

  .itens-bancarios {
    grid-gap: 15px !important;
  }

  .capa .meucontainer {
    height: auto;
    padding-top: 60px !important;
  }
  .acoes.parceiros form {
    padding: 0 !important;
  }
  fieldset.dados {
    padding: 5px 0;
  }
  .fotos-itens {
    grid-template-columns: 1fr 1fr !important;
  }

  .md {
    width: 85% !important;
    padding: 10px 10px 20px 10px !important;
  }

  .modal-container {
    height: auto;
    padding-top: 30px;
  }
  #logo-login {
    width: 70px !important;
  }
  .acoes-modal h2 {
    font-size: 18px;
    margin: 0;
  }
}
@media only screen and (max-width: 550px) {
  .meucontainer {
    width: 90%;
  }
  .capa .meucontainer {
    height: auto !important;
  }
  .titulo {
    font-size: 24px;
  }
  .capa .meucontainer {
    height: auto !important;
    padding-top: 60px !important;
  }
  .capa span {
    font-size: 24px !important;
    line-height: 38px !important;
  }
  .capa h1 {
    font-size: 30px !important;
    line-height: 45px !important;
  }
  .acesso-rapido {
    margin-top: 40px;
    padding: 15px 30px !important;
  }

  .termos {
    justify-content: center;
  }

  .call {
    padding: 0 20px;
  }
  .acesso-rapido > div input {
    width: 100%;
  }
  .acesso-rapido button {
    align-self: center;
  }
  .acesso-rapido > div,
  .col-form,
  .itens-bancarios,
  .dados > div {
    grid-template-columns: 1fr !important;
  }
  .acoes h2 {
    text-align: center;
  }
  .item-beneficio {
    padding: 40px;
  }
  .itens-servicos,
  .check-itens,
  .itens-beneficios {
    grid-template-columns: 1fr;
    padding: 0 0;
  }

  .itens-bancarios {
    grid-gap: 15px !important;
    padding: 0;
  }
  .dados-conta {
    grid-template-columns: 1fr !important;
    grid-gap: 15px !important;
    padding: 0;
    margin-top: 15px;
  }

  #footer p {
    font-size: 14px;
    text-align: center;
  }

  .acoes.parceiros form {
    padding: 0 !important;
  }
  fieldset.dados {
    padding: 5px 0;
  }

  .fotos-itens {
    grid-template-columns: 1fr !important;
    padding: 0;
  }
  fieldset.descricao {
    padding: 10px 15px !important;
  }
  .md {
    width: 85% !important;
    padding: 10px 10px 20px 10px !important;
  }

  .modal-container {
    height: auto;
    padding-top: 15%;
  }
  #logo-login {
    width: 70px !important;
  }
  .acoes-modal h2 {
    font-size: 18px;
    margin: 0;
  }
}

/* LOGIN *************************** */

#logo-login img {
  max-width: 100%;
  display: block;
}
#logo-login {
  width: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
}

.acoes {
  max-width: 350px;
  width: 100%;
  background: rgba(0, 0, 0, 0.705);
  padding: 15px 25px;
  height: 100%;
  border-radius: 6px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  display: none;
}
.cadastro {
  background: url(../images/wecare-auto-login-background.jpg) no-repeat;
  background-size: cover;
  padding: 120px 0 40px 0;
  font-family: Helvetica, sans-serif;
}
.acoes.parceiros {
  display: flex;
  max-width: 80%;
  margin: 0 auto;
}
.acoes.parceiros form {
  width: 100%;
  padding: 0 10%;
  margin-top: 60px;
}

.acoes h2 {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  font-weight: bold;
}
.md .acoes {
  color: #002e5d;
}
.acao {
  margin-top: 30px;
  animation: show 0.6s forwards;
  width: 100%;
}
.acao a:hover {
  text-decoration: underline;
}
.acao > form {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.acao input,
.acoes.parceiros input,
.acao select,
fieldset select {
  height: 40px;
  outline: none;
  border: none;
  font-size: 16px;
  border: 1px solid transparent;
  transition: 0.3s ease;
  padding: 8px 6px;
  margin-bottom: 5px;
}
.acao button:hover {
  background-color: #fff;
  color: #002e5d;
}
.acao input:focus {
  border: 1px solid #002e5d;
}
.acao button {
  cursor: pointer;
  background: #273d6e;
  color: #fff;
  font-size: 14px;
}
.fazer-login.acao button:nth-child(odd) {
  margin-top: 10px !important;
}
.voltar-para-login,
.voltar-para-login-novamente {
  align-self: center;
  font-size: 14px;
  color: #fff;
  margin-top: 15px;
}
.cadastrar-parceiro {
  display: flex;
  justify-content: flex-end;
  font-size: 12px;
  margin-top: 64px;
  color: #fff;
}

@keyframes show {
  from {
    opacity: 0;
    transform: translate3d(-30px, 0, 0) scale(1.1);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

legend {
  font-size: 14px;
  color: #dddddd;
  text-align: center;
}
.acoes.parceiros input {
  width: 100%;
}
.col-form {
  display: grid;
  grid-template-columns: 86px 1fr;
  grid-gap: 35px;
}
.dados > div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 35px;
  grid-row-gap: 15px;
}
.tipos,
.dados_bancarios,
.descricao,
.fotos {
  margin-top: 60px;
}
fieldset > div {
  padding: 5px 25px;
}

.fotos-itens input[type="file"] {
  display: none;
}
.fotos-itens label {
  background-color: #eee;
  cursor: pointer;
  color: #444;
  margin: 10px;
  padding: 6px 20px;
  text-align: center !important;
}
.foto-item img {
  display: block;
  width: 100%;
}
.fotos-itens {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
}
.foto-item {
  display: flex;
  flex-direction: column;
}
.descricao {
  padding: 10px 35px !important;
}
.descricao textarea {
  width: 100%;
  padding: 10px;
}
.itens-bancarios select {
  width: 100%;
}
.itens-bancarios {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 35px;
}
.dados-conta {
  display: grid;
  grid-gap: 35px;
  grid-template-columns: 1fr 1fr;
  transition: ease 0.3s;
  font-size: 14px;
}
.termos {
  color: #07d;
  font-size: 14px;
  display: flex;
  align-items: center;
  margin-top: 40px;
}
.termos:hover {
  text-decoration: underline;
  color: #39f;
}
.termos input {
  width: 15px !important;
}
.btn-cadastro {
  height: 40px;
  max-width: 226px !important;
  width: 100%;
  cursor: pointer;
  border: none;
  outline: none;
  background: #002e5d;
  color: #fff;
  margin: 10px auto 0 auto;
  display: block;
  transition: ease 0.4s;
  font-size: 16px;
}
.btn-cadastro:hover {
  background: #fff;
  color: #002e5d;
}

.modal-container {
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
}
.modal-container {
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
}
.md {
  background: #fff;
  padding: 20px 40px 40px 40px;
  width: 60%;
  min-width: 300px;
  position: relative;
  font-family: Helvetica, sans-serif;
}
.modal-ativo .modal {
  animation: modal 0.3s forwards;
}
.modal-container.modal-ativo {
  display: flex;
}
.fechar {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 50px;
  font-size: 1.2em;
  height: 50px;
  cursor: pointer;
  border: 4px solid #fff;
  color: #fff;
  border-radius: 50%;
  background: #002e5d;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.3);
}

@keyframes modal {
  from {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.acoes-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.acoes-modal h2 {
  font-weight: bold;
  line-height: 24px;
  color: #002e5d;
}
.md form {
  margin-top: 30px;
}
.md a {
  text-decoration: none !important;
}
/*.md form select,
.md form input[type=text],
.md form input[type=email],
.md form input[type=password] {
    width: 100%;
    border: #444 1px solid;
    transition: ease 0.3s;
}*/
.md select,
.md input[type=text],
.md input[type=email],
.md input[type=password] {
    width: 100%;
    border: #444 1px solid;
    transition: ease 0.3s;
}
.md form input[type=email]:focus,
.md form input[type=date]:focus,
.md form input[type=text]:focus,
.md form input[type=password]:focus {
    border-color: #39f;
}
.controles-modal {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
.btn-modal {
  width: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  height: 40px;
  cursor: pointer;
  background: #002e5d;
  transition: ease 0.3s;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
}
.btn-modal:hover {
  background: #ececec;
  color: #002e5d;
  border: #002e5d 1px solid;
}
.esqueceu,
.voltar-para-login {
  margin-top: 15px !important;
  display: block;
  text-align: center;
  color: #07d;
}
.esqueceu:hover,
.voltar-para-login:hover {
  text-decoration: underline;
  color: #39f;
}

.login-modal.ativo,
.cadastro-modal.ativo,
.esqueceu-modal.ativo {
    display: block !important;
    animation: animar 0.5s forwards;
    margin-top: 30px;
}
.login-modal,
.esqueceu-modal,
.cadastro-modal {
  display: none !important;
}

@keyframes animar {
  from {
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.md input[type=text],
.md input[type=email],
.md input[type=password],
.md textarea,
.md select {
    height: 30px;
    margin-bottom: 10px;
    border: none;
    outline: none;
    background-color: #1a2cf318;
    border: none !important;
    border-radius: 8px;
    font-family: "Barlow", sans-serif;
    color: #b0b0b0;
    font-size: 14px;
    padding: 5px 20px;
}

/* selects */
.tab-content {
  display: block !important;
}
.ctt1 div,
.ctt2 div {
  display: flex;
  align-items: center !important;
  width: 100% !important;
  animation: show 0.4s forwards !important;
}
.ctt1 div label,
.ctt2 div label {
  margin: 0 !important;
  color: #2d2d3a !important;
  font-weight: normal !important;
  text-align: left;
}
.ctt1 div input,
.ctt2 div input {
  margin: 0 15px 10px 0 !important;
}
.ctt2 div {
  flex-direction: column !important;
  align-items: flex-start !important;
}
input#rb_op1_1,
input#rb_op1_2 {
    width: 15px;
    margin-bottom:0px;
}
.ctt2 div label {
  margin-bottom: 5px !important;
}
.ctt2 input {
  width: 100% !important;
}
input#km {
    margin-bottom: 10px !important;
}
.AR-Margem {
    margin-bottom: 10px !important;
}
