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

/*MENU*/
.container {
  max-width: 1300px;
  margin: auto;
}

.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: #7d6908;
  z-index: 99;
  width: 100%;
  background: #faf8eb;
}
nav .wrapper {
  position: relative;
  max-width: 1360px;
  padding: 0px 29px;
  height: 90px;
  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: 80px;
  padding-top: 10px;
}
.wrapper .nav-links {
  display: inline-flex;
}
.nav-links li {
  list-style: none;
}
li.sepador {
  padding-left: 15px;
}
.nav-links li a {
  color: #7d6908;
  text-decoration: none;

  font-weight: 600;
  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: #faf8eb;
  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: #faf8eb;
  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: #861111;
  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: #faf8eb;
    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;
}

.conteudo .container {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
article {
  max-width: 70%;
}
article p {
  margin-top: 15px;
  line-height: 22px;
}
article a {
  color: #444a4c;
}
article h1,
article h2 {
  font-size: 1.8em;
  color: #7d6908;
  font-weight: 600;
}
.sc-salmos {
  border-bottom: 1px solid #e5e4e1;
  padding-bottom: 20px;
}
.sc-salmos span {
  font-weight: bold;
  font-style: italic;
  font-size: 0.8em;
}
.sc-salmos ul {
  margin-top: 10px;
}
.sc-salmos li {
  background: #f8f9db;
  display: inline-block;
  padding: 10px 10px;
  width: 110px;
  margin: 18px 10px 0 0;
}
.sc-artigos,
.sc-versiculos {
  margin-top: 60px;
  border-bottom: 1px solid #e5e4e1;
  padding-bottom: 20px;
}
.estudos {display: flex; flex-wrap: wrap;}
.ls-estudos {width:50%; margin-top: 30px; display: flex; justify-content: space-between;}
.ls-estudos-interno {width:100%; margin-top: 30px; display: flex; flex-wrap: wrap}
.img-estudo {margin-right: 15px;}
.desc-estudo h3 {color:#7d6908; font-weight: 600;}
.desc-estudo h2 {color:#7d6908; font-weight: 600; font-size:1.1em}
.desc-estudo p {margin-top:5px}
.sc-versiculos li {
  background: #f8f9db;
  display: inline-block;
  padding: 10px 10px;
  width: 290px;
  margin: 14px 10px 0 0;
}
.sc-versiculos span {font-weight: 500; font-style: italic;}
.sc-versiculos data {font-weight: 600; margin-top:15px}
aside {
  width: 25%;
}
aside h2 {
  font-size: 1.8em;
  color: #7d6908;
  font-weight: 600;
}
.sc-estudos ul {
  margin-top: 15px;
}
.sc-estudos a {
  color: #635303;
}
.sc-estudos li {
  background: #e1fbf8;
  display: inline-block;
  padding: 10px 10px;
  margin-top: 6px;
  width: 100%;
}
.sc-parceiros {
  margin-top: 60px;
}
.sc-parceiros ul {
  margin-top: 15px;
}
.sc-parceiros li {
  font-weight: 600;
  margin-top: 6px;
}
.sc-parceiros a {
  color: #685703;
}
.sc-perguntas h2 {
  font-size: 1.8em;
  color: #7d6908;
  font-weight: 600;
}
.sc-perguntas h3 {
  font-size: 1.2em;
  color: #7d6908;
  font-weight: 600;
  margin-top: 25px;
}
.sc-perguntas {
  margin-top: 60px;
}
.sc-perguntas p {
  margin-top: 5px;
}

footer {
  background: #7d6908;
  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: ;
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid #e5e4e1;
}

/*SALMOS INTERNAS*/
.links-salmos {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.tags-salmos {
  display: flex;
  background-color: #bfa003;
  width: 220px;
  font-weight: 400;
  font-size: 1.4em;
  margin: 0 6px 10px 0;
}
.tags-salmos a {
  color: #fff;
  padding: 18px;
}
.tags-salmos a:nth-child(1) {
  background-color: #4d4102; width: 60px; text-align: ;
}
.interna, .versiculo-d {
  margin-top: 60px;
}


/*PAGINA HISTORIAS PARA IMPRIMIR*/

@media (max-width: 970px) {
  .container {
    width: 95%;
    margin: auto;
  }
  article {
    max-width: 100%;
  }
  .conteudo .container {
    flex-direction: column;
  }
  aside {
    margin-top: 60px;
    width: 100%;
  }
}
@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;
  }
  .ls-estudos-interno {flex-wrap:nowrap; justify-content: space-between}
}
@media (max-width: 500px) {
  .bloco-post {
    flex-direction: column;
  }
  .estudos {display: flex; flex-direction: column;}
  .ls-estudos {width:100%}
}
