@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;
  flex-direction: column;
  background: linear-gradient(135deg, rgb(255, 208, 0) 0%, rgb(255, 220, 50) 50%, rgb(255, 208, 0) 100%);
  padding: 4rem 1rem;
  position: relative;
  overflow: hidden;
}

.video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(0, 9, 91, 0.3), transparent);
}

.video::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(0, 9, 91, 0.3), transparent);
}

.video .jornal-titulo {
  max-width: 1320px;
  width: 100%;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.video .jornal-titulo h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: #00095b;
  margin: 0 0 1rem 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  display: inline-block;
}

.video .jornal-titulo h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #00095b, transparent);
  border-radius: 2px;
}

.video .jornal-titulo h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: rgba(0, 9, 91, 0.8);
  margin: 1.5rem 0 0 0;
  line-height: 1.6;
}

.video .video-wrapper {
  position: relative;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.video video {
  width: 100%;
  max-width: 900px;
  height: auto;
  border: none;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.2);
  background: #000000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  margin: 0 auto;
  display: block;
}

.video video:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 12px 32px rgba(0, 0, 0, 0.3);
}

.video video::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, rgba(0, 9, 91, 0.3), rgba(255, 208, 0, 0.3));
  border-radius: 24px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.video video:hover::before {
  opacity: 1;
}

main .primeira-parte {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

main .primeira-parte .container-do-jornal{
  max-width: 1320px;
}

main .jornal-titulo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-top: 3rem;
  margin-bottom: 2rem;
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

main .jornal-titulo h1 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 3.5rem;
  color: #00095b;
  margin: 0 0 1rem 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  display: inline-block;
}

main .jornal-titulo h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgb(255, 208, 0), transparent);
  border-radius: 2px;
}

main .jornal-titulo h2 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5rem;
  color: rgba(0, 9, 91, 0.8);
  margin: 1.5rem 0 0 0;
  line-height: 1.6;
}

.todoscard {
  margin-top: 3rem;
  display: flex !important;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 32px;
  padding: 0 20px;
}
.todoscard .effect{
  opacity: 0;
}

/* Garantir visibilidade quando os jornais são carregados dinamicamente */
.todoscard .effect.loaded {
  opacity: 1 !important;
}

.todoscard .card {
  display: flex !important;
  align-items: stretch;
  flex-direction: column;
  padding: 0;
  background: linear-gradient(180deg, #00095b 0%, #001a7a 100%);
  width: 300px;
  min-height: 520px;
  border-radius: 0px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 9, 91, 0.25), 0 5px 15px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(255, 208, 0, 0.15);
  position: relative;
  opacity: 1 !important;
  visibility: visible !important;
}

.todoscard .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(255, 208, 0, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.todoscard .card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 208, 0, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.todoscard .card:hover::before {
  opacity: 1;
}

.todoscard .card:hover::after {
  opacity: 1;
}

.todoscard .card:hover {
  transform: translateY(-15px) scale(1.04);
  box-shadow: 0 30px 60px rgba(0, 9, 91, 0.35), 0 15px 30px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 208, 0, 0.4);
}

.todoscard .card .card-image-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: linear-gradient(135deg, #00095b 0%, #001a7a 100%);
}

.todoscard .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.7s ease;
  border-radius: 14px 14px 0 0;
  filter: brightness(0.95) contrast(1.05);
}

.todoscard .card:hover img {
  transform: scale(1.12);
  filter: brightness(1.05) contrast(1.1);
}

/* Se a imagem não estiver dentro de um wrapper, aplicar diretamente */
.todoscard .card > img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.7s ease;
  border-radius: 14px 14px 0 0;
  filter: brightness(0.95) contrast(1.05);
}

.todoscard .card:hover > img {
  transform: scale(1.12);
  filter: brightness(1.05) contrast(1.1);
}

/* Efeitos de hover no overlay de informações */
.todoscard .card:hover .card-overlay-info {
  transform: translateY(0) !important;
}

/* Animações de entrada dos badges */
.todoscard .card .badge {
  animation: fadeInDown 0.5s ease-out;
  animation-fill-mode: both;
}

.todoscard .card .badge-novo {
  animation-delay: 0.1s;
}

