* {
  box-sizing: border-box;
}
.clear {
  clear: both;
}
body {
  background: #fff;
  font-family: "Open sans", sans-serif;
  font-size: 16px;
  color: #444a4c;
  font-weight: 300;
  line-height: 20px;
}

/*MENU*/
.header {
  background: url("../img/back-header.jpg") top center repeat-y;
}
.container {
  max-width: 1300px;
  margin: auto;
}
.fale-conosco {
  background: #fff;
  border-radius: 17px;
  padding: 10px;
  width: 180px;
  text-align: center;
  float: right;
  margin-top: 20px;
}
.fale-conosco a {
  color: #0a80fc;
  font-weight: 700;
}
.fale-conosco-off {display: none;}
.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: 9999;
  width: 100%;
  background: url("../img/back-header.jpg") top center repeat-y;
}
nav .wrapper {
  position: relative;
  max-width: 1360px;
  padding: 0px 29px;
  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: 70px;
}
.wrapper .nav-links {
  display: inline-flex;
}
.nav-links li {
  list-style: none;
}
li.sepador {
  padding-left: 15px;
}
.nav-links li a {
  color: #f2f2f2;
  text-decoration: none;

  font-weight: 0;
  padding: 9px 2px 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;
    z-index:9999
  }
  /* 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;
  }
  .fale-conosco-off {display: block;}
}
nav input {
  display: none;
}

.conteudo .container {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
article {
  max-width: 70%;
}
article a {
  color: #444a4c;
}
article h1 {
  font-size: 2.5em;
  background: linear-gradient(to right, #0551a0 50%, #248bf8 50%);
  display: inline-block;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
  padding-top: 10px;
  padding-bottom: 15px;
}
.bloco-post {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  border-bottom: 2px dashed #0fbdf6;
  padding-bottom: 20px;
}
.img-post img {width:141px; height: 94px;}
.desc-detalhes {
  width: 83%;
}
.desc-detalhes h2 {
  font-weight: 500;
  color: #024f68;
  font-size: 1.1em;
}
.desc-detalhes p {
  margin-top: 15px;
}
aside h2 {
  font-size: 1.8em;
  background: linear-gradient(to right, #0551a0 30%, #248bf8 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 30px 0 20px 0;
}
aside ul {
  margin-bottom: 40px;
}
aside li {
  background: #eef7f6;
  padding: 15px 10px;
  margin-top: 3px;
}
aside li a {
  color: #024e10;
}
section h2 {
  font-size: 1.8em;
  background: linear-gradient(to right, #0551a0 30%, #248bf8 50%);
  display: inline-block;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 500;
  padding-top: 10px;
  padding-bottom: 10px;
}
section {
  margin-top: 60px;
}
section h3 {
  color: #1c60bc;
  font-size: 1.1em;
  font-weight: 500;
  margin-top: 25px;
}
section p {
  margin-top: 10px;
}
footer {
  background: #0a80fc;
  color: #fff;
  margin-top: 60px;
}
footer a {
  color: #fff;
}
footer ul {
  padding: 25px 0;
}
footer li {
  display: inline-block;
  margin-right: 33px;
  
}
footer p {
  background: #064c96;
  text-align: center;
  padding: 10px 0;
}

/*PAGINA HISTORIAS PARA IMPRIMIR*/
ul.ls-historias-imprimir {
  font-size: 1.3em;
  margin-top: 25px;
  font-weight: 500;
  width: 900px;
}
ul.ls-historias-imprimir li {
  margin-top: 25px;
  border-bottom: 2px dashed #0fbdf6;
  padding-bottom: 20px;
}

/*TEMAS PARA CULTO INFANTIL*/
.ls-temas-culto {
  margin-top: 60px;
}
.ls-temas-culto h2 {
  font-weight: 500;
  color: #024f68;
  font-size: 1.1em;
}
.ls-temas-culto p {
  margin: 15px 0 5px 0;
}
.ls-temas-culto span {
  color: #0fbdf6;
  font-weight: 800;
}
.dica {
  margin-top: 40px;
}
.dica h2 {
  font-weight: 500;
  color: #024f68;
  font-size: 1.1em;
}
.dica li {
  font-weight: 400;
  margin-top: 10px;
}

/*PAGINA BRINCADEIRA EVANGELICA INFANTIL*/
.ls-bricandeiras {
  margin-top: 60px;
  border-bottom: 2px dashed #0fbdf6;
  padding-bottom: 20px;
}
.ls-bricandeiras h2 {
  font-weight: 500;
  color: #024f68;
  font-size: 1.1em;
}
.ls-bricandeiras p {
  margin-top: 10px;
}
.ls-bricandeiras h3 {
  font-weight: bold;
  margin-top: 20px;
}
.ls-bricandeiras li {
  margin-top: 10px;
}

/*PAGINA VERSICULO INFANTIL*/
.ls-versiculos {
  border-bottom: 2px dashed #0fbdf6;
  padding-bottom: 20px;
  margin-top: 25px;
}
.ls-versiculos dt {
  font-weight: 500;
  color: #024f68;
  font-size: 1.1em;
}
.ls-versiculos dd {
  margin-top: 10px;
}

/*PAGINA DAS HISTORIAS INTERNAS*/
.historinha {
  margin-top: 25px;
}
.historinha p {
  margin-top: 15px;
}
.reflexao {
  margin-top: 40px;
}
.historinha p i {
  font-style: italic;
}
.reflexao h2 {
  font-weight: 500;
  color: #024f68;
  font-size: 1.1em;
}
.reflexao p {
  margin-top: 15px;
}

/*PAGINA FALE CONOSCO*/
.group-input {
  margin-top: 25px;
  width: 100%;
}
.group-input label {
  font-weight: bold;
  
  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 {
  width: 100%;
}

.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;
}

@media (max-width: 970px) {
  .container {
    width: 95%;
    margin: auto;
  }
  article {
    max-width: 100%;
  }
  .conteudo .container {
    flex-direction: column;
  }
  aside {margin-top:60px}
  ul.ls-historias-imprimir {width:100%; line-height: 30px;}
  #aswift_2_host {z-index:10}

}
@media (max-width: 750px) {
  article h1 {font-size: 1.8em; line-height: 30px;}
  article figure img {
  width: 100%;
  
  
}
footer li {
  display:block;
  margin-top: 10px;
  
}
}
@media (max-width: 500px) {

  .bloco-post {
  flex-direction: column;
  
}
.img-post img {width:100%; height: auto;}
.desc-detalhes {
  width: 100%;
}
}
