* {
  box-sizing: border-box;
}
.clear {
  clear: both;
}
body {
  background: #fff;
  font-family: "Open sans", sans-serif;
  font-size: 16px;
  color: #4b4c4d;
  font-weight: 300;
  line-height: 20px;
}

/*MENU*/
.header {
  background: #0a80fc;
}
.container {
  max-width: 1300px;
  margin: auto;
}
.fale-conosco {
  background: #05d9db;
  border-radius: 17px;
  padding: 10px;
  width: 180px;
  text-align: center;
  float: right;
  margin-top: 20px;
}
.fale-conosco a {
  color: #fff;
}
.fixed {
  position: fixed; /* Fixa o menu no topo */
  top: 0; /* Posiciona o menu no topo da página */
  z-index: 10; /* Garante que o menu esteja acima do conteúdo */

  padding: 10px; /* Espaçamento interno do menu */
}
nav {
  color: #fff;
  z-index: 99;
  width: 100%;
  background: #0a80fc;
}
nav .wrapper {
  position: relative;
  max-width: 1380px;
  padding: 0px 30px;
  height: 70px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapper .logo a {
  color: #f2f2f2;

  font-weight: 0;
  text-decoration: none;
}
.wrapper .logo {
  height: 69px;
}
.wrapper .nav-links {
  display: inline-flex;
}
.nav-links li {
  list-style: none;
}
.nav-links li a {
  color: #f2f2f2;
  text-decoration: none;

  font-weight: 0;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  content: "";
}
.nav-links li a:hover {
  background: none;
}
.nav-links .mobile-item {
  display: none;
}
.nav-links .drop-menu {
  position: absolute;
  background: #0a80fc;
  width: 300px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a {
  width: 100%;
  display: block;
  padding: 0 0 0 15px;

  border-radius: 0px;
}
.mega-box {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content {
  background: #0a80fc;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.mega-box .content .row {
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header {
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links {
  margin-left: -40px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}
.row .mega-links li {
  padding: 0 20px;
}
.row .mega-links li a {
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover {
  color: #f2f2f2;
}
.wrapper .btn {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn {
  position: absolute;
  right: 30px;
  top: 10px;
}
.arrow {
  border: solid;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 2px;
  margin: 10px 0 3px 7px;
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

@media screen and (max-width: 970px) {
  .header {
    display: none;
  }
  li.sepador {
    display: none;
  }
  .wrapper .btn {
    display: block;
  }
  .wrapper .logo,
  .wrapper .logo img {
    height: 49px;
  }
  .wrapper .nav-links {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    top: 0;
    left: -100%;
    background: #0a80fc;
    display: block;
    padding: 50px 10px;
    line-height: 30px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
    transition: all 0.8s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3a3b3c;
  }
  #menu-btn:checked ~ .nav-links {
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn {
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn {
    display: block;
  }
  .nav-links li {
    margin: 15px 10px;
  }
  .nav-links li a {
    padding: 0 20px;
    display: block;
    font-size: 16px;
  }
  .nav-links .drop-menu {
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 0;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box {
    max-height: 100%;
  }
  .nav-links .desktop-item {
    display: none;
  }
  .nav-links .mobile-item {
    display: block;
    color: #f2f2f2;

    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover {
  }
  .drop-menu li {
    margin: 0;
  }
  .drop-menu li a {
  }
  .mega-box {
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content {
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row {
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2) {
    border-top: 0px;
  }
  .content .row .mega-links {
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li {
    margin: 0;
  }
  .content .row header {
    font-size: 19px;
  }
}
nav input {
  display: none;
}

.banner {
  background: url("../img/back-banner.jpg") no-repeat top center;
  color: #fff;
}
.banner .container {
  display: flex;
  justify-content: space-between;
}
.banner .container {
  align-items: center;
}
.texto-banner h1 {
  color: #d9db05;
  font-size: 50px;
  margin-bottom: 40px;
  font-weight: 400;
}
.texto-banner p {
  font-size: 18px;
  margin-top: 10px;
}
.btn-contato {
  text-align: center;
  padding: 25px 10px;
  width: 290px;
  background: #fff;
  border-radius: 40px;
  font-weight: 700;
  margin-top: 50px;
}
.btn-contato a {
  color: #083c72;
}

.img-banner img {
  height: 572px;
}

/*TRATAMENTOS*/
.tratamentos .container {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}
.bloco-tratamento {
  border-left: 5px solid #98c2ea;
  padding: 10px 0 10px 10px;
  width: 33%;
}
.bloco-tratamento h2 {
  color: #0c4d91;
  font-weight: bold;
  font-size: 1.4em;
}
.bloco-tratamento p {
  margin-top: 10px;
}

/*AJUDA*/
.ajuda {
  background: #484a49;
  color: #fff;
  margin-top: 100px;
  padding: 40px 0;
}
.ajuda .container {
  display: flex;
  justify-content: space-between;
}
.texto-ajuda {
  margin-left: 35px;
}
.texto-ajuda h2 {
  color: #f1fa00;
  font-weight: bold;
  font-size: 1.2em;
}
.texto-ajuda p {
  margin-top: 15px;
  line-height: 22px;
}

/*RODAPE*/
.footer {
  background: #0a80fc;
  color: #fff;
  padding: 40px 0;
}
.footer .container {
  display: flex;
  justify-content: space-between;
}
.footer h2 {
  color: #f1fa00;
  font-weight: bold;
}
.footer a {
  color: #fff;
}
.lista-rodape li {
  margin-top: 10px;
}
.lista-rodape:nth-child(3) li {float: left; background: #0c4d91; margin-right: 10px; border-radius: 5px;}
.lista-rodape:nth-child(3) li i {padding: 10px;}
.lista-rodape:nth-child(3) li i a {border-radius: 5px;}
.lista-rodape:nth-child(3) li i.fa-facebook:hover {background: #0866ff; transition: all 0.8s ease;}
.lista-rodape:nth-child(3) li i.fa-instagram:hover {background: #a83391; transition: all 0.8s ease;}
.lista-rodape:nth-child(3) li i.fa-whatsapp:hover {background: #00a334; transition: all 0.8s ease;}
.direitos {
  background: #093360;
  padding: 10px;
  color: #fff;
  text-align: center;
}

/*PÁGINAS INTERNAS BLOG*/
.conteudo {
  padding: 100px 0;
}
.conteudo .container {
  display: flex;
  justify-content: space-between;
}
.conteudo article {
  max-width: 1000px;
}
.conteudo h1 {
  font-size: 2.2em;
  font-weight: 500;
  color: #0a80fc;
  line-height: 30px;
}
.conteudo article img {margin-top:25px}
.conteudo article .btn-sessao {
  margin: 50px 0 40px 0;
  text-align: center;
}
.conteudo article .btn-sessao a {
  background: #043c79;
  color: #fff;
  border-radius: 20px;
  padding: 20px;
}
.conteudo article .btn-sessao a:hover {
  background: #05d9db;
  transition: all 0.3s ease;
}
.conteudo article h2 {
  font-size: 1.7em;
  font-weight: bold;
  color: #043c79;
  margin-top: 30px;
}
.conteudo article li {
  margin-top: 20px;
}
.conteudo article strong {
  font-weight: bold;
}
.conteudo h3 {
  font-size: 1.4em;
  font-weight: bold;
  color: #043c79;
  margin-top: 30px;
}
.conteudo p {
  margin-top: 20px;
  line-height: 25px;
}
.conteudo aside {
  width: 230px;
}
.conteudo aside h2 {
  font-size: 1.7em;
  font-weight: bold;
  color: #0a80fc;
}
.conteudo aside li {
  margin-top: 15px;
}
.conteudo aside a:hover {
  color: #0a80fc;
}

/*PAGINAS INETRNAS*/
.pgs-conteudo {
  padding: 100px 0;
}
.pgs-conteudo h1 {
  font-size: 2.2em;
  font-weight: bold;
  color: #0a80fc;
}
.box-quem-sou {
  display: flex;
  justify-content: space-between;
}
.box-quem-sou {
  margin-top: 55px;
}
.box-img-marluci {
  width: 30%;
  margin-right: 55px;
}
.box-img-marluci img {
  max-width: 100%;
}
.box-desc-quem-sou {
  width: 70%;
}
.box-desc-quem-sou p {
  margin-bottom: 25px;
}
.box-desc-quem-sou p i {
  font-style: italic;
  font-weight: bold;
}
/*PAGINA FALE CONOSCO*/
.box-formulario {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
}
.form-contato,
.dados-contato {
  width: 50%;
}
.group-input {
  margin-top: 25px;
}
.group-input label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}
.group-input input {
  width: 100%;
  height: 45px;
  background: #e5e5e5;
  border-radius: 10px;
  border: 2px solid transparent;
  font-size: 15px;
  padding: 15px;
  outline: none;
}
.group-input textarea {
  width: 100%;
  height: 200px;
  background: #e5e5e5;
  border-radius: 10px;
  border: 2px solid transparent;
  font-size: 15px;
  padding: 15px;
  outline: none;
}
.group-input input:focus,
.group-input textarea:focus {
  border-color: #04497f;
}
.col-2 {
  float: left;
  width: 49%;
}
.col-3 {
  margin-left: 11px;
}
.input-enviar {
  margin-top: 25px;
}
.input-enviar button {
  width: 100%;
  height: 45px;
  background: #04497f;
  padding: 15px;
  color: #fff;
  border: 0;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
}
.dados-contato {
  border-left: 1px dashed #e1e1e1;
  margin-left: 25px;
  padding-left: 25px;
}
.dados-contato dl {
  border-bottom: 1px solid #e1e1e1;
  margin-top: 25px;
  padding-bottom: 5px;
}
.dados-contato dt {
  font-weight: bold;
  margin-bottom: 5px;
}
@media (max-width: 960px) {
  .container {width:90%}
  .banner { background: #043c79;}
  .banner .container, .conteudo .container, .footer .container, .ajuda .container, .tratamentos .container, .box-quem-sou {
    flex-direction: column;
  }
  .texto-banner {margin-top: 25px;}
  .texto-banner h1 {font-size: 1.9em}
  .bloco-tratamento {
    border-left: 5px solid #98c2ea;
    width: 100%;
    margin-top: 25px;
  }
  .texto-ajuda {
    margin: 25px 0 0 0;
  }
  .lista-rodape {margin-bottom: 25px;}
  .box-img-marluci {
    width: 100%;}
    .box-desc-quem-sou {
      width: 100%;
    }
    .conteudo article {
      width: 100%;
    }
    .conteudo h1 {
      font-size: 1.8em;
      color: #0a80fc;
      line-height: 35px;
    }
    .conteudo article h2 {
      font-size: 1.5em;
      color: #043c79;
      line-height: 30px;
    }
    .conteudo h3 {
      font-size: 1.2em;
    }
    .conteudo aside {
      width: 100%;
      margin-top: 25px;
    }
    .form-contato,
  .dados-contato,
  .col-2 {
    width: 100%;
  }
  .dados-contato {
    border-left: none;
    margin: 25px 0;
    padding-left: 0;
  }
  .col-3 {
    margin-left: 0;
  }

}
@media (max-width: 560px) {
  .container {width:90%}
  .banner { background: #043c79;}
  .banner .container, .conteudo .container, .footer .container, .ajuda .container, .tratamentos .container {
    flex-direction: column;
  }
  .img-banner img {
    width:100%;
    height: auto;
  }
  .img-ajuda img {width: 100%;
    
  }
  .conteudo article img {
    width:100%;
  }

}