.todoscard .card .badge-destaque {
  animation-delay: 0.2s;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Efeito de shimmer nos cards ao carregar */
.todoscard .card.loading::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shimmer 1.5s infinite;
  z-index: 1;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Melhorar hover dos badges */
.todoscard .card:hover .badge {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Efeito no indicador de ordem */
.todoscard .card:hover .card-order-indicator {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
  transition: all 0.3s ease;
}

.todoscard .card .card-date {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 9, 91, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: "Roboto", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgb(255, 208, 0);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 3;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.todoscard .card:hover .card-date {
  background: rgba(0, 9, 91, 0.98);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  color: #ffdb3c;
}

.todoscard .card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  gap: 16px;
}

.todoscard .card h1 {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.3px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  transition: color 0.3s ease;
}

.todoscard .card:hover h1 {
  color: #ffd014;
}

/* Se o h1 estiver diretamente no card */
.todoscard .card > h1 {
  margin-top: 16px;
  padding: 0 16px;
}

.todoscard .card .card-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  font-family: "Roboto", sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.todoscard .card .card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.todoscard .card .card-meta span::before {
  content: "•";
  color: rgb(255, 208, 0);
  font-weight: bold;
  margin-right: 4px;
}

.todoscard .card .card-meta span:first-child::before {
  content: "";
  margin: 0;
}

.todoscard .card button {
  outline: none;
  cursor: pointer;
  border: none;
  width: calc(100% - 32px);
  margin: 0 auto 20px auto;
  margin-top: auto;
  padding: 16px 24px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.8px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffc014 0%, #ffdb3c 100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(255, 192, 20, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  font-weight: 600;
}

.todoscard .card button:hover {
  box-shadow: 0 8px 28px rgba(255, 192, 20, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform: translateY(-3px);
  background: linear-gradient(135deg, #ffdb3c 0%, #ffc014 100%);
}

.todoscard .card button:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 192, 20, 0.4);
}

.todoscard .card button a{
 position: relative;
 z-index: 10;
 transition: color 0.3s ease;
 display: block;
 width: 100%;
 text-align: center;
}

.todoscard .card button:hover a{
   color: #000000;
}

.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: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
width: 120%;
left: -10%;
transform: skew(30deg) translateX(-100%);
transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.todoscard .card button:hover::before {
transform: skew(30deg) translateX(100%);
}

.todoscard .card button a {
  color: #000000;
  margin-top: 0;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 1rem;
  font-weight: 700;
  font-style: normal;
  font-size: 1.15rem;
  text-decoration: none;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

main .buttonsaibamais {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 4rem;
  margin-top: 3rem;
}

main .buttonsaibamais button {
  width: auto;
  min-width: 280px;
  height: 56px;
  background: linear-gradient(135deg, #00095b 0%, #001a7a 100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 0 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 9, 91, 0.3),
              0 4px 12px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

main .buttonsaibamais button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

main .buttonsaibamais button:hover::before {
  left: 100%;
}

main .buttonsaibamais button:hover {
  background: linear-gradient(135deg, #001a7a 0%, #0025a5 100%);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 9, 91, 0.4),
              0 6px 16px rgba(0, 0, 0, 0.25);
}

main .buttonsaibamais button:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 9, 91, 0.3),
              0 4px 12px rgba(0, 0, 0, 0.2);
}

main .buttonsaibamais button a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

main .buttonsaibamais button a::after {
  content: '→';
  font-size: 1.4rem;
  margin-left: 8px;
  transition: transform 0.3s ease;
  display: inline-block;
}

main .buttonsaibamais button:hover a::after {
  transform: translateX(5px);
}

/* FINAL DA PRIMEIRA PARTE */

.segunda-parte {
  background: linear-gradient(to right, rgb(128, 0, 0), rgb(255, 4, 0));
  padding-bottom: 3rem;

}

.segunda-parte .tudosobrejornal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1rem;
}

.segunda-parte .tudosobrejornal .jornalsobretitulo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 5px;
  margin-top: 3rem;
  margin-bottom: 2rem;
  position: relative;
}

.segunda-parte .tudosobrejornal .jornalsobretitulo h1 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 3.5rem;
  color: #ffffff;
  margin: 0 0 1rem 0;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
}

.segunda-parte .tudosobrejornal .jornalsobretitulo h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgb(255, 208, 0), transparent);
  border-radius: 2px;
}

