@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

.video {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 300px;
}

.video video {
  margin-top: 3rem;
  border: #00095b solid 5px;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

main .primeira-parte {
  margin: 0px 300px;
}

main .jornal-titulo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-top: 3rem;
  text-align: center;
}

main .jornal-titulo h1 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 3rem;
  color: #00095b;
}

main .jornal-titulo h2 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 1.5rem;
  color: #00095b;
}

.todoscard {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 20px;
}

.todoscard .card {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 10px 7px;
  background-color: #00095b;
  width: 200px;
  height: 380px;
  border-radius: 10px;
  transition: all 0.5s;
}

.todoscard .card:hover {
  transition: all 0.5s;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.todoscard .card img {
  flex-wrap: wrap;
  width: 100%;
  height: 290px;
}

.todoscard .card h1 {
  margin-top: 10px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  color: aliceblue;
  text-decoration: none;
  font-size: 1.4rem;
}


/*
.todoscard .card button {
  margin-top: 10px;
  background-color: #ffc014;
  transition: all 0.05s;
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.todoscard .card button:hover {
  transition: all 0.05s;
  background-color: #ffdb3c;
}
  */


.todoscard .card button{
 outline: none;
 cursor: pointer;
 border: none;
 width: 100%;
 padding: 10px 10px;
 position: relative;
 display: inline-block;
 letter-spacing: 0.05rem;
 border-radius: 1rem;
 overflow: hidden;
 background: #19bc00;
 margin-top: 10px;
}

.todoscard .card button a{
 position: relative;
 z-index: 10;
 transition: color 0.4s;
}

.todoscard .card button:hover a{
   color: rgb(240, 240, 240);
}

.todoscard .card button::before,
.todoscard .card button::after {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 z-index: 0;
}

.todoscard .card button::before{
 content: "";
 background: rgb(255, 208, 0);
 width: 120%;
 left: -10%;
 transform: skew(30deg);
 transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.todoscard .card button:hover::before {
 transform: translate3d(100%, 0, 0);
}

.todoscard .card button a {
  color: #030062;
  margin-top: 10px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 1.4rem;
  text-decoration: none;
}

main .buttonsaibamais {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 2rem;
}

main .buttonsaibamais button {
  width: 200px;
  height: 45px;
  background-color: #00095b;
  transition: all 0.05s;
  border: none;
  cursor: pointer;
  color: rgb(255, 255, 255);
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 1.4rem;
}

main .buttonsaibamais button:hover {
  background-color: #011090;
  transition: all 0.05s;
}

/* FINAL DA PRIMEIRA PARTE */

.segunda-parte {
  background: linear-gradient(to right, rgb(128, 0, 0), rgb(255, 4, 0));
  padding-bottom: 1rem;
  width: 100%;
  height: 100%;
}

.segunda-parte .tudosobrejornal {
  margin: 0px 300px;
}

.segunda-parte .tudosobrejornal .jornalsobretitulo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 5px;
  margin-top: 3rem;
}

.segunda-parte .tudosobrejornal .jornalsobretitulo h1 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 3rem;
  color: #ffffff;
  margin-top: 3rem;
}

.segunda-parte .tudosobrejornal .jornalsobretitulo h2 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 2rem;
}

.segunda-parte .tudosobrejornal .sobreojornal {
  background-color: #d9d9d9;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.segunda-parte .tudosobrejornal .sobreojornal img {
  width: 300px;
  height: 350px;
  background-color: #011090;
  float: left;
  margin: 5px;
  border-radius: 10px;
}

.segunda-parte .tudosobrejornal .sobreojornal p {
  text-align: justify;
}

/* FINAL DA TERCEIRA PARTE */

.terceiraparte {
  background: linear-gradient(to right, navy, rgb(0, 183, 255));
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.terceiraparte .sobreaigreja {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0px 300px;
}

.terceiraparte .sobreaigreja .quemsomos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-top: 1rem;
  text-align: center;
}

.terceiraparte .sobreaigreja .quemsomos h1 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 3rem;
  color: #ffffff;
}

.terceiraparte .sobreaigreja .quemsomos h2 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 2rem;
}

.terceiraparte .sobreaigreja .quemsomosfundo {
  background-color: #d9d9d9;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 3rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.terceiraparte
  .sobreaigreja
  .quemsomosfundo
  .imagemsomosfundo
  .primeira-imagem {
  margin-bottom: 5px;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: auto 100%;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  margin: 10px 0px;
}

.terceiraparte .sobreaigreja .quemsomosfundo .imagemsomosfundo .table {
  display: none;
}

.terceiraparte .sobreaigreja .quemsomosfundo p {
  text-align: justify;
}

/*FINAL DA PARTE TERCEIRA*/

.quartaparte {
  margin: 0px 300px;
}

.quartaparte .quemsomos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.quartaparte .quemsomos h1 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 3rem;
  color: #000000;
  margin-top: 3rem;
  margin-bottom: 10px;
}

.quartaparte .quemsomos h2 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 2rem;
}

.quartaparte .todoselementos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  width: 100%;
}

.quartaparte .todoselementos .responsavel {
  display: flex;
  align-items: center;
  padding: 5px;
  flex-direction: row;
  background-color: #d9d9d9;
  border-radius: 10px;
  width: 350px;
  height: 100px;
  gap: 10px;
}

.quartaparte .todoselementos .responsavel .circulo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.quartaparte .todoselementos .responsavel .nomesresponsavel h1 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 1rem;
  margin-bottom: 5px;
}

.quartaparte .todoselementos .responsavel .nomesresponsavel h2 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.8rem;
}

/*QUINTA PARTE FINAL*/

.quintaparte {
  background-color: #d9d9d9;
  width: 100%;
  height: 100%;
}

.quintaparte .todoselementosquintapart {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0px 300px;
}

.quintaparte .todoselementosquintapart .quemsomos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.quintaparte .todoselementosquintapart .quemsomos h1 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 3rem;
  color: #00095b;
  margin-top: 3rem;
  margin-bottom: 10px;
}

.quintaparte .todoselementosquintapart .quemsomos h2 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 1.5rem;
  color: #00095b;
  margin-bottom: 2rem;
}

.quintaparte .todoselementosquintapart .todososlivros {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}

.quintaparte .todoselementosquintapart .todososlivros .livro1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #cecece;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.5s;
}