.segunda-parte .tudosobrejornal .jornalsobretitulo h2 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 1.5rem 0 0 0;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.segunda-parte .tudosobrejornal .sobreojornal {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row;
  background-color: #d9d9d9;
  padding: 10px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  opacity: 1;
}

.segunda-parte .tudosobrejornal .sobreojornal img {
  width: 300px;
  height: 100%;
  background-color: #011090;
  float: left;
  margin: 5px;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.segunda-parte .tudosobrejornal .sobreojornal p {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  text-align: justify;
  line-height: 110%;
  
}

.segunda-parte .tudosobrejornal .sobreojornal p strong{
  font-weight: 800;
}

.segunda-parte .tudosobrejornal .sobreojornal p span{
  font-style: italic;
}


/* 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 {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 1rem;
}

.terceiraparte .sobreaigreja .quemsomos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  margin-top: 1rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.terceiraparte .sobreaigreja .quemsomos h1 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 3.5rem;
  color: #ffffff;
  margin: 0 0 1rem 0;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
}

.terceiraparte .sobreaigreja .quemsomos h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgb(255, 208, 0), transparent);
  border-radius: 2px;
}

.terceiraparte .sobreaigreja .quemsomos h2 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 1.5rem 0 0 0;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.terceiraparte .sobreaigreja .quemsomosfundo {
  background-color: #d9d9d9;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 3rem;
  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;
  opacity: 1;
}

.terceiraparte
  .sobreaigreja
  .quemsomosfundo
  .imagemsomosfundo{
    width: 100%;
  }

.terceiraparte
  .sobreaigreja
  .quemsomosfundo
  .imagemsomosfundo
  .primeira-imagem {
  margin-bottom: 5px;
  background-position: bottom;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  margin: 10px 0px;
}

.terceiraparte 
.sobreaigreja 
.quemsomosfundo 
.imagemsomosfundo 
.table {
  display: none;
}

.terceiraparte .sobreaigreja .quemsomosfundo p {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  text-align: justify;
  line-height: 110%;

  
}

.terceiraparte .sobreaigreja .quemsomosfundo p strong{
  font-weight: 800;
}

.terceiraparte .sobreaigreja .quemsomosfundo p span {
  font-style: italic;
}



/*FINAL DA PARTE TERCEIRA*/

.quartaparte {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 1320px;
  margin: 0 auto;
  padding: 4rem 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.quartaparte::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(0, 9, 91, 0.3), transparent);
}

.quartaparte .quemsomos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  text-align: center;
  margin-bottom: 3rem;
}

.quartaparte .quemsomos h1 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 3.5rem;
  color: #00095b;
  margin-top: 2rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.quartaparte .quemsomos h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgb(255, 208, 0), transparent);
  border-radius: 2px;
}

.quartaparte .quemsomos h2 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 3rem;
  margin-top: 1.5rem;
}

.quartaparte .todoselementos {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  width: 100%;
  margin-bottom: 3rem;
  opacity: 1;
}

.quartaparte .todoselementos .responsavel {
  display: flex;
  align-items: center;
  padding: 0;
  flex-direction: row;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  border-radius: 20px;
  width: 100%;
  min-height: 140px;
  gap: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(0, 9, 91, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}

.quartaparte .todoselementos .responsavel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, rgb(255, 208, 0), #00095b);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.quartaparte .todoselementos .responsavel:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 9, 91, 0.2), 0 6px 15px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 208, 0, 0.3);
}

.quartaparte .todoselementos .responsavel:hover::before {
  transform: scaleY(1);
}

.quartaparte .todoselementos .responsavel .circulo {
  position: relative;
  flex-shrink: 0;
  margin-left: 1.5rem;
  padding: 0.5rem;
  background: linear-gradient(135deg, #00095b 0%, #001a7a 100%);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 9, 91, 0.3);
  transition: all 0.4s ease;
}

.quartaparte .todoselementos .responsavel:hover .circulo {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 9, 91, 0.4);
}

.quartaparte .todoselementos .responsavel .circulo::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgb(255, 208, 0), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.quartaparte .todoselementos .responsavel:hover .circulo::after {
  opacity: 0.5;
}