.quintaparte .todoselementosquintapart .todososlivros .livro1:hover {
  transition: all 0.5s;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* livro em ordem*/

.quintaparte .todoselementosquintapart .todososlivros .livro1 .livroP {
  width: 150px;
  height: 200px;
  background-image: url(./LIVROS/A-VIDA-NÃO-É-UM-JOGO-É-UMA-GUERRA-copiar.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.quintaparte .todoselementosquintapart .todososlivros .livro1 .livroS {
  width: 150px;
  height: 200px;
  background-image: url(./LIVROS/Eu-vou-te-surpreender-copiar.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.quintaparte .todoselementosquintapart .todososlivros .livro1 .livroT {
  width: 150px;
  height: 200px;
  background-image: url(./LIVROS/FOCO-FORÇA-E-FÉ-min.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.quintaparte .todoselementosquintapart .todososlivros .livro1 .livroQ {
  width: 150px;
  height: 200px;
  background-image: url(./LIVROS/HOJE-EU-QUERO-MINHA-VIDA-DE-VOLTA-copiar.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.quintaparte .todoselementosquintapart .todososlivros .livro1 .livroQUI {
  width: 150px;
  height: 200px;
  background-image: url(./LIVROS/LICOES-QUE-A-VIDA-copiar.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.quintaparte .todoselementosquintapart .todososlivros .livro1 .livroSE {
  width: 150px;
  height: 200px;
  background-image: url(./LIVROS/LICOES-QUE-A-VIDA-copiar.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.quintaparte .todoselementosquintapart .todososlivros .livro1 .livroSET {
  width: 150px;
  height: 200px;
  background-image: url(./LIVROS/MEU-VIZINHO-FEITICEIRO.-copiar.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.quintaparte .todoselementosquintapart .todososlivros .livro1 .livroO {
  width: 150px;
  height: 200px;
  background-image: url(./LIVROS/O-Poder-da-Mulher-Virtuosa-copia.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.quintaparte .todoselementosquintapart .todososlivros .livro1 p {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 1rem;
  width: 150px;
  text-align: center;
  margin-top: 10px;
  line-height: 20px;
}

.quintaparte .todoselementosquintapart .todososlivros .livro1 p {
  text-decoration: none;
  color: #000000;
}

.quintaparte .todoselementosquintapart .todososlivros .livro1 span {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.quintaparte .todoselementosquintapart .todososlivros .livro1 strong {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.todoselementosquintapart .todososlivros .livro1 a button {
  background-color: rgb(0, 103, 9);
  width: 100%;
  padding: 5px 0px;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  margin-top: 1rem;
  cursor: pointer;
}

.todoselementosquintapart .todososlivros .livro1 button:hover {
  transition: all 0.5s;
  background-color: rgb(0, 152, 0);
}

.todoselementosquintapart .todososlivros .livro1 a {
  width: 100%;
}

.quintaparte .todoselementosquintapart .cinheçasmaislivros button {
  width: 200px;
  height: 45px;
  background-color: #00095b;
  transition: all 0.05s;
  border: none;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 1.4rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.quintaparte .todoselementosquintapart .cinheçasmaislivros button:hover {
  background-color: #000f97;
  transition: all 0.05s;
}

.quintaparte .todoselementosquintapart .cinheçasmaislivros button a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}

.formulario {
  background: linear-gradient(to right, navy, rgb(0, 183, 255));
  width: 100%;
  height: 100%;
}

.formulario .elementosdoformulario {
  margin: 0px 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.formulario .elementosdoformulario .formulario-titulos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.formulario .elementosdoformulario .formulario-titulos h1 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 3rem;
  color: #ffffff;
  margin-top: 3rem;
  margin-bottom: 10px;
}

.formulario .elementosdoformulario .formulario-titulos h2 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 2rem;
}

.formulario .elementosdoformulario form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.formulario .elementosdoformulario form .form-group {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.formulario .elementosdoformulario form .form-group label {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 5px;
}

.formulario .elementosdoformulario form .form-group input {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  padding: 20px 10px;
  width: 100%;
  border: none;
  margin-bottom: 1.4rem;
  transition: all 0.5s;
}

.formulario .elementosdoformulario form .form-group input:focus {
  transition: all 0.5s;
  border-radius: 16px;
}

.formulario .elementosdoformulario form .form-group textarea {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1rem;
  padding: 20px 10px;
  width: 100%;
  border: none;
  margin-bottom: 1.4rem;
  transition: all 0.5s;
}

.formulario .elementosdoformulario form .form-group textarea:focus {
  transition: all 0.5s;
  border-radius: 16px;
}

.formulario .elementosdoformulario form button {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 1.5rem;
  padding: 15px 40px;
  border: none;
  background-color: #ffc014;
  color: #000000;
  border-radius: 10px;
  transition: all 0.5s;
  cursor: pointer;
  margin-bottom: 3rem;
}

.formulario .elementosdoformulario form button:hover {
  transition: all 0.5s;
  background-color: #ffdb3c;
}

/* Final do formulario */

.setimaparte {
  margin: 0px 300px;
  list-style: none;
  height: 100%;
}

.setimaparte .perguntas-frequentes .formulario-titulos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.setimaparte .perguntas-frequentes .formulario-titulos h1 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 3rem;
  color: #000000;
  margin-top: 3rem;
  margin-bottom: 10px;
}

.setimaparte .perguntas-frequentes .formulario-titulos h2 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 1.5rem;
  color: #000000;
  margin-bottom: 2rem;
}

.faq li {
  width: 100%;
  margin-bottom: 10px;
}

.faq .espaco {
  margin-bottom: 2rem;
}

.faq li label {
  padding: 15px 10px;
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  background-color: #d9d9d9;

  display: flex;
  align-items: center;
  cursor: pointer;
}

.faq li label span {
  display: inline-block;
  padding: 8px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 8px;
  margin-right: 10px;
}

.faq input[type="radio"] {
  display: none;
}

.faq .resposta {
  color: #2b2b2b;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 1rem;
  padding: 0px 14px;
  background-color: #eaeaea;
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.5s, padding 0.5s;
}

.faq input[type="radio"]:checked + label + .resposta {
  max-height: 400px;
  padding: 10px 10px 20px;
}

/* --- parte responsiva --- */

@media screen and (max-width: 884px) {
  .video {
    margin: 0px 100px;
  }

  main .primeira-parte {
    margin: 0px 100px;
  }

  .segunda-parte .tudosobrejornal {
    margin: 0px 100px;
  }

  .terceiraparte .sobreaigreja {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0px 100px;
  }

  .terceiraparte .sobreaigreja .quemsomos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    margin-top: 1rem;
    text-align: center;
  }

  .quartaparte {
    margin: 0px 100px;
  }

  .quartaparte .quemsomos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .quintaparte .todoselementosquintapart {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0px 100px;
  }

  .quintaparte .todoselementosquintapart .quemsomos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .formulario .elementosdoformulario {
    margin: 0px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .formulario .elementosdoformulario .formulario-titulos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .setimaparte {
    margin: 0px 100px;
    list-style: none;
    height: 100%;
  }

  .setimaparte .perguntas-frequentes .formulario-titulos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  footer .footeres {
    margin: 0px 100px;
    flex-direction: column;
    padding: 15px;
  }
}

@media screen and (max-width: 840px) {
  .video {
    margin: 0px 50px;
  }
  main .primeira-parte {
    margin: 0px 50px;
  }

  .segunda-parte .tudosobrejornal {
    margin: 0px 50px;
  }

  .terceiraparte .sobreaigreja {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0px 50px;
  }

  .quartaparte {
    margin: 0px 50px;
  }

  .quintaparte .todoselementosquintapart {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0px 50px;
  }

  .formulario .elementosdoformulario {
    margin: 0px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .setimaparte {
    margin: 0px 50px;
    list-style: none;
    height: 100%;
  }
}

@media screen and (max-width: 834px) {
  /*ok*/
}
@media screen and (max-width: 820px) {
  /*ok*/
}
@media screen and (max-width: 800px) {
}

@media screen and (max-width: 768px) {
  .video {
    margin: 0px 20px;
  }
  main .primeira-parte {
    margin: 0px 20px;
  }

  .segunda-parte .tudosobrejornal {
    margin: 0px 20px;
  }

  .terceiraparte .sobreaigreja {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0px 20px;
  }

  .quartaparte {
    margin: 0px 20px;
  }

  .quintaparte .todoselementosquintapart {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0px 20px;
  }

  .formulario .elementosdoformulario {
    margin: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .formulario .elementosdoformulario .formulario-titulos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .formulario .elementosdoformulario form .form-group input {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 1rem;
    padding: 20px 5px;
    width: 100%;
    border: none;
    margin-bottom: 1.4rem;
    transition: all 0.5s;
  }

  .formulario .elementosdoformulario form .form-group textarea {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 1rem;
    padding: 10px 5px;
    width: 100%;
    border: none;
    margin-bottom: 1.4rem;
    transition: all 0.5s;
  }

  .setimaparte {
    margin: 0px 20px;
    list-style: none;
    height: 100%;
  }
}

@media screen and (max-width: 608px) {
  main .primeira-parte {
    margin: 0px 0px;
    padding: 0px 10px;
  }

  .segunda-parte .tudosobrejornal {
    margin: 0px 0px;
    padding: 0px 10px;
  }

  .terceiraparte .sobreaigreja {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0px 10px;
    padding: 0px 10px;
  }

  .quartaparte {
    margin: 0px 0px;
    padding: 0px 10px;
  }

  .quintaparte .todoselementosquintapart {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0px 0px;
    padding: 0px 10px;
  }

  .formulario .elementosdoformulario {
    padding: 0px 10px;
    margin: 0px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .setimaparte {
    padding: 0px 10px;
    margin: 0px 0px;
    list-style: none;
    height: 100%;
  }
}

@media screen and (max-width: 581px) {
  main .jornal-titulo h1 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 2.5rem;
    color: #00095b;
  }

  main .jornal-titulo h2 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 1.3rem;
    color: #00095b;
  }

  .todoscard {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
  }

  .todoscard .card {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 10px 7px;
    background-color: #00095b;
    width: 160px;
    height: 310px;
    border-radius: 10px;
  }

  .todoscard .card img {
    flex-wrap: wrap;
    width: 100%;
    height: 230px;
  }

  .todoscard .card h1 {
    margin-top: 10px;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    color: aliceblue;
    text-decoration: none;
    font-size: 1rem;
  }

  .todoscard .card button a {
  color: #030062;
  margin-top: 10px;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 1.1rem;
  text-decoration: none;
}

  .segunda-parte .tudosobrejornal .jornalsobretitulo h1 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 2.5rem;
    color: #ffffff;
    margin-top: 3rem;
  }

  .segunda-parte .tudosobrejornal .jornalsobretitulo h2 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 2rem;
  }

  .segunda-parte .tudosobrejornal .sobreojornal {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .segunda-parte .tudosobrejornal .sobreojornal img {
    width: 300px;
    height: 350px;
    background-color: #011090;
    float: left;
    margin: 10px;
    border-radius: 10px;
  }

  .terceiraparte .sobreaigreja .quemsomos h1 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 2.5rem;
    color: #ffffff;
  }

  .terceiraparte .sobreaigreja .quemsomos h2 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 2rem;
  }

  .terceiraparte
    .sobreaigreja
    .quemsomosfundo
    .imagemsomosfundo
    .primeira-imagem {
    display: none;
  }

  .terceiraparte .sobreaigreja .quemsomosfundo .imagemsomosfundo .table {
    margin-bottom: 5px;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: auto 100%;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    margin: 10px 0px;
    display: block;
  }

  .quartaparte .quemsomos h1 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 2.5rem;
    color: #000000;
    margin-top: 3rem;
    margin-bottom: 10px;
  }

  .quartaparte .quemsomos h2 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 2rem;
  }

  .quintaparte .todoselementosquintapart .quemsomos h1 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    color: #00095b;
    margin-top: 3rem;
    margin-bottom: 10px;
    font-size: 2.5rem;
  }

  .quintaparte .todoselementosquintapart .quemsomos h2 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 1.3rem;
    color: #00095b;
    margin-bottom: 2rem;
  }

  .formulario .elementosdoformulario .formulario-titulos h1 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 2.5rem;
    color: #ffffff;
    margin-top: 3rem;
    margin-bottom: 10px;
  }

  .formulario .elementosdoformulario .formulario-titulos h2 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 2rem;
  }

  .setimaparte .perguntas-frequentes .formulario-titulos h1 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 2.5rem;
    color: #000000;
    margin-top: 3rem;
    margin-bottom: 10px;
  }

  .setimaparte .perguntas-frequentes .formulario-titulos h2 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 575px) {
  /*ok*/
}

@media screen and (max-width: 573px) {
  /*ok*/
}

@media screen and (max-width: 542px) {
  /*ok*/
}

@media screen and (max-width: 526px) {
  /*ok*/
}

@media screen and (max-width: 480px) {
  /*ok*/
}

@media screen and (max-width: 468px) {
  /*ok*/
}

@media screen and (max-width: 440px) {
  /*ok*/
}

@media screen and (max-width: 430px) {
  .segunda-parte .tudosobrejornal .sobreojornal {
    background-color: #d9d9d9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 428px) {
  /*ok*/
}

@media screen and (max-width: 427px) {
  /*ok*/
}

@media screen and (max-width: 414px) {
  /**/
}

@media screen and (max-width: 393px) {
  /*ok*/
}

@media screen and (max-width: 390px) {
  /*ok*/
}

@media screen and (max-width: 379px) {
  /*ok*/
}

@media screen and (max-width: 375px) {
  /*ok*/
}

@media screen and (max-width: 371px) {
  /*ok*/
}

@media screen and (max-width: 360px) {
  /*ok*/
}

@media screen and (max-width: 320px) {
  /*ok*/
}