.quartaparte .todoselementos .responsavel .circulo img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 3px solid rgba(255, 255, 255, 0.9);
  transition: all 0.4s ease;
}

.quartaparte .todoselementos .responsavel:hover .circulo img {
  border-color: rgb(255, 208, 0);
}

.quartaparte .todoselementos .responsavel .nomesresponsavel {
  flex: 1;
  padding: 1.5rem 1.5rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.quartaparte .todoselementos .responsavel .nomesresponsavel h1 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.15rem;
  color: #00095b;
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.quartaparte .todoselementos .responsavel:hover .nomesresponsavel h1 {
  color: #00095b;
}

.quartaparte .todoselementos .responsavel .nomesresponsavel h2 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.6);
  margin: 0;
  text-transform: capitalize;
  position: relative;
  padding-left: 1.5rem;
}

.quartaparte .todoselementos .responsavel .nomesresponsavel h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: rgb(255, 208, 0);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.quartaparte .todoselementos .responsavel:hover .nomesresponsavel h2::before {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, rgb(255, 208, 0), #00095b);
}

/*QUINTA PARTE FINAL*/

.formulario {
  background: linear-gradient(to right, navy, rgb(0, 183, 255));
  width: 100%;
  height: 100%;
}

.formulario .elementosdoformulario {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1rem;
  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;
  position: relative;
  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: 3.5rem;
  color: #ffffff;
  margin: 0 0 1rem 0;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
}

.formulario .elementosdoformulario .formulario-titulos h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgb(255, 208, 0), transparent);
  border-radius: 2px;
}

.formulario .elementosdoformulario .formulario-titulos h2 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 1.5rem 0 0 0;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.formulario .elementosdoformulario form {
  max-width: 1320px;
  margin: 0 auto;
  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;
  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;
  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 {
  max-width: 1320px;
  margin: 0 auto;
  padding: 4rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  list-style: none;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
}

.setimaparte::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(0, 9, 91, 0.3), transparent);
}

.setimaparte .perguntas-frequentes{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
}

.setimaparte .perguntas-frequentes .formulario-titulos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.setimaparte .perguntas-frequentes .formulario-titulos h1 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 3.5rem;
  color: #00095b;
  margin-top: 2rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.setimaparte .perguntas-frequentes .formulario-titulos h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgb(255, 208, 0), transparent);
  border-radius: 2px;
}

.setimaparte .perguntas-frequentes .formulario-titulos h2 {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0;
  margin-top: 1.5rem;
}

.faq{
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
}

.faq li {
  width: 100%;
  margin-bottom: 0;
  list-style: none;
}

.faq .espaco {
  margin-bottom: 0;
}

.faq li label {
  padding: 1.5rem 2rem;
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  border: 2px solid rgba(0, 9, 91, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.faq li label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, rgb(255, 208, 0), #00095b);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.faq li label:hover {
  background: linear-gradient(135deg, #ffffff 0%, rgba(0, 9, 91, 0.02) 100%);
  border-color: rgba(255, 208, 0, 0.3);
  transform: translateX(5px);
  box-shadow: 0 4px 16px rgba(0, 9, 91, 0.15);
}

.faq li label:hover::before {
  transform: scaleY(1);
}

.faq input[type="radio"]:checked + label {
  background: linear-gradient(135deg, rgba(0, 9, 91, 0.05) 0%, rgba(0, 9, 91, 0.02) 100%);
  border-color: rgb(255, 208, 0);
  box-shadow: 0 6px 20px rgba(0, 9, 91, 0.2);
}

.faq input[type="radio"]:checked + label::before {
  transform: scaleY(1);
}

.faq li label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0;
  background: linear-gradient(135deg, #00095b 0%, #001a7a 100%);
  color: #ffffff;
  border-radius: 12px;
  margin-right: 1.25rem;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0, 9, 91, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq li label:hover span {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 9, 91, 0.4);
}

.faq input[type="radio"]:checked + label span {
  background: linear-gradient(135deg, rgb(255, 208, 0) 0%, rgb(255, 220, 50) 100%);
  color: #00095b;
  box-shadow: 0 4px 12px rgba(255, 208, 0, 0.4);
}

.faq input[type="radio"] {
  display: none;
}

.faq .resposta {
  color: #2a2a2a;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.7;
  padding: 0 2rem;
  background: linear-gradient(135deg, rgba(0, 9, 91, 0.03) 0%, rgba(0, 9, 91, 0.01) 100%);
  border-left: 4px solid rgb(255, 208, 0);
  border-radius: 0 0 16px 16px;
  margin-top: -2px;
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq input[type="radio"]:checked + label + .resposta {
  max-height: 500px;
  padding: 1.5rem 2rem;
  margin-bottom: 0;
}

.faq .resposta p {
  margin: 0;
  color: #4a4a4a;
}

.slide-eighth {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(to right, rgb(128, 0, 0), rgb(255, 4, 0));
}

.slide-eighth{
  padding: 0 1rem;
  
}

.slide-eighth .eighth-titulos{
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 3rem;
  margin-bottom: 2rem;
  position: relative;
}

.todos-site-igreja{
  max-width: 1320px;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.slide-eighth .eighth-titulos h1 {
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-size: 3.5rem;
  text-align: center;
  margin: 0 0 1rem 0;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
}

.slide-eighth .eighth-titulos h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgb(255, 208, 0), transparent);
  border-radius: 2px;
}

.slide-eighth .eighth-titulos h2 {
  color: rgba(255, 255, 255, 0.95);
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5rem;
  text-align: center;
  margin: 1.5rem 0 0 0;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.todos-site-igreja{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}

.todos-site-igreja .site .imagem{
  width: 400px;
  height: 150px;
  border: #d9d9d9 4px solid;
  transition: all 0.5s;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.todos-site-igreja .site .imagem:hover{
  transition: all 0.5s;
  box-shadow: rgba(255, 255, 255, 0.25) 0px 50px 100px -20px, rgba(255, 255, 255, 0.3) 0px 30px 60px -30px, rgba(255, 255, 255, 0.35) 0px -2px 6px 0px inset;
}

.todos-site-igreja .site .imagem img{
  width: 100%;
  height: 100%;
}

/* --- parte responsiva --- */

/* Estilos já cobertos nas media queries principais acima */

/* ============================================
   RESPONSIVIDADE - TABLET (até 1024px)
   ============================================ */
@media screen and (max-width: 1024px) {
  /* Cards dos jornais */
  .todoscard {
    gap: 20px;
    padding: 0 15px;
  }

  .todoscard .card {
    width: 260px;
    min-height: 480px;
  }

  .todoscard .card:hover {
    transform: translateY(-10px) scale(1.03);
  }

  .todoscard .card .card-image-wrapper {
    height: 360px;
  }
  
  .todoscard .card > img {
    height: 360px;
  }

  .todoscard .card:hover img {
    transform: scale(1.1);
  }

  .todoscard .card .card-date {
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    font-size: 0.65rem;
  }

  .todoscard .card .card-content {
    padding: 12px;
    gap: 8px;
  }

  .todoscard .card h1 {
    margin: 0;
    font-size: 0.95rem;
    min-height: 36px;
    letter-spacing: 0.2px;
  }

  .todoscard .card .card-meta {
    font-size: 0.75rem;
    gap: 4px;
  }

  .todoscard .card button {
    width: 100%;
    margin: 0;
    padding: 10px 12px;
    border-radius: 10px;
  }

  .todoscard .card button a {
    font-size: 0.9rem;
    letter-spacing: 0.6px;
  }

  /* Títulos principais */
  main .jornal-titulo h1,
  .video .jornal-titulo h1,
  .segunda-parte .tudosobrejornal .jornalsobretitulo h1,
  .terceiraparte .sobreaigreja .quemsomos h1,
  .quartaparte .quemsomos h1,
  .formulario .elementosdoformulario .formulario-titulos h1,
  .setimaparte .perguntas-frequentes .formulario-titulos h1,
  .slide-eighth .eighth-titulos h1 {
    font-size: 2.5rem;
  }

  main .jornal-titulo h2,
  .video .jornal-titulo h2,
  .segunda-parte .tudosobrejornal .jornalsobretitulo h2,
  .terceiraparte .sobreaigreja .quemsomos h2,
  .quartaparte .quemsomos h2,
  .formulario .elementosdoformulario .formulario-titulos h2,
  .setimaparte .perguntas-frequentes .formulario-titulos h2,
  .slide-eighth .eighth-titulos h2 {
    font-size: 1.2rem;
  }

  /* Seção sobre o jornal */
  .segunda-parte .tudosobrejornal .sobreojornal {
    flex-direction: column;
  }

  .segunda-parte .tudosobrejornal .sobreojornal img {
    width: 100%;
    max-width: 100%;
    margin: 0 0 10px 0;
  }

  /* Seção sobre a igreja */
  .terceiraparte .sobreaigreja .quemsomosfundo {
    flex-direction: column;
  }

  /* Seção responsáveis */
  .quartaparte .todoselementos {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  /* Formulário */
  .formulario .elementosdoformulario form {
    max-width: 100%;
    padding: 0 0rem;
  }

  /* Sites da igreja */
  .todos-site-igreja .site .imagem {
    width: 100%;
    max-width: 400px;
  }
}

/* Estilos já cobertos na media query de 768px acima */

/* ============================================
   RESPONSIVIDADE - MOBILE (até 608px)
   ============================================ */
@media screen and (max-width: 608px) {
  main .primeira-parte {
    margin: 0;
    padding: 0 10px;
  }

  .terceiraparte .sobreaigreja {
    flex-direction: column;
    padding: 0 1rem;
  }

  .quartaparte {
    padding: 2rem 1rem;
  }

  .quartaparte .todoselementos {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .quartaparte .todoselementos .responsavel {
    min-height: 110px;
  }

  .quartaparte .todoselementos .responsavel .circulo img {
    width: 80px;
    height: 80px;
  }

  .formulario .elementosdoformulario {
    padding: 0 10px;
    margin: 0 10px;
  }

  .setimaparte {
    padding: 2rem 1rem;
  }

  .setimaparte .perguntas-frequentes .formulario-titulos h1 {
    font-size: 2rem;
  }

  .setimaparte .perguntas-frequentes .formulario-titulos h2 {
    font-size: 1rem;
  }

  .faq li label {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .faq li label span {
    min-width: 30px;
    height: 30px;
    font-size: 0.9rem;
    margin-right: 0.75rem;
  }

  .faq .resposta {
    padding: 0 1rem;
    font-size: 0.9rem;
  }

  .faq input[type="radio"]:checked + label + .resposta {
    padding: 1rem;
  }
}


/* ============================================
   RESPONSIVIDADE - TABLET PEQUENO (até 884px)
   ============================================ */
@media screen and (max-width: 884px) {
  .video {
    padding: 3rem 1rem;
  }

  .video .jornal-titulo h1 {
    font-size: 3rem;
  }

  .video .video-wrapper {
    padding: 0 1rem;
  }

  .video video {
    max-width: 95%;
  }

  .segunda-parte .tudosobrejornal .sobreojornal {
    flex-direction: column;
  }

  .terceiraparte .sobreaigreja {
    flex-direction: column;
  }

  .quartaparte .todoselementos {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* ============================================
   RESPONSIVIDADE - TABLET/MOBILE (até 768px)
   ============================================ */
@media screen and (max-width: 768px) {
  .video {
    padding: 2.5rem 1rem;
  }

  .video .jornal-titulo h1 {
    font-size: 2.5rem;
  }

  .video .jornal-titulo h2 {
    font-size: 1.3rem;
  }

  .video video {
    max-width: 100%;
    border-radius: 16px;
  }

  main .primeira-parte {
    margin: 0;
    padding: 0 1rem;
  }

  .quartaparte {
    padding: 3rem 1rem;
  }

  .formulario .elementosdoformulario {
    padding: 1rem;
  }

  .setimaparte {
    padding: 2.5rem 1rem;
  }

  .faq li label {
    padding: 1.15rem 1.25rem;
    font-size: 1rem;
  }

  .faq li label span {
    min-width: 32px;
    height: 32px;
    font-size: 0.95rem;
    margin-right: 0.75rem;
  }

  .faq .resposta {
    padding: 0 1.25rem;
    font-size: 0.95rem;
  }

  .faq input[type="radio"]:checked + label + .resposta {
    padding: 1rem 1.25rem;
  }

  /* Botão Saiba Mais */
  main .buttonsaibamais {
    margin-bottom: 3rem;
    margin-top: 2rem;
  }

  main .buttonsaibamais button {
    min-width: 260px;
    height: 54px;
    font-size: 1.05rem;
    padding: 0 38px;
    letter-spacing: 1.1px;
  }

  main .buttonsaibamais button a {
    font-size: 1.05rem;
    letter-spacing: 1.1px;
  }

  main .buttonsaibamais button a::after {
    font-size: 1.3rem;
    margin-left: 7px;
  }
}

/* ============================================
   RESPONSIVIDADE - MOBILE PEQUENO (até 581px)
   ============================================ */
@media screen and (max-width: 581px) {
  /* Vídeo */
  .video {
    padding: 2rem 1rem;
  }

  .video .jornal-titulo h1 {
    font-size: 2rem;
  }

  .video .jornal-titulo h2 {
    font-size: 1.1rem;
  }

  .video .video-wrapper {
    padding: 0 0.5rem;
  }

  .video video {
    border-radius: 16px;
    max-width: 100%;
  }
  
  /* Títulos principais */
  main .jornal-titulo h1 {
    font-size: 2rem;
  }

  main .jornal-titulo h2 {
    font-size: 1.1rem;
  }

  /* Cards dos jornais */
  .todoscard {
    gap: 15px;
    padding: 0 10px;
  }

  .todoscard .card {
    width: 100%;
    max-width: 300px;
    min-height: 480px;
  }

  .todoscard .card .card-image-wrapper {
    height: 360px;
  }
  
  .todoscard .card > img {
    height: 360px;
  }
  
  .todoscard .card h1 {
    font-size: 1.4rem;
  }

  .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: 0 0 1rem 0;
  }

  .segunda-parte .tudosobrejornal .jornalsobretitulo h1::after {
    width: 80px;
    height: 3px;
  }

  .segunda-parte .tudosobrejornal .jornalsobretitulo h2{
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 1.5rem 0 0 0;
  }

  .segunda-parte .tudosobrejornal .sobreojornal {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .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;
    margin: 0 0 1rem 0;
  }

  .terceiraparte .sobreaigreja .quemsomos h1::after {
    width: 80px;
    height: 3px;
  }

  .terceiraparte .sobreaigreja .quemsomos h2 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 1.5rem 0 0 0;
  }

  .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 {
    padding: 3rem 1rem;
  }

  .quartaparte .quemsomos h1 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 2.5rem;
    color: #00095b;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .quartaparte .quemsomos h2 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
  }

  .quartaparte .todoselementos {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .quartaparte .todoselementos .responsavel {
    min-height: 120px;
    gap: 1.25rem;
  }

  .quartaparte .todoselementos .responsavel .circulo {
    margin-left: 1.25rem;
  }

  .quartaparte .todoselementos .responsavel .circulo img {
    width: 90px;
    height: 90px;
  }

  .quartaparte .todoselementos .responsavel .nomesresponsavel {
    padding: 1.25rem 1.25rem 1.25rem 0;
  }

  .quartaparte .todoselementos .responsavel .nomesresponsavel h1 {
    font-size: 1rem;
  }

  .quartaparte .todoselementos .responsavel .nomesresponsavel h2 {
    font-size: 0.85rem;
  }

  .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: 0 0 1rem 0;
  }

  .formulario .elementosdoformulario .formulario-titulos h1::after {
    width: 80px;
    height: 3px;
  }

  .formulario .elementosdoformulario .formulario-titulos h2 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 1.5rem 0 0 0;
  }

  .setimaparte {
    padding: 3rem 1rem;
  }

  .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: #00095b;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }

  .setimaparte .perguntas-frequentes .formulario-titulos h2 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 0;
    margin-top: 1rem;
  }

  .faq {
    gap: 1rem;
  }

  .faq li label {
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
  }

  .faq li label span {
    min-width: 36px;
    height: 36px;
    font-size: 1rem;
    margin-right: 1rem;
  }

  .faq .resposta {
    padding: 0 1.5rem;
    font-size: 1rem;
  }

  .faq input[type="radio"]:checked + label + .resposta {
    padding: 1.25rem 1.5rem;
  }

  .slide-eighth .eighth-titulos h1 {
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 2.5rem;
    text-align: center;
    margin: 0 0 1rem 0;
  }

  .slide-eighth .eighth-titulos h1::after {
    width: 80px;
    height: 3px;
  }
  
  .slide-eighth .eighth-titulos h2 {
    color: rgba(255, 255, 255, 0.95);
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 1.2rem;
    text-align: center;
    margin: 1.5rem 0 0 0;
  }

  .slide-eighth{
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 1rem;
    
  }

  .todos-site-igreja{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .todos-site-igreja .site{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;

  }

  .todos-site-igreja .site .imagem{
    width: 100%;
    height: 100%;
    border: #d9d9d9 4px solid;
    transition: all 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
}

/* ============================================
   RESPONSIVIDADE - MOBILE MUITO PEQUENO (até 480px)
   ============================================ */
@media screen and (max-width: 480px) {
  /* Cards ainda menores */
  .todoscard .card {
    width: 140px;
    min-height: 280px;
  }

  .todoscard .card .card-image-wrapper {
    height: 195px;
  }

  .todoscard .card h1 {
    font-size: 0.85rem;
    min-height: 32px;
  }

  .todoscard .card button a {
    font-size: 0.8rem;
  }

  /* Títulos ainda menores */
  main .jornal-titulo h1,
  .video .jornal-titulo h1,
  .segunda-parte .tudosobrejornal .jornalsobretitulo h1,
  .terceiraparte .sobreaigreja .quemsomos h1,
  .quartaparte .quemsomos h1,
  .formulario .elementosdoformulario .formulario-titulos h1,
  .setimaparte .perguntas-frequentes .formulario-titulos h1,
  .slide-eighth .eighth-titulos h1 {
    font-size: 1.8rem;
  }

  main .jornal-titulo h2,
  .video .jornal-titulo h2,
  .segunda-parte .tudosobrejornal .jornalsobretitulo h2,
  .terceiraparte .sobreaigreja .quemsomos h2,
  .quartaparte .quemsomos h2,
  .formulario .elementosdoformulario .formulario-titulos h2,
  .setimaparte .perguntas-frequentes .formulario-titulos h2,
  .slide-eighth .eighth-titulos h2 {
    font-size: 1rem;
  }

  /* Formulário */
  .formulario .elementosdoformulario form .form-group label {
    font-size: 1.1rem;
  }

  .formulario .elementosdoformulario form .form-group input,
  .formulario .elementosdoformulario form .form-group textarea {
    font-size: 0.9rem;
    padding: 15px 8px;
  }

  .formulario .elementosdoformulario form button {
    font-size: 1.2rem;
    padding: 12px 30px;
  }

  /* FAQ */
  .faq li label {
    padding: 0.9rem;
    font-size: 0.95rem;
  }

  .faq li label span {
    min-width: 28px;
    height: 28px;
    font-size: 0.9rem;
    margin-right: 0.5rem;
  }

  .faq .resposta {
    padding: 0 0.9rem;
    font-size: 0.9rem;
  }

  .faq input[type="radio"]:checked + label + .resposta {
    padding: 0.9rem;
  }

  /* Botão Saiba Mais */
  main .buttonsaibamais {
    margin-bottom: 3rem;
    margin-top: 2rem;
  }

  main .buttonsaibamais button {
    min-width: 240px;
    height: 52px;
    font-size: 1rem;
    padding: 0 35px;
    letter-spacing: 1px;
  }

  main .buttonsaibamais button a {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  main .buttonsaibamais button a::after {
    font-size: 1.2rem;
    margin-left: 6px;
  }

  /* Botão Saiba Mais - ajustes adicionais para mobile pequeno */
  main .buttonsaibamais button {
    min-width: 220px;
    height: 48px;
    font-size: 0.95rem;
    padding: 0 30px;
    letter-spacing: 0.9px;
  }

  main .buttonsaibamais button a {
    font-size: 0.95rem;
    letter-spacing: 0.9px;
  }

  main .buttonsaibamais button a::after {
    font-size: 1.1rem;
    margin-left: 5px;
  }

  
}
