/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  padding: 0 2rem;
  background: var(--creme-extraSuave);
}

.logo-wrapper {
  flex: 1; /* ocupa todo o espaço central */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  overflow: hidden;
  position: relative; /* necessário para posicionar o nome */
}

.logo {
  height: 85px;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
  cursor: pointer;
}

.logo-nome {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  text-align: center;
  line-height: 1.2;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.logo-nome .linha1 {
  font-family: "Dancing Script", cursive;
  font-weight: bold;
  font-size: 1.6rem;
  color: var(--secondary-color);
}

.logo-nome .linha2 {
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--primary-color);
}

/* Logo some quando hover OU menu aberto */
.hide-logo {
  transform: translateY(-20px);
  opacity: 0;
}

/* Nome aparece tanto no hover quanto quando o menu está aberto */
.logo-nome.show-name,
.logo-wrapper.show-name .logo-nome {
  opacity: 1;
}

.logo-wrapper.show-name .logo {
  display: none;
}

.menu-toggle i {
  font-size: 50px; /* aumenta o ícone */
  cursor: pointer;
  color: var(--primary-color);
  margin-left: auto;
}

.social-icons {
  display: flex;
  gap: 20px;
  flex-shrink: 0; /* impede que eles ocupem espaço extra */
  margin-right: 0;
}

.social-icons a {
  font-size: 2rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: var(--secondary-color);
}

.navbar {
  position: absolute;
  top: 120px; /* abaixo do header */
  left: 0;
  width: 100%;
  min-height: 455px; /* altura mínima */
  height: auto; /* cresce conforme conteúdo */
  background: var(--creme-suave);
  display: none;
  text-align: left;
  z-index: 9999;
  padding-top: 0.5rem;
}

.navbar.active {
  display: block;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 12rem;
}

.nav-links li {
  position: relative;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
  display: block;
  padding: 0.4rem 0;
  line-height: 1.2;
}

.nav-links a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Estado inicial */
.nav-links .dropdown {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: 
    max-height 0.4s ease,
    opacity 0.3s ease 0.2s,   /* fade começa depois */
    transform 0.4s ease;
}

/* Estado ativo */
.nav-links .has-dropdown.active > .dropdown {
  max-height: 500px; /* valor grande o suficiente */
  opacity: 1;
  transform: translateY(0);
  transition: 
    max-height 0.4s ease,
    opacity 0.3s ease 0.1s,   /* fade inicia logo após o slide */
    transform 0.4s ease;
}

.has-dropdown.active .dropdown {
  display: block;
}

.dropdown li {
  margin: 0.2rem 0; /* espaçamento compacto entre itens */
}

.dropdown a {
  font-weight: normal; /* diferencia dos links principais */
  padding: 0.1rem 0;
  line-height: 1.2;
  color: var(--primary-color);
}

/* Estados da logo */
.logo-nome {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo-wrapper.show-name .logo {
  display: none;
}

.logo-wrapper.show-name .logo-nome {
  opacity: 1;
}

/* -------------- Home carousel ----------------- */
body,
html {
  height: 100%;
}

.carousel-section {
  min-height: auto; /* remove a altura mínima */
  height: auto; /* deixa o carrossel controlar sua altura */
  padding-block: 0; /* opcional: remove padding extra */
}

.carousel {
  position: relative;
  width: 100%;
  height: 85vh; /* altura fixa do carrossel */
  margin: 0; /* remove qualquer espaço externo */
  padding: 0;
  overflow: hidden;
  z-index: 1; /* carrossel fica abaixo */
}

.carousel-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-slide {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide img {
  flex: 0 0 100%; /* cada imagem ocupa 100% da tela */
  width: 100%; /* largura da viewport */
  height: 100%; /* altura do carrossel */
  object-fit: cover;
}

.carousel-slide video {
  flex: 0 0 100%;   /* cada vídeo ocupa 100% da tela */
  width: 100%;      /* largura da viewport */
  height: 100%;     /* altura do carrossel */
  object-fit: cover; /* faz o vídeo preencher sem distorcer */
}

/* Botões */
.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
}

.carousel .prev {
  left: 10px;
}
.carousel .next {
  right: 10px;
}

/* ------------ Welcome ----------------------- */
.welcome {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem; /* padding mais equilibrado */
}

.welcome {
  position: relative; /* necessário para que o ::before funcione corretamente */
}

.welcome::before {
  content: ""; /* cria um elemento vazio */
  display: block;
  height: var(--header-h); /* altura igual à do header */
  margin-top: calc(-1 * var(--header-h)); /* desloca para cima */
  visibility: hidden; /* não aparece visualmente */
}

.welcome .section-content {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.welcome .welcome-image-wrapper {
  flex: 1; /* ocupa menos espaço */
  text-align: center;
}

.welcome .welcome-image-wrapper .welcome-image {
  width: 100%;
  max-width: 360px; /* reduzindo a largura máxima */
  height: auto;
}

.welcome .welcome-details {
  flex: 2; /* ocupa mais espaço que a imagem */
  max-width: 900px; /* aumenta o limite do texto */
}

.welcome .welcome-details h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-top: 0; /* evita empurrar conteúdo para baixo */
}

.welcome .welcome-details span {
  color: var(--secondary-color);
}

.welcome .welcome-details .text {
  line-height: 1.6;
  margin: 20px 0 10px;
  text-align: justify;
  font-size: var(--font-size-m);
  color: var(--color-gray);
}

.welcome .welcome-details .text strong {
  color: var(--color-primary);
}

/* animação de rotação contínua */
@keyframes entrarGirando {
  0% {
    opacity: 0;
    transform: translateX(-200px) rotateY(-180deg);
  }
  60% {
    opacity: 1;
    transform: translateX(30px) rotateY(20deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
  }
}

.welcome-image {
  opacity: 0; /* começa invisível */
  transform: translateX(-200px) rotateY(-180deg);
}

.welcome-image.animate-logo {
  animation: entrarGirando 3s ease-out forwards; /* duração aumentada para 3s */
}

/*-------------------- ABOUT section -------------------------*/
.section-about {
  position: relative;
  width: 100%;
  min-height: 100vh; /* melhor que height fixa */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px; /* dá respiro em telas pequenas */
}

/* Imagem de fundo */
.about-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

/* Texto sobre a imagem */
.about-details {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  padding: 20px;
  margin-left: 200px; /* só em telas grandes */
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.text {
  font-size: 1.2rem;
  line-height: 1.6;
}

.text strong {
  color: var(--primary-color);
}

/* ------------ Pastors ----------------------- */
.pastors {
  /* background: linear-gradient(
      rgba(255, 255, 255, 0.5),
      rgba(255, 255, 255, 0.5)
    ),
    url("../img/backgrounds/bg-3.jpg"); */
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}

/* -------- Pastors Section -------- */
#pastors {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 6rem 1rem; /* espaço no topo da seção */
  box-sizing: border-box;
}

/* Título */
.pastors__section {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 2.5rem; /* espaço entre título e descrição */
}

.pastors__section span {
  color: var(--secondary-color);
}

/* Descrição */
.pastors_subheader {
  font-size: 18px;
  color: var(--color-gray);
  margin-bottom: 1rem; /* espaço entre descrição e os círculos */
}

/* Grid de cards */
#pastors .pastors__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem; /* espaço entre os círculos */
  max-width: 1500px;
  margin: 0 auto; /* centraliza */
  justify-items: center;
  margin-top: 3rem;
}

/* Card e imagem */
.pastors__card {
  text-align: center;
}

.pastors__card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 5px solid var(--creme-suave);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Hover */
.pastors__card img:hover {
  transform: scale(1.1); /* aumenta o círculo */
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3); /* sombra mais forte */
  border-color: var(--secondary-color); /* muda a cor da borda */
}

.pastors__card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Satisfy", cursive;
  color: var(--color-primary);
  margin: 0;
}

.welcome,
.pastors,
.agenda {
  min-height: 100vh;
}

/* ------------ Weekly-agenda ----------------------- */
.weekly-agenda {
  padding: 2rem 1rem;
  text-align: center;
  justify-content: center;
}

.agenda__title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.agenda__title span {
  color: var(--secondary-color);
}

.agenda__subtitle {
  font-size: 1.1rem;
  color: var(--color-gray);
  max-width: 1000px;
  margin: 0 auto 3rem;

  /* ←←← essas 3 linhas resolvem 100% */
  white-space: nowrap; /* impede a quebra de linha */
  overflow: hidden; /* esconde o que passar do limite */
  text-overflow: ellipsis; /* coloca "..." se for muito grande */
}

.agenda__grid {
  display: grid;
  grid-template-columns: repeat(
    4,
    minmax(250px, 340px)
  ); /* tamanho fixo/bonito pros cards */
  gap: 2rem;
  justify-content: center; /* ← esta linha centraliza tudo! */
  align-items: center;
  max-width: none; /* tira o max-width que estava limitando */
  padding: 0 1rem; /* só um respiro nas laterais no celular */
}

/* O card agora é o <a> */
.agenda__card {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
  background: var(--secondary-color);
  text-decoration: none;
}

.agenda__card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.agenda__card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.agenda__card:hover img {
  transform: scale(1.08);
}

.agenda__card-title {
  display: block;
  padding: 1.4rem 1rem;
  background: var(--color-primary);
  color: var(--secondary-color);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  border-top: 4px solid var(--secondary-color);
  transition: background 0.3s ease;
}

.agenda__card:hover .agenda__card-title {
  background: var(--creme-suave);
  color: var(--primary-color);
  border-top: 4px solid var(--primary-color);
}

/* -------- Hero Section -------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  background: url("../img/backgrounds/heros/hero-home/hero-teams.png") no-repeat
    center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* escurece a imagem para dar contraste */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero__content {
  max-width: 1000px;
  z-index: 1;
}

.hero__content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero__content p {
  font-size: 1.5rem;
  line-height: 1.6;
}

.hero__content strong {
  color: var(--secondary-color);
}

/*------------- Contact Prayer Section ---------------- */
.contact-section {
  background-color: white;
  padding: 4rem 1rem;
  color: #333;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.section-title span {
  color: var(--secondary-color);
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr; /* duas colunas */
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.section-content .contact-info-list .details {
  font-size: 1.2rem;
  line-height: 1.8;
  text-align: justify;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input {
  padding: 0.5rem 0.8rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: none;
  padding: 0.8rem;
  font-size: 1rem;
  min-height: 120px; /* aumenta a altura da textarea */
  width: 100%; /* garante que também ocupe toda a largura */
  box-sizing: border-box;
}

.submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  background-color: var(--secondary-color);
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: white;
  color: var(--secondary-color);
  border: 1px solid var(--primary-color);
}

/* -------- Hero ENDEREÇOS Section -------- */
.unidades-section {
  background: url("../img/backgrounds/heros/hero-home/hero-enderecos.jpg")
    no-repeat center center;
  background-size: cover;
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.unidades-content {
  display: flex;
  flex-direction: column; /* título em cima, botões embaixo */
  align-items: center;
  gap: 30px; /* espaçamento entre título e botões */
}

.unidades-buttons {
  display: flex; /* coloca os botões em linha */
  justify-content: center; /* centraliza os botões */
  gap: 20px; /* espaçamento entre eles */
  flex-wrap: wrap; /* quebra linha em telas menores */
}

.unidades-button {
  display: inline-block;
  background-color: #ffffff;
  color: var(--primary-color);
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.unidades-button:hover {
  background-color: var(--secondary-color);
}

/* -------- Contribution Section -------- */
.contribution-hero {
  background: url("../img/backgrounds/heros/hero-home/hero-oferta.png")
    no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
  padding: 0 1rem 2rem;
  text-align: center;
  min-height: 55vh; /* ocupa no mínimo 55% da altura */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.contribution-columns {
  background-color: white;
  color: #333;
  padding: 2rem 1rem;
}

.contribution-columns__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.column p {
  font-size: 1rem;
  line-height: 1.6;
}

.column.right .call {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--primary-color);
  text-align: center;
}

.section-divider {
  border: none;
  height: 1px;
  background-color: var(--secondary-color);
  width: 90%;
  margin: 0 auto;
}

/*------------- Prayer-challenge ------------------- */
.prayer-challenge {
  background-color: white;
  padding: 0.3rem 1rem;
  text-align: center;
  color: #333;
}

.prayer-challenge__content {
  max-width: 900px;
  margin: 0 auto;
}

.prayer-challenge h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.prayer-challenge .verse {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.prayer-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.prayer-form label {
  font-weight: bold;
  text-align: left;
  font-size: 12px;
}

/* já existente */
.prayer-form input {
  padding: 1rem;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%; /* garante que ocupe toda a largura */
  box-sizing: border-box;
}

/* opcional: estilo específico para o campo nome */
.prayer-form input#nome_completo {
  border-color: var(--primary-color); /* destaque na borda */
  background-color: #fdfdfd; /* leve contraste */
}

.prayer-form input#nome_completo:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 6px rgba(106, 90, 205, 0.3);
  outline: none;
}

.prayer-form textarea {
  resize: none;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid var(--primary-color);
}

.prayer-form button {
  align-self: center;
  padding: 0.8rem 2rem;
  background-color: var(--secondary-color);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 3rem;
}

.prayer-form button:hover {
  background-color: white;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

/* -------- Footer Section -------- */
.footer {
  background-color: var(--primary-color);
  color: white;
  padding: 3rem 1rem 2rem;
  font-size: 0.95rem;
}

.footer__container {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr; /* primeira coluna maior */
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__column h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.footer__column p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer__column a {
  color: white;
  text-decoration: none;
}

.footer__column a:hover {
  text-decoration: underline;
}

.footer__column ul {
  list-style: none;
  padding: 0;
}

.footer__column ul li {
  margin-bottom: 0.5rem;
}

.footer__bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
}

.footer__bottom a i {
  color: white !important;
}

.footer__btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: var(--secondary-color);
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.footer__btn:hover {
  background-color: #fff;
  color: var(--secondary-color);
}

/* Footer dropdown escondido */
.footer-submenu {
  display: none;
  padding-left: 1rem;
  margin-top: 0.3rem;
}

/* Quando ativo, aparece */
.footer-dropdown.active > .footer-submenu {
  display: block;
}

/* Ajuste visual */
.footer-toggle {
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
}

/*------------- Botão de Rolagem ---------------- */
#scrollTopBtn {
  display: none; /* escondido por padrão */
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  background-color: var(--primary-color);
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: var(--secondary-color);
}

/*------------- Hero Vila Sabrina ---------------- */
.hero-sabrina {
  background: url("../img/backgrounds/heros/hero-endereços/hero-sabrina.png")
    no-repeat center center;
  background-size: cover;
  padding: 20rem 1rem 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-sabrina__content {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-sabrina h2 {
  color: transparent;
}

.hero-sabrina span {
  color: var(--secondary-color);
}

.hero-sabrina p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  color: var(--primary-color);
}

/*------------- Hero Jova Rural ---------------- */
.hero-jovaRural {
  background: url("../img/backgrounds/heros/hero-endereços/hero-jovaRural.png")
    no-repeat center center;
  background-size: cover;
  padding: 20rem 1rem 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-jovaRural__content {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-jovaRural h2 {
  color: transparent;
}

.hero-jovaRural span {
  color: var(--secondary-color);
}

.hero-jovaRural p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  color: var(--primary-color);
}

/*------------- Hero Americana ---------------- */
.hero-americana {
  background: url("../img/backgrounds/heros/hero-endereços/santa-barbara.png")
    no-repeat center center;
  background-size: cover;
  padding: 20rem 1rem 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-americana__content {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-americana h2 {
  color: transparent;
}

.hero-americana span {
  color: var(--secondary-color);
}

.hero-americana p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  color: var(--primary-color);
}

/*---------------- ENDEREÇOS -----------------*/
.info-section {
  color: var(--primary-color);
  padding: 50px 180px;
  background: var(--creme-extraSuave);
  background-size: cover;
}

.contact-layout {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-left {
  flex: 1;
  min-width: 300px;
}

.endereco {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.endereco i {
  font-size: 24px;
}

.contact-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-item {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 200px;
}

.contact-item i {
  font-size: 24px;
}

.contact-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 200px;
}

.social-icons {
  display: flex;
  gap: 15px;
  font-size: 32px;
  cursor: pointer;
}

.whatsapp-button {
  display: inline-block;
  background-color: #25d366;
  color: white;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* REUNIÕES */
.reunioes-section {
  color: var(--primary-color);
  padding: 20px 180px;
  background: var(--creme-extraSuave);
  background-size: cover;
}

.reunioes-title {
  font-size: 28px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.reunioes-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.reuniao-item {
  background-color: rgba(255, 255, 255, 0.7); /* Transparência */
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  min-width: 200px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-size: 16px;
}

.reuniao-item span {
  font-size: 24px;
  font-weight: bold;
}

/* INFORMAÇÕES ÚTEIS */
.info-uteis {
  color: var(--primary-color);
  padding: 40px 180px;
  background: var(--creme-extraSuave);
  background-size: cover;
}

.info-uteis h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.info-container {
  display: flex;
  gap: 30px;
  align-items: stretch; /* força altura igual */
}

.info-left,
.info-right {
  flex: 1;
  min-width: 500px;
  display: flex;
  flex-direction: column;
}

.info-right iframe {
  flex: 1;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.info-item {
  background-color: rgba(255, 255, 255, 0.8); /* Transparência */
  padding: 15px;
  margin-bottom: 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.info-item i {
  font-size: 24px;
}

/* SERVIÇOS */
.servicos {
  color: var(--primary-color);
  padding: 40px 180px;
  background: var(--creme-extraSuave);
  background-size: cover;
}

.servicos h2 {
  font-size: 28px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.servicos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.servico-item {
  background-color: rgba(255, 255, 255, 0.7); /* Transparência */
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  min-width: 180px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.servico-item i {
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
}

.logo-icon {
  width: 40px;
  height: auto;
  margin-bottom: 10px;
}

.servicos-imagens {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.servicos-imagens img {
  width: 500px;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/*------------- Hero Culto da Família ---------------- */
.hero-family {
  background: url("../img/backgrounds/heros/hero-cultos/hero-family.png")
    no-repeat center center;
  background-size: cover;
  padding: 20rem 1rem 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-family__content {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-family h2 {
  color: transparent;
}

.hero-family span {
  color: var(--secondary-color);
}

.hero-family p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  color: var(--primary-color);
}

/*------------- Hero Culto da Cura ---------------- */
.hero-cura {
  background: url("../img/backgrounds/heros/hero-cultos/hero-cura.png")
    no-repeat center center;
  background-size: cover;
  padding: 20rem 1rem 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-cura__content {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-cura h2 {
  color: transparent;
}

.hero-cura span {
  color: var(--secondary-color);
}

.hero-cura p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  color: var(--primary-color);
}

/*------------- Hero Culto da Busca do Espírito Santo ---------------- */
.hero-busca {
  background: url("../img/backgrounds/heros/hero-cultos/hero-busca.png")
    no-repeat center center;
  background-size: cover;
  padding: 20rem 1rem 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-busca__content {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-busca h2 {
  color: transparent;
}

.hero-busca span {
  color: var(--secondary-color);
}

.hero-busca p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  color: var(--primary-color);
}

/*------------- Hero Círculo de Oração ---------------- */
.hero-oracao {
  background: url("../img/backgrounds/heros/hero-cultos/hero-oracao.png")
    no-repeat center center;
  background-size: cover;
  padding: 20rem 1rem 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-oracao__content {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-oracao h2 {
  color: transparent;
}

.hero-oracao span {
  color: var(--secondary-color);
}

.hero-oracao p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  color: var(--primary-color);
}

/*------------- Hero Culto de Libertação ---------------- */
.hero-libertacao {
  background: url("../img/backgrounds/heros/hero-cultos/hero-libertacao.png")
    no-repeat center center;
  background-size: cover;
  padding: 20rem 1rem 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-libertacao__content {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-libertacao h2 {
  color: transparent;
}

.hero-libertacao span {
  color: var(--secondary-color);
}

.hero-libertacao p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  color: var(--primary-color);
}

/*------------- Hero Culto de Jovens ---------------- */
.hero-jovens {
  background: url("../img/backgrounds/heros/hero-cultos/hero-jovem.png")
    no-repeat center center;
  background-size: cover;
  padding: 20rem 1rem 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-jovens__content {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-jovens h2 {
  color: transparent;
}

.hero-jovens span {
  color: var(--secondary-color);
}

.hero-jovens p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  color: var(--primary-color);
}

/*------------- Hero Culto de Jovens ---------------- */
.hero-casais {
  background: url("../img/backgrounds/heros/hero-cultos/hero-casais.png")
    no-repeat center center;
  background-size: cover;
  padding: 20rem 1rem 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-casais__content {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-casais h2 {
  color: transparent;
}

.hero-casais span {
  color: var(--secondary-color);
}

.hero-casais p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  color: var(--primary-color);
}

/* -------------------- Culto da Família ----------------------- */
/* Ajuste para não ficar escondido atrás da navbar */
#familia {
  padding-top: 30px; /* ajuste conforme a altura da sua navbar */
}

.family-restoration {
  padding: 20px 40px;
  background-color: var(--creme-extraSuave);
}

.family-restoration__container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.family-restoration__image img {
  width: 100%;
  max-width: 500px;
  margin-top: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.family-restoration__content {
  max-width: 800px;
}

.family-restoration__title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

hr {
  border: none; /* remove o estilo padrão */
  height: 4px; /* define a grossura da linha */
  background-color: var(--secondary-color); /* cor da linha */
  width: 100%; /* largura opcional */
  margin: 20px auto; /* centraliza e dá espaço */
  border-radius: 2px; /* arredonda as pontas */
}

.family-restoration__title span {
  color: var(--secondary-color);
}

.family-restoration__description {
  font-size: 1.1rem;
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555;
}

/* Convite para o Culto da Família */
.pilares-section {
  background: var(--creme-extraSuave);
  padding: 40px 20px;
  text-align: center;
  color: var(--primary-color);
}

.pilares-section h2 {
  font-size: 28px;
  color: var(--secondary-color);
  margin-bottom: 30px;
}

.pilares-section p {
  font-size: 20px;
  margin-bottom: 2rem;
  color: var(--color-gray);
}

.pilares-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.pilar-item {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: block;
  text-decoration: none;
  color: var(--primary-color);
}

.pilar-item:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

.pilar-item i {
  font-size: 40px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.pilar-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.pilar-item p {
  font-size: 16px;
  font-weight: bold;
}

/*------------- Hero Culto da Prosperidade ---------------- */
.hero-prosperity {
  background: url("../img/backgrounds/heros/hero-cultos/hero-prosperidade.png")
    no-repeat center center;
  background-size: cover;
  padding: 20rem 1rem 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-prosperity__content {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-prosperity h2 {
  color: transparent;
}

.hero-prosperity span {
  color: var(--secondary-color);
}

.hero-prosperity p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.6;
  color: var(--primary-color);
}

/*------------- Hero Testemunhos ---------------- */
.hero-testemunhos {
  background: url("../img/backgrounds/heros/hero-testemunhos/hero-testemunhos.png")
    no-repeat center center;
  background-size: cover;
  padding: 20rem 1rem 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-testemunhos__content {
  max-width: 1000px;
  margin: 0 auto;
}

/*------------- Testemunhos ------------------- */
.testemunhos {
  background-color: #f9f9f9;
  padding: 4rem 1rem;
  text-align: center;
}

.testemunhos__content {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testemunhos h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.testemunhos .verse {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.testemunho-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-input {
  flex: 1;
  min-width: 200px;
  padding: 1rem;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

textarea.form-input {
  resize: none;
  border: 1px solid var(--primary-color);
}

.form-radio-group {
  flex: 1;
  min-width: 200px;
}

.form-label {
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: block;
  text-align: left;
}

.radio-options {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.radio-options label {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.95rem;
  text-align: left;
}

.checkbox input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--secondary-color);
  width: 18px;
  height: 18px;
}

.submit-button {
  align-self: center;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  background-color: var(--secondary-color);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.submit-button:hover {
  background-color: white;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.form-feedback {
  margin-top: 15px;
  font-size: 1rem;
}

/*--------------- BLOG oficial da Bispa Leci ------------------ */
.main-layout {
  display: flex;
}

.main-layout .content-wrapper {
  padding: 0 1rem;
  overflow-x: hidden;
  width: 100%;
}

.content-wrapper .category-list {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.75rem 0 0.75rem;
  scrollbar-width: none;
}

.category-list .category-button {
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0.4rem 0.75rem;
  border-radius: 0.5rem;
  background: var(--light-gray-color);
}

/* Section Ministério de Mulheres Stylling........................................................................... */
.ministerio-mulher {
  display: flex;
  flex-direction: column; /* agora os filhos ficam em coluna */
  gap: 10px;              /* espaço entre banner e destaques */
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  font-family: Arial, sans-serif;
}

.banner {
  width: 100%; /* ocupa toda a largura */
  background: linear-gradient(135deg, var(--primary-color), var(--color-primary));
  color: white;
  padding: 10px;
  border-radius: 8px;
  text-align: center; /* centraliza o texto */
}

.banner h2 {
  font-family: "Love Light", cursive;
  font-size: 5rem;
  margin-bottom: 10px;
}

.banner p {
  font-family: "Satisfy", cursive;
  font-size: 2.2rem;
}

.agenda-2026 {
  margin-top: 35px;
  text-align: center;
}

.agenda-banner {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 1000px;
}

.agenda-banner img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  opacity: 0.8; /* deixa a imagem mais suave */
}

.agenda-texto {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #e32f81;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.agenda-texto h2 {
  font-size: 2.5rem;
  font-family: "Orbitron", sans-serif;
  margin-bottom: 10px;
}

.agenda-texto p {
  font-size: 1.2rem;
}

.titulo-section {
  font-size: 2rem;
  font-weight: bold;
  color: var(--secondary-color);
  text-align: center; /* centraliza */
  width: 100%;        /* ocupa toda a largura */
}

.destaques-2025 {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* Carrossel Mulheres */
.carousel-mulheres {
  width: 60%;
  height: 550px;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}

.carousel-track-mulheres {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.carousel-item-mulheres {
  flex: 0 0 100%;
}

.carousel-item-mulheres img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Lista lateral menor e fixa */
.materiais {
  width: 35%;
  max-height: 550px;       /* altura máxima da lista */
  overflow-y: auto;        /* ativa rolagem vertical */
  background: var(--creme-extraSuave);
  padding: 25px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.materiais h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.materiais ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.materiais li a {
  display: flex;
  align-items: center;
  text-decoration: none; /* remove sublinhado */
  color: inherit;        /* mantém a cor do texto */
  margin-bottom: 15px;
}

.materiais li a:hover {
  text-decoration: underline; /* opcional: sublinha ao passar o mouse */
}

.materiais li img {
  width: 100px;
  height: 80px;
  margin-right: 10px;
  border-radius: 4px;
}

.mais {
  display: block;
  margin: 10px auto 0;
  padding: 8px 12px;
  background: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Section Hero do Ministério de Mulheres Stylling........................................................................... */
::selection {
  columns: var(--white-color);
  background: var(--secondary-color);
}

.blogM-section {
  position: relative;
  width: 100%;
  min-height: 300px;
  background: url("/img/backgrounds/heros/hero-ministerios/Banner\ Paisagem\ Congresso\ Cristão\ De\ Mulheres\ Moderno\ Vermelho\ E\ Branco.png")
    center/cover no-repeat;
  display: grid;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* 🎨 Camada escura com transparência */
.blogM-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  /* preto com 50% de opacidade */
  z-index: 1;
}

.blogM-section .blogM-text {
  position: relative;
  z-index: 1;
  color: var(--white-color);
  text-align: center;
}

.blogM-section .blogM-text {
  color: white;
  text-align: center;
}

.blogM-section .blogM-text .blogM-title {
  font-family: "Allura", cursive;
  font-size: 7.3rem;
  align-items: center;
}

.blogM-section .blogM-text .blogM-subtitle {
  font-size: 40px;
  font-weight: bold;
}

.blogM-section .blogM-text .blogM-subtitle .logo-homeM {
  width: 70px;
}

/* Animações */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes hammer {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-30deg);
  }
}

/* Section Hero do Blog - Bispa Leci Stylling.......................................................................................... */
::selection {
  columns: var(--white-color);
  background: var(--secondary-color);
}

.blogl-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  background: url("../img/backgrounds/heros/hero-blogs/bispa-leci/heroBispa.png")
    center/cover no-repeat;
  display: grid;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* 🎨 Camada escura com transparência */
.blogl-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  /* preto com 50% de opacidade */
  z-index: 1;
}

.blogl-section .blogl-text {
  position: relative;
  z-index: 1;
  color: var(--white-color);
  text-align: center;
}

.blogl-section .blogl-text {
  color: white;
  text-align: center;
}

.blogl-section .blogl-text .blogl-title {
  font-family: "Allura", cursive;
  font-size: 7.3rem;
  align-items: center;
}

.blogl-section .blogl-text .blogl-subtitle {
  font-size: 40px;
  font-weight: bold;
}

.blogl-section .blogl-text .blogl-subtitle .logo-homel {
  width: 70px;
}

/* Animações */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes hammer {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-30deg);
  }
}

/* Section Hero do Blog - Bispo Joacy Stylling................................................................................................................ */
::selection {
  columns: var(--white-color);
  background: var(--secondary-color);
}

.blogj-section {
  position: relative;
  width: 100%;
  min-height: 400px;
  background: url("../img/backgrounds/heros/hero-blogs/bispo-joacy/hero-bispo.jpg")
    center/cover no-repeat;
  display: grid;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* 🎨 Camada escura com transparência */
.blogj-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  /* preto com 50% de opacidade */
  z-index: 1;
}

.blogj-section .blogj-text {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
}

.blogj-section .blogj-text {
  color: white;
  text-align: center;
}

.blogj-section .blogj-text .blogj-title {
  font-family: "Archivo Black", sans-serif;
  font-size: 50px;
  align-items: center;
}

.blogj-section .blogj-text .blogj-subtitle {
  font-size: 30px;
  font-weight: bold;
}

.blogj-section .blogj-text .blogj-subtitle .logo-homej {
  width: 70px;
}

/* Section Ministrações Bispo Joacy................................................... */
.blogJoacy-section {
  max-width: 1300px;
  background: var(--creme-extraSuave);
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Poppins", sans-serif;
}

.blogJoacy-section .busca {
  display: flex;
  justify-content: right;
  margin-bottom: 30px;
}

.blogJoacy-section .busca input {
  width: 300px;
  padding: 10px;
  border: 1px solid rgb(132, 121, 121);
  background: var(--creme-extraSuave);
  border-radius: 6px 0 0 6px;
}

.blogJoacy-section .busca button {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}

.blogJoacy-section .busca button:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.blogJoacy-section .layout {
  display: flex;
  gap: 50px;
}

.blogJoacy-section .conteudo {
  flex: 4.5;
}

.blogJoacy-section .conteudo h1 {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.blogJoacy-section .lateral {
  flex: 1.5;
}

.blogJoacy-section .post {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  background-color: #ffffdd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
}

.blogJoacy-section .post-img {
  width: 300px;
  object-fit: cover;
}

.blogJoacy-section .post-info {
  padding: 20px;
  background-color: #ffffdd;
}

.blogJoacy-section .post-info h3 {
  color: var(--secondary-color);
  font-size: 30px;
  margin-bottom: 10px;
}

.blogJoacy-section .post-info span {
  color: var(--primary-color);
}

.blogJoacy-section .data {
  font-size: 0.9em;
  color: var(--dark-gray-color);
}

.blogJoacy-section .descricao {
  margin: 10px 0;
  margin-bottom: 20px;
  text-align: justify;
}

.blogJoacy-section .btn-leia {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.blogJoacy-section .btn-leia:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.blogJoacy-section .anuncio {
  background-color: white;
  margin-bottom: 50px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.blogJoacy-section .titulo-topo {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 600;
  padding: 10px;
  text-align: center;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.blogJoacy-section .imagem-banner {
  background-image: url("../img/Sitio/terraplanagem.jpg");
  background-size: cover;
  background-position: center;
  height: 240px;
  width: 100%;
  margin-bottom: 10px;
}

.blogJoacy-section .anuncio h3 {
  font-size: 20px;
  color: var(--primary-color);
}

.blogJoacy-section .anuncio p {
  font-size: 1em;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.blogJoacy-section .btn-notices {
  display: inline-block;
  padding: 8px 20px;
  margin-bottom: 15px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.blogJoacy-section .btn-notices:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.blogJoacy-section .anuncio {
  background-color: #ffffdd;
  margin-bottom: 50px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.blogJoacy-section .mais-lidas h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.blogJoacy-section .mais-lidas span {
  color: var(--primary-color);
}

.blogJoacy-section .mais-lidas ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blogJoacy-section .mais-lidas li {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 10px 15px;
  background-color: #ffffdd;
}

.blogJoacy-section .mais-lidas li:hover {
  background-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.blogJoacy-section .numero {
  background-color: var(--secondary-color);
  color: var(--white-color);
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-l);
  margin-right: 15px;
  flex-shrink: 0;
}

.blogJoacy-section .titulo {
  font-size: 1em;
  color: var(--dark-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blogJoacy-section .titulo:hover {
  color: var(--secondary-color);
  font-weight: var(--font-weight--medium);
}

/* 1ª mensagem na integra Bispo Joacy.............................................................................. */
.blogJoacy-section .mensagem-dia {
  width: 60%;
  padding: 20px;
  background-color: var(--light-pink-color);
}

.blogJoacy-section .mensagem-dia h2 {
  font-size: var(--font-size-xl);
  color: var(--primary-color);
  margin-bottom: 5px;
}

.blogJoacy-section .autor-data {
  font-size: var(--font-size-s);
  color: var(--dark-gray-color);
  margin-bottom: 15px;
}

.blogJoacy-section .versiculo {
  font-style: italic;
  background-color: var(--white-color);
  padding: 10px;
  border-left: 4px solid var(--secondary-color);
  margin-bottom: 15px;
}

.blogJoacy-section .versiculo .referencia {
  display: block;
  text-align: right;
  font-weight: bold;
  margin-top: 5px;
}

.blogJoacy-section .reflexao {
  font-size: var(--font-size-m);
  color: var(--dark-color);
  text-align: justify;
  margin-bottom: 30px;
}

.video-msg01prosperidade {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 40px;
}

.video-msg01prosperidade iframe {
  width: 100%;
  max-width: 720px;
  height: 705px;
  border: 6px solid var(--primary-color);
  /* 💙 cor da moldura */
  border-radius: var(--border-radius-m);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

/* Comentário msg blog................................................................ */
.comentarios {
  margin-top: 40px;
  padding: 20px;
  background-color: var(--white-color);
  border-left: 4px solid var(--secondary-color);
  border-radius: var(--border-radius-m);
  max-width: 800px;
}

.comentarios h3 {
  margin-bottom: 15px;
  font-size: --font-size-l;
  color: var(--primary-color);
}

.comentario-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-weight: --font-weight-bold;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-comentario {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: var(--border-radius-s);
}

.btn-enviar {
  padding: 10px 15px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  border-radius: var(--border-radius-m);
  cursor: pointer;
}

.info-login {
  margin-top: 10px;
  font-size: var(--font-size-s);
  color: #555;
}

.info-login a {
  color: var(--secondary-color);
  text-decoration: none;
}

.notificacao {
  margin-left: 10px;
  color: #ff5722;
}

/* Comentários sobre mensagens....................................... */
.lista-comentarios {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comentario {
  display: flex;
  gap: 15px;
  background-color: var(--white-color);
  padding: 15px;
  border-left: 4px solid var(--secondary-color);
  border-radius: var(--border-radius-m);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.conteudo-comentario p {
  margin: 0;
  font-size: var(--font-size-l);
  color: var(--dark-color);
}

.comentario .avatar {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-n);
  flex-shrink: 0;
  gap: 15px;
}

.comentario .conteudo {
  flex: 1.5;
}

.comentario .nome {
  font-weight: var(--font-weight-bold);
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.comentario .data {
  font-weight: normal;
  color: #888;
  font-size: 0.9em;
}

.comentario .texto {
  font-size: 1em;
  color: #444;
}

/* Section Hero do Blog Stylling................................................................ */
::selection {
  columns: var(--white-color);
  background: var(--secondary-color);
}

.blog-section {
  position: relative;
  width: 100%;
  min-height: 400px;
  background: url("../img/backgrounds/heros/hero-blogs/redencao-oficial/img-todos2.jpg")
    center/cover no-repeat;
  display: grid;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* 🎨 Camada escura com transparência */
.blog-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  /* preto com 50% de opacidade */
  z-index: 1;
}

.blog-section .blog-text {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
}

.blog-section .blog-text {
  color: white;
  text-align: center;
}

.blog-section .blog-text .blog-title {
  font-size: 55px;
  align-items: center;
}

.blog-section .blog-text .blog-subtitle {
  font-size: 25px;
  font-weight: 600;
}

.blog-section .blog-text .logo-home {
  width: 70px;
}

/* Section Carrossel de fotos  Retiro Inverno 2025................................................................................................................ */
.retiroInverno2025-section {
  background: var(--light-pink-color);
  padding: 120px 80px 40px;
}

.retiroInverno2025-section .heading {
  font-size: var(--font-size-xxxll);
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
}

.retiroInverno2025-section .heading span {
  color: var(--secondary-color);
}

.retiroInverno2025-section .retiroInverno2025-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.retiroInverno2025-section .retiroInverno2025-box .retiroInverno2025-detail {
  display: none;
}

.retiroInverno2025-section
  .retiroInverno2025-box
  .retiroInverno2025-detail.active {
  display: block;
}

.retiroInverno2025-section .retiroInverno2025-box .year {
  font-size: 5rem;
  -webkit-text-stroke: 0.2rem var(--primary-color);
  color: transparent;
  line-height: 1;
  transition: 0.2s;
}

.retiroInverno2025-section .retiroInverno2025-box .year:hover {
  -webkit-text-stroke: 0.07rem var(--secondary-color);
}

.retiroInverno2025-section .retiroInverno2025-box h3 {
  font-size: var(--font-size-xl);
  margin: 0.8rem 0 2rem;
}

.retiroInverno2025-section .retiroInverno2025-box p {
  font-size: var(--font-size-k);
  text-align: justify;
}

.retiroInverno2025-section .retiroInverno2025-box .call {
  margin: 2rem 0;
  color: var(--primary-color);
  border-bottom: 0.1rem solid var(--secondary-color);
  padding-bottom: 2rem;
}

.retiroInverno2025-section
  .retiroInverno2025-box
  .social-link-retiro
  .social-link {
  position: relative;
  display: inline-flex;
  padding: 0.5rem;
  gap: 2rem;
  font-size: var(--font-size-xl);
  color: var(--secondary-color);
  border-radius: 50%;
  background: var(--primary-color);
  margin-bottom: 40px 40px;
  transition: 0.2s ease;
}

.retiroInverno2025-section
  .retiroInverno2025-box
  .social-link-retiro
  .social-link:hover {
  color: var(--primary-color);
  background: var(--secondary-color);
}

.retiroInverno2025-section .retiroInverno2025-box .retiroInverno2025-carousel {
  width: 80%;
  height: 40rem;
  border-radius: var(--border-radius-s);
  overflow: hidden;
}

.retiroInverno2025-section
  .retiroInverno2025-box
  .retiroInverno2025-carousel
  .img-slide {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 2rem;
  height: inherit;
  transition: 0.5s;
}

.retiroInverno2025-section
  .retiroInverno2025-box
  .retiroInverno2025-carousel
  .img-item {
  height: inherit;
}

.retiroInverno2025-section
  .retiroInverno2025-box
  .retiroInverno2025-carousel
  .img-item
  img {
  display: block;
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: 1rem;
  aspect-ratio: 4 / 5;
  /* proporção típica de retratos */
  overflow: hidden;
}

.retrato-alterado {
  object-fit: contain;
  /* mostra a imagem inteira */
  background-color: #000;
  /* ou outro fundo para preencher o espaço */
  padding: 1rem;
}

.retiroInverno2025-section .retiroInverno2025-box .navigation {
  text-align: center;
}

.retiroInverno2025-section .retiroInverno2025-box .navigation button {
  display: inline-flex;
  padding: 0.2rem;
  background: var(--secondary-color);
  border-radius: var(--border-radius-r);
  font-size: var(--font-size-xxll);
  color: var(--primary-color);
  cursor: pointer;
}

.retiroInverno2025-section
  .retiroInverno2025-box
  .retiroInverno2025-carousel
  .navigation
  .arrow-right {
  margin-left: 1.5rem;
}

/* Seção principal */
.under-construction {
  background: #f9f9f9;
  padding: 5rem 1rem;
  text-align: center;
  font-family: Arial, sans-serif;
}

.construction-container {
  max-width: 600px;
  margin: 0 auto;
}

.under-construction h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.under-construction p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
}

/* Bonequinho */
.worker {
  position: relative;
  width: 120px;
  height: 200px;
  margin: 0 auto;
  animation: swing 2s infinite ease-in-out;
}

/* Cabeça */
.worker .head {
  width: 60px;
  height: 60px;
  background: #ffd89b;
  border-radius: 50%;
  margin: 0 auto;
}

/* Corpo */
.worker .body {
  width: 40px;
  height: 70px;
  background: #3498db;
  margin: 0 auto;
  border-radius: 10px;
}

/* Braços */
.worker .arms {
  position: absolute;
  top: 70px;
  left: 0;
  width: 120px;
  height: 20px;
  background: #ffd89b;
  border-radius: 10px;
}

/* Pernas */
.worker .legs {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 60px;
  height: 60px;
  background: #2ecc71;
  border-radius: 10px;
  transform: translateX(-50%);
}

/* Ferramenta */
.worker .tool {
  position: absolute;
  top: 60px;
  right: -20px;
  width: 40px;
  height: 10px;
  background: #555;
  border-radius: 5px;
  transform-origin: left center;
  animation: hammer 1s infinite alternate;
}

/* Animações */
@keyframes swing {
  0% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}

@keyframes hammer {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(30deg);
  }
}

/* Container dos testemunhos........................................ */
#lista-testemunhos {
  margin-top: 2rem;
}

/* Estilo direto no article, ignorando Bootstrap */
#lista-testemunhos article {
  border: 1px solid #ddd !important;
  border-radius: 8px !important;
  background: #fff !important;
  padding: 1.25rem !important;
  margin-bottom: 1.25rem !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1) !important;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease !important;
}

#lista-testemunhos article:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

#lista-testemunhos article h3 {
  margin: 0 0 0.5rem !important;
  font-size: 1.2rem !important;
  color: #333 !important;
  font-weight: 700 !important;
}

#lista-testemunhos article blockquote {
  margin: 0 0 1rem !important;
  font-style: italic !important;
  color: #555 !important;
  border-left: 4px solid #f57c00 !important;
  padding-left: 0.75rem !important;
}

#lista-testemunhos article small {
  color: #888 !important;
  font-size: 0.85rem !important;
}

/* Testimonials section styling............................................... */
/* ====== Section geral ====== */
.testimonials-section {
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.testimonials-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #333;
  position: relative;
}

.testimonials-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #f57c00;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* ====== Slider ====== */
.slider-container {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial {
  width: 100%;
  max-width: 500px;
  height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  flex-shrink: 0; /* garante 1 por vez */
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-5px);
}

/* ====== Imagem ====== */
.testimonial .user-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #f57c00;
}

/* ====== Nome ====== */
.testimonial .name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.75rem;
}

/* ====== Feedback ====== */
.testimonial .feedback {
  line-height: 1.5;
  max-height: calc(1.5em * 4);
  overflow: hidden;
  position: relative;
}

.testimonial .feedback::after {
  content: "...";
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fff;
  padding-left: 5px;
}

/* ====== Botão ====== */
.testimonial .buttons .button {
  padding: 0.6rem 1.2rem;
  margin-top: auto;
  background: #f57c00;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.testimonial .buttons .button:hover {
  background-color: #fff;
  color: var(--secondary-color);
  border: 1px solid var(--primary-color);
}

/* ====== Swiper controls ====== */
.swiper-pagination {
  margin-top: 1rem;
}

.swiper-pagination-bullet {
  background: var(--primary-color) !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #f57c00 !important;
  opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--primary-color) !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: var(--secondary-color) !important;
}

/* Podcasts Bispa Leci section styling............................................... */
.podcast-gallery {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.podcast-gallery h2 {
  margin-bottom: 30px;
  font-size: 3em;
}

.podcast-gallery p {
  margin-bottom: 50px;
}

.podcast-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.podcast-item {
  width: 250px;
  cursor: pointer;
  transition: transform 0.3s;
}

.podcast-item img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.podcast-item p {
  margin-top: 10px;
  font-weight: bold;
  color: #333;
}

.podcast-item:hover {
  transform: scale(1.05);
}

.mensagem-podcast {
  margin-top: 40px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: none;
}

/* podcast mensagens................................................................. */
.podcast-section {
  background-color: #fff;
  padding: 40px 20px;
  margin: 40px auto;
  max-width: 800px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.podcast-section h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.podcast-section .meta {
  color: #666;
  font-size: 0.9em;
  margin-bottom: 20px;
}

.podcast-section audio {
  width: 100%;
  margin-bottom: 20px;
}

.podcast-section .episodio-titulo {
  color: var(--secondary-color);
}

.podcast-section .description h3 {
  margin-top: 0;
  color: var(--color-primary);
}

.podcast-section .description p {
  line-height: 1.6;
  color: var(--primary-color);
  text-align: justify;
}

/* modal.................................................. */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 900px;
  height: auto; /* cresce conforme o conteúdo */
  max-height: 90vh; /* ocupa até 90% da tela */
  overflow-y: auto; /* adiciona scroll se passar do limite */
  position: relative;
}

.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
}

.btn-voltar {
  display: block;
  margin: 20px auto 0;
  background: var(--secondary-color);
  border: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
}

.btn-voltar:hover {
  background: var(--primary-color);
  border: var(--secondary-color);
}

.episodio-titulo {
  display: flex;
  align-items: center; /* alinha verticalmente */
  gap: 10px; /* espaço entre imagem e texto */
  font-size: 1.8em;
}

.preleitor-foto {
  width: 100px; /* tamanho pequeno da foto */
  height: 100px;
  border-radius: 50%; /* deixa a foto redonda */
  object-fit: cover; /* ajusta a imagem sem distorcer */
  border: 2px solid var(--primary-color);
}

/* Notícias section styling............................................... */
.noticias-carousel {
  max-width: 1100px;
  margin: 24px auto;
  padding: 12px 40px 0 40px;
  position: relative;
  font-family: "Wix Madefor Display", sans-serif;
}

.noticias-carousel h2 {
  font-size: 32px;
  margin-bottom: 1.25rem;
  color: var(--primary-color, #333);
  font-weight: 800;
}

.carousel-container-noticias {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.carousel-track-noticias {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.noticia-item-noticias {
  display: block;
  background: var(--creme-extraSuave, #fff);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin: 6px;
  padding: 16px;
  text-align: left;
  min-width: 300px;
  max-width: 300px;
  height: 500px;
  flex: 0 0 auto;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.noticia-item-noticias img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 8px;
}

.noticia-item-noticias:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
}

.btn-saiba-mais {
  display: block; /* 🔹 sempre visível */
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: var(--primary-color);
  border-color: var(--secondary-color);
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.btn-saiba-mais:hover {
  color: var(--secondary-color);
  border-color: var(--primary-color);
}

.carousel-btn-noticias {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #f3961c;
  color: #580002;
  font-size: 1.6em;
  padding: 8px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 10;
  pointer-events: auto; /* garante clique */
}

.carousel-btn-noticias.prev-noticias {
  left: 4px;
}
.carousel-btn-noticias.next-noticias {
  right: 4px;
}

/* Notícia1 section styling............................................... */
.noticia1 {
  background: #fff;
  padding: 60px 20px;
  font-family: "Wix Madefor Display", sans-serif;
  color: #3a1f0f;
  max-width: 1000px; /* mesma largura da imagem */
  margin: 0 auto; /* centraliza na página */
}

.titulo-noticia1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-align: center;
}

.titulo-noticia1 span {
  font-size: 36px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 15px;
  text-align: center;
}

.subtitulo {
  font-size: 20px;
  text-align: justify;
  margin-bottom: 40px;
  color: var(--color-primary);
}

.imagem-destaque img {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 40px;
  display: block;
  border-radius: 8px;
}

.mensagem-noticia1 p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
  color: var(--color-primary);
}

.versiculo blockquote {
  max-width: 1000px;
  font-size: 18px;
  font-style: italic;
  background: #fffbe6;
  color: var(--color-primary);
  padding: 20px;
  border-left: 5px solid #c47b00;
  margin: 30px 0;
}

.versiculo span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #7a4e00;
}

.versiculo p {
  font-size: 18px;
  line-height: 1.6;
}

.galeria-noticia1 {
  background: #fff;
  padding: 20px 200px;
  font-family: "Wix Madefor Display", sans-serif;
  color: #3a1f0f;
}

.titulo-galeria {
  font-size: 32px;
  font-weight: 800;
  color: #c47b00;
  text-align: center;
  margin-bottom: 10px;
}

.subtitulo {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
}

.grid-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.grid-galeria img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.grid-galeria img:hover {
  transform: scale(1.05);
}
.grid-galeria5 {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(300px, 1fr)
  ); /* aumentei para dar mais espaço */
  gap: 20px;
}

.grid-galeria5 img {
  width: 100%;
  aspect-ratio: 16 / 9; /* força proporção paisagem */
  object-fit: cover; /* corta a imagem para caber sem distorcer */
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.grid-galeria5 img:hover {
  transform: scale(1.05);
}

.grid-galeria video,
.grid-galeria iframe {
  width: 100%;
  aspect-ratio: 16 / 9; /* mantém formato paisagem */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border: 4px solid #333; /* moldura escura */
  position: relative;
}

/* Ícone de "play" sobreposto */
.grid-galeria video::after,
.grid-galeria iframe::after {
  content: "▶";
  font-size: 48px;
  color: white;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; /* não atrapalha o clique */
}

/* Notícia2 section styling............................................... */
.versiculo-noticia2 blockquote {
  max-width: 1000px;
  font-size: 18px;
  font-style: italic;
  text-align: justify;
  background: #fffbe6;
  padding: 20px;
  border-left: 5px solid #c47b00;
  margin: 30px 0;
}

.versiculo-noticia2 span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #7a4e00;
}

.versiculo-noticia2 p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.6;
  text-align: justify;
}

/* styling galeria do Blog Oficial */
.search {
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.search img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.search .content {
  color: white;
  text-align: center;
  position: relative;
  z-index: 2;
}

.search h1 {
  font-size: 2.6rem;
  font-weight: 600;
}

.search p {
  font-size: 1.5rem;
  margin-top: 8px;
}

.search .search-box {
  height: 55px;
  margin: 45px 0;
  position: relative;
}

.search-box i {
  position: absolute;
  left: 20px;
  top: 50%;
  font-size: 1.4rem;
  color: #8d8d8d;
  transform: translateY(-50%);
}

input,
button,
i {
  outline: none;
  border: none;
  border-radius: 5px;
}

.search-box input {
  width: 100%;
  height: 100%;
  font-size: 1.1rem;
  padding-left: 55px;
}

.gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery .images {
  gap: 15px;
  max-width: 95%;
  margin-top: 40px;
  columns: 5 340px;
}

.images .card {
  display: flex;
  overflow: hidden;
  position: relative;
  list-style: none;
  margin-bottom: 14px;
  border-radius: 4px;
}

.images .card .details {
  position: absolute;
  bottom: -100px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  transition: bottom 0.1s ease;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.images .card:hover .details {
  bottom: 0;
}

.photographer {
  color: #fff;
  display: flex;
  align-items: center;
}

.photographer i {
  font-size: 1.4rem;
  margin-right: 10px;
}

.details .photographer span {
  font-size: 1.05rem;
}

.card .details button {
  cursor: pointer;
  padding: 3px 8px;
  font-size: 1rem;
}

.images img {
  width: 100%;
}

.gallery .load-more {
  margin: 50px 0;
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 12px 27px;
  background: #8a6cff;
}

.lightbox {
  position: fixed;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.65);
}

.lightbox .wrapper {
  position: absolute;
  left: 50%;
  top: 40%;
  width: 100%;
  padding: 20px;
  max-width: 850px;
  background: #fff;
  border-radius: 5px;
  transform: translate(-50%, -50%);
}

.wrapper header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .photographer {
  color: #333;
}

header .photographer i {
  font-size: 1.7rem;
}

header .photographer span {
  font-size: 1rem;
}

header .buttons i {
  width: 40px;
  height: 40px;
  color: #fff;
  cursor: pointer;
  text-align: center;
  line-height: 40px;
  background: var(--primary-color);
  font-size: 1rem;
  display: inline-block;
}

.buttons i:last-child {
  margin-left: 10px;
  background: var(--secondary-color);
}

.preview-img {
  display: flex;
  margin-top: 25px;
  justify-content: center;
}

.wrapper .preview-img .img {
  max-height: 65vh;
  max-width: 90vh;
}

.preview-img .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Styling ministração tema do retiro de 2025 - Blog Oficial */
/* ===== SEÇÃO GERAL ===== */
/* ===============================
   SEÇÃO FRUTO DO ESPÍRITO
================================= */

.estudo-fruto {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #ffffff;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

.estudo-fruto .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===============================
   HEADER
================================= */

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.base-biblica {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 20px;
}

blockquote {
  font-style: italic;
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-left: 4px solid #00e0b8;
  border-radius: 10px;
  max-width: 1100px;
  margin: 20px auto;
  line-height: 1.6;
}

/* ===============================
   CARD DE DESTAQUE
================================= */

.destaque-card {
  max-width: 1100px;
  margin: 0 auto 60px auto;
  text-align: center;
  background: rgba(0, 224, 184, 0.08);
  border: 1px solid rgba(0, 224, 184, 0.4);
}

.destaque-card h3 {
  color: #00e0b8;
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.destaque-card p {
  font-size: 1rem;
  line-height: 1.7;
}

/* ===============================
   GRID DOS FRUTOS
================================= */

.fruto-lista {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* CARD INDIVIDUAL */

.fruto-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fruto-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 224, 184, 0.6);
}

/* TÍTULO DO FRUTO */

.fruto-card h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #00e0b8;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* DESCRIÇÃO */

.fruto-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* ===============================
   CARD DE CONCLUSÃO
================================= */

.conclusao-card {
  max-width: 1100px;
  margin: 60px auto 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 224, 184, 0.5);
}

.conclusao-card h3 {
  color: #00e0b8;
  margin-bottom: 15px;
  font-size: 1.7rem;
}

.conclusao-card p {
  font-size: 1rem;
  line-height: 1.7;
}

/* ===============================
   SEÇÃO CONSELHEIROS
================================= */

.conselheiros-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #16222a, #3a6073);
  color: #ffffff;
}

/* CENTRALIZAÇÃO E LIMITE PADRÃO */

.conselheiros-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.lideranca {
  margin-bottom: 70px;
  text-align: center;
}

.lideranca h3 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #00e0b8;
}

/* GRID DOS BISPOS */

.bispos-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* CARD BISPO */

.bispo-card {
  background: rgba(0, 224, 184, 0.12);
  border: 2px solid rgba(0, 224, 184, 0.7);
  padding: 35px 30px;
  border-radius: 22px;
  text-align: center;
  width: 260px;
  transition: 0.3s ease;
}

.bispo-card:hover {
  transform: translateY(-8px);
  background: rgba(0, 224, 184, 0.18);
}

/* FOTO BISPO */

.bispo-card img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #00e0b8;
}

/* NOME */

.bispo-card h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

/* CARGO */

.bispo-card span {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ===============================
   CONSELHEIROS
================================= */

.conselheiros-area h3 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 40px;
}

.conselheiros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

/* CARD CONSELHEIRO */

.conselheiro-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 25px 25px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.conselheiro-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 224, 184, 0.7);
  background: rgba(255, 255, 255, 0.12);
}

.conselheiro-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #00e0b8;
}

.conselheiro-card h4 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.conselheiro-card span {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Styling Videos Carnaval - 2025 ================================================================= */
.video-section {
  padding: 40px;
  background-color: #f9f9f9;
}

.video-section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
  color: #333;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.video-card {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.video-card video {
  width: 100%;
  border-radius: 6px;
}

.video-card p {
  margin-top: 10px;
  font-size: 1rem;
  color: #555;
}

/* Styling da Ministração do Aniversário de 2025 da nossa Igreja========================================== */
.aniversario {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1b1b2f, #162447);
  color: #fff;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.tema h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.versiculo {
  font-size: 1.3rem;
  opacity: 0.9;
}

.versiculo span {
  display: block;
  margin-top: 5px;
  font-weight: bold;
  color: #ffd369;
}

.ministracao {
  margin: 50px 0;
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.ministracao .destaque {
  margin-top: 15px;
  font-weight: bold;
  color: #ffd369;
}

.citacao {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ffd369;
  margin: 20px 0 5px;
}


.conclusao {
  margin-top: 45px; /* cria espaço antes do destaque */
}

.conclusao strong {
  color: #ffd369;
}

.ministracao h3 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ffd369;
  margin: 20px 0 5px;
  margin-bottom: 25px;
}

.ministracao p {
  line-height: 1.7;
  margin-bottom: 12px;
}

.lideranca h3,
.pastores h3,
.preleitores h3 {
  margin: 60px 0 30px;
  font-size: 1.8rem;
}

.bispos {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center; /* centraliza o conjunto */
  gap: 30px;
}

.card {
  background: rgba(255,255,255,0.08);
  padding: 20px;
  border-radius: 15px;
  transition: 0.4s ease;
  backdrop-filter: blur(8px);
}

.pastores .card {
  max-width: 220px;
  width: 100%;
}

.bispos .card {
  max-width: 280px;   /* controla o tamanho */
  width: 100%;
}

.bispos .card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: block;
}

.card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 10px;
  border: 2px solid #ffd369;
  box-shadow: 0 0 25px rgba(255,211,105,0.4);
}

.card:hover {
  transform: translateY(-8px);
}

.destaque-lider {
  border: 2px solid #ffd369;
  box-shadow: 0 0 25px rgba(255,211,105,0.4);
}

/* Animação suave */
.card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.preleitores-flex {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.preleitores-flex .card {
  max-width: 260px;
  width: 100%;
}

.preleitores-flex .card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: block;
}

/* Responsividade */
@media (max-width: 768px) {
  .tema h2 {
    font-size: 2rem;
  }

  .bispos {
    flex-direction: column;
    align-items: center;
  }
}

/* Styling da ministração do culto de Mulheres Jova Rural 2025 ================================================ */
.ministracao {
  padding: 20px;
  background: var(--white-color);
  display: flow-root;
}

.container-ministerio {
  max-width: 1200px;
  margin: auto;
  background: var(--creme-suave);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.ministracao h1 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 32px;
}

.subtitulo {
  text-align: center;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.versiculo {
  background: linear-gradient(135deg, var(--primary-color), var(--color-primary));
  color: white;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  font-size: 20px;
  margin-bottom: 40px;
}

.conteudo-min h2 {
  margin-top: 40px;
  color: var(--primary-color);
}

.conteudo-min ul {
  margin: 15px 0 20px 20px;
}

.conteudo-min li {
  margin-bottom: 8px;
}

.frase-impacto {
  margin-top: 40px;
  padding: 25px;
  background: var(--creme-extraSuave);
  border-left: 5px solid #c2185b;
  font-weight: bold;
  font-size: 18px;
}

.desafio {
  margin-top: 20px;
  padding: 20px;
  background: var(--creme-extraSuave);
  border-radius: 12px;
}

.encerramento {
  margin-top: 30px;
  padding: 20px;
  text-align: center;
  font-weight: 600;
  color: var(--primary-color);
}

hr {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #fff;
}

/* Cards da Bispa e Preleitora Culto de Mulheres Jova Rural 2025 */
.cards-mulheres {
  display: flex;
  gap: 50px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 30px 20px;
  margin-top: 0;
}

.card-instagram {
  position: relative;
  width: 350px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  cursor: pointer;
}

.card-instagram img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card-instagram:hover img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: #faf6fb;
}

.card-overlay h2 {
  margin: 0;
  font-size: 22px;
}

.card-overlay p {
  font-weight: 600;
  color: #ffd700;
}

.card-overlay span {
  font-size: 14px;
  opacity: 0.9;
}

.cards-evento {
  padding: 20px;
  background: var(--white-color);
}

.container-cards {
  max-width: 1200px;
  margin: auto;
  background: var(--creme-suave);
  padding: 50px 40px;
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.titulo-cards {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
  color: var(--primary-color);
  position: relative;
}

.titulo-cards::after {
  content: "";
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #c2185b, #ffd700);
  display: block;
  margin: 15px auto 0;
  border-radius: 10px;
}

/* Galeria de Fotos do Culto de Mulheres Jova Rural 2025 */
.galeria-culto {
  padding: 60px 20px;
  text-align: center;
}

.galeria-culto h2 {
  margin-bottom: 40px;
  font-size: 32px;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.galeria-grid img {
  width: 100%;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.galeria-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Lightbox */

.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  text-align: center;
}

.lightbox-img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 15px;
}

.fechar {
  position: absolute;
  top: 30px;
  right: 50px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

/* PAGINA EM CONSTRUÇÃO DA MINISTRAÇÃO DO CULTO DE MULHERES EM AMERICANA================================== */
.em-construcao {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* ocupa toda a altura da tela */
  background: var(--creme-suave);
  text-align: center;
}

.construcao-wrapper {
  max-width: 600px;
}

.bonequinha {
  font-size: 5rem;
  margin-bottom: 1rem;
  animation: balanco 1s infinite alternate ease-in-out;
}

@keyframes balanco {
  from { transform: rotate(-10deg); }
  to   { transform: rotate(10deg); }
}

.construcao-wrapper h2 {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.construcao-wrapper p {
  font-size: 1.2rem;
  color: var(--primary-color);
}




/* Responsividade para diversas telas====================================================================== */
@media (min-width: 1025px) and (max-width: 1400px) {
  #pastors .pastors__grid {
    grid-template-columns: repeat(5, 1fr); /* 5 colunas */
    gap: 1rem;
  }
}

@media (min-width: 1401px) {
  #pastors .pastors__grid {
    grid-template-columns: repeat(7, 1fr);
  }
}

@media (min-width: 1200px) {
  .header {
    height: 120px;
    padding: 0 4rem;
  }
  .menu-toggle i {
    font-size: 50px;
    margin-left: 10rem;
  }
  .social-icons {
    margin-right: 10rem;
  }
  .nav-links {
    margin-left: 12rem;
  }

  /*-------------- Welcome ------------- */
  .welcome .section-content {
    gap: 40px; /* mais respiro */
  }
  .welcome .welcome-details h2 {
    font-size: 2.4rem; /* título maior */
  }

  /*-------------- About ------------- */
  .about-details {
    margin-left: 100px; /* reduz margem em tablets */
  }
  .section-title {
    font-size: 2rem;
  }
  .text {
    font-size: 1.1rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .header {
    padding: 0 1.5rem;
  }
  .menu-toggle i {
    font-size: 40px;
    margin-left: 2rem;
  }
  .social-icons {
    margin-right: 2rem;
    gap: 15px;
  }
  .nav-links {
    margin-left: 4rem;
  }
  .nav-links a {
    font-size: 1.1rem;
  }

  /*-------------- Welcome ------------- */
  .welcome .section-content {
    flex-direction: row;
    gap: 15px;
  }

  .welcome .welcome-details {
    flex: 1.5; /* reduz espaço do texto */
    max-width: 600px;
  }

  .welcome .welcome-image-wrapper {
    flex: 1; /* imagem ganha mais espaço */
  }

  .welcome .welcome-details h2 {
    font-size: 2rem;
  }

  /*-------------- Pastors ------------- */
  #pastors .pastors__grid {
    grid-template-columns: repeat(3, 1fr); /* 3 colunas */
    gap: 1.2rem;
  }

  .pastors__card img {
    width: 160px;
    height: 160px;
  }

  .pastors__section {
    font-size: 32px;
  }

  .pastors_subheader {
    font-size: 16px;
  }

  /* ------------ Weekly-agenda ----------------------- */
  .agenda__grid {
    grid-template-columns: repeat(2, minmax(250px, 1fr)); /* 2 colunas */
    gap: 1.5rem;
  }

  .agenda__title {
    font-size: 2.4rem;
  }

  .agenda__subtitle {
    font-size: 1rem;
    white-space: normal; /* permite quebra de linha */
    text-overflow: unset;
    overflow: visible;
  }

  /* ------------ Contribution --------------- */
  .contribution-hero {
    min-height: 40vh;
    padding: 4rem 1rem;
  }
  .contribution-columns__container {
    grid-template-columns: 1fr; /* vira uma coluna só */
    text-align: center;
  }
  .column.right .call {
    margin-top: 2rem;
    font-size: 1.5rem;
  }
  .contribution-hero {
    min-height: 40vh; /* reduz altura em telas menores */
    padding: 4rem 1rem;
  }

  /* ------------ Hero ----------------------- */
  .hero__content h1 {
    font-size: 2rem;
  }
  .hero__content p {
    font-size: 1.2rem;
    text-transform: uppercase !important;
  }

  /*-------------- Endereços ------------- */
  .info-section {
    padding: 40px 80px; /* reduz padding em tablets */
  }
  .social-icons {
    font-size: 28px;
  }

  .reunioes-section {
    padding: 20px 60px; /* menos espaço lateral */
  }

  .reunioes-title {
    font-size: 24px;
  }

  .reuniao-item {
    font-size: 15px;
  }

  .reuniao-item span {
    font-size: 22px;
  }
  .info-uteis {
    padding: 30px 80px; /* menos espaço lateral */
  }

  .info-uteis h2 {
    font-size: 24px;
  }

  .info-left,
  .info-right {
    min-width: auto; /* libera largura */
  }

  .info-item {
    font-size: 15px;
  }
  .servicos {
    padding: 30px 80px; /* menos espaço lateral */
  }

  .servicos h2 {
    font-size: 24px;
  }

  .servicos-imagens img {
    width: 400px;
    height: 260px;
  }

  .servico-item {
    font-size: 15px;
  }

  /*------------- Hero Culto da Família ---------------- */
  .hero-family {
    padding: 12rem 2rem 3rem;
    background-position: center top;
  }

  .hero-family p {
    font-size: 1.4rem;
  }

  .hero-family h2 {
    font-size: 2rem;
    color: var(--primary-color); /* mostra o título */
  }

  .family-restoration__container {
    flex-direction: column-reverse;
    text-align: center; /* opcional, para centralizar */
  }

  /*------------- Hero Culto da Prosperidade ---------------- */
  .hero-prosperity {
    padding: 12rem 2rem 3rem;
    background-position: center top;
  }

  .hero-prosperity p {
    font-size: 1.4rem;
  }

  .hero-prosperity h2 {
    font-size: 2rem;
    color: var(--primary-color); /* mostra o título */
  }

  /*------------- Hero Culto da Cura ---------------- */
  .hero-cura {
    padding: 12rem 2rem 3rem;
    background-position: center top;
  }

  .hero-cura p {
    font-size: 1.4rem;
  }

  .hero-cura h2 {
    font-size: 2rem;
    color: var(--primary-color); /* mostra o título */
  }

  /*------------- Hero Culto da Busca ---------------- */
  .hero-busca {
    padding: 12rem 2rem 3rem;
    background-position: center top;
  }

  .hero-busca p {
    font-size: 1.4rem;
  }

  .hero-busca h2 {
    font-size: 2rem;
    color: var(--primary-color); /* mostra o título */
  }

  /*------------- Hero Circulo de Oração ---------------- */
  .hero-oracao {
    padding: 12rem 2rem 3rem;
    background-position: center top;
  }

  .hero-oracao p {
    font-size: 1.4rem;
  }

  .hero-oracao h2 {
    font-size: 2rem;
    color: var(--primary-color); /* mostra o título */
  }

  /*------------- Hero Culto de Libertação ---------------- */
  .hero-libertacao {
    padding: 12rem 2rem 3rem;
    background-position: center top;
  }

  .hero-libertacao p {
    font-size: 1.4rem;
  }

  .hero-libertacao h2 {
    font-size: 2rem;
    color: var(--primary-color); /* mostra o título */
  }

  /*------------- Hero Culto de Jovens ---------------- */
  .hero-jovens {
    padding: 12rem 2rem 3rem;
    background-position: center top;
  }

  .hero-jovens p {
    font-size: 1.4rem;
  }

  .hero-jovens h2 {
    font-size: 2rem;
    color: var(--primary-color); /* mostra o título */
  }

  /*------------- Hero Culto de Casais ---------------- */
  .hero-casais {
    padding: 12rem 2rem 3rem;
    background-position: center top;
  }

  .hero-casais p {
    font-size: 1.4rem;
  }

  .hero-casais h2 {
    font-size: 2rem;
    color: var(--primary-color); /* mostra o título */
  }

  /*------------- Blog Bispo Joacy ---------------- */
  /* Hero Section */
  .blogj-section .blogj-text .blogj-title {
    font-size: 36px;
    line-height: 1.3;
  }

  .blogj-section .blogj-text .blogj-subtitle {
    font-size: 22px;
  }

  .blogj-section .blogj-text .blogj-subtitle .logo-homej {
    width: 60px;
  }

  /* Layout principal */
  .blogJoacy-section {
    padding: 30px 15px;
  }

  .blogJoacy-section .layout {
    flex-direction: column; /* conteúdo e lateral empilhados */
    gap: 30px;
  }

  .blogJoacy-section .conteudo h1 {
    font-size: 32px;
  }

  /* Busca */
  .blogJoacy-section .busca {
    justify-content: center;
  }

  .blogJoacy-section .busca input {
    width: 70%; /* ocupa boa parte da largura */
  }
  .blogJoacy-section .busca button {
    width: auto;
    padding: 10px 15px;
  }

  /* Posts */
  .blogJoacy-section .post {
    flex-direction: column;
    align-items: center;
  }

  .blogJoacy-section .post-img {
    width: 100%;
    max-height: 220px;
  }
  .blogJoacy-section .post-info h3 {
    font-size: 24px;
  }

  /* Mais lidas */
  .blogJoacy-section .mais-lidas h3 {
    font-size: 22px;
  }

  .blogJoacy-section .numero {
    width: 35px;
    height: 35px;
    font-size: var(--font-size-m);
  }

  /*------------- Blog Bispa Leci ---------------- */
  .blogl-section .blogl-text .blogl-title {
    font-size: 36px;
  }

  .blogl-section .blogl-text .blogl-subtitle {
    font-size: 22px;
  }

  .blogl-section .blogl-text .blogl-subtitle .logo-homel {
    width: 60px;
  }
}

@media (max-width: 768px) {
  .header {
    height: 80px;
    padding: 0 1rem;
  }
  .logo {
    height: 60px;
  }
  .menu-toggle i {
    font-size: 32px;
    margin-left: 0; /* remove margem exagerada */
  }
  .social-icons {
    gap: 10px;
    margin-right: 0; /* remove margem exagerada */
  }
  .social-icons a {
    font-size: 1.2rem;
  }
  .navbar {
    position: fixed;
    top: 80px; /* abaixo da header menor */
    left: 0;
    width: 100%;
    height: auto;
    background: var(--creme-suave);
    display: none;
    padding: 1rem;
  }
  .navbar.active {
    display: block;
  }
  .nav-links {
    margin-left: 0;
  }
  .nav-links a {
    font-size: 1rem;
    padding: 0.6rem 0;
  }
  .dropdown {
    padding-left: 1rem;
  }

  /*-------------- Carousel ------------- */
  .carousel {
    height: 70vh; /* reduz altura */
  }
  .carousel button {
    font-size: 1.5rem;
    padding: 0.3rem 0.8rem;
  }

  /*-------------- Welcome ------------- */
  .welcome .section-content {
    flex-direction: column; /* empilha imagem e texto */
    gap: 30px; /* aumenta o espaço entre eles */
    text-align: center; /* centraliza conteúdo */
    flex-direction: column-reverse; /* no celular: texto em cima, imagem embaixo */
  }
  .welcome .welcome-details {
    max-width: 100%; /* ocupa toda largura */
    flex: unset; /* remove proporção fixa */
  }
  .welcome .welcome-details h2 {
    margin-top: 3rem;
    font-size: 1.8rem; /* reduz título */
  }
  .welcome .welcome-details .text {
    font-size: var(--font-size-s); /* texto menor */
    text-align: justify; /* mais legível em telas pequenas */
  }
  .welcome .welcome-image-wrapper .welcome-image {
    max-width: 280px; /* imagem menor */
  }

  /*-------------- Pastors ------------- */
  #pastors .pastors__grid {
    grid-template-columns: repeat(2, 1fr); /* 2 colunas */
    gap: 1.2rem;
  }

  .pastors__card img {
    width: 180px;
    height: 180px;
  }

  .pastors__section {
    font-size: 28px;
  }

  .pastors_subheader {
    font-size: 15px;
  }

  /* ------------ Weekly-agenda ----------------------- */
  .agenda__grid {
    grid-template-columns: repeat(
      2,
      minmax(220px, 320px)
    ); /* tamanho fixo/bonito pros cards */
    gap: 1.2rem;
  }

  .agenda__title {
    font-size: 2rem;
  }

  .agenda__subtitle {
    font-size: 0.95rem;
    /* ←←← essas 3 linhas resolvem 100% */
    white-space: normal; /* permite quebra de linha */
    overflow: visible; /* não corta o texto */
    text-overflow: unset; /* remove as reticências */
  }

  .agenda__card img {
    height: 220px; /* imagem menor */
  }

  /* ------------ Contact prayer ---------------- */
  .section-content {
    grid-template-columns: 1fr; /* vira uma coluna só */
    text-align: center;
  }
  .contact-info .details {
    text-align: center;
  }

  /* ------------ Contribution ---------------- */
  .contribution-hero {
    min-height: 40vh;
    padding: 1rem 1rem;
    background-position: top center; /* foca no topo da imagem */
    text-align: center;
  }
  .contribution-columns__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contribution img {
    width: 100%; /* ocupa toda a largura em telas pequenas */
  }
  .column.right .call {
    margin-top: 2rem;
  }

  /*-------------- About ------------- */
  .about-details {
    margin-left: 0; /* remove margem em celulares */
    text-align: center;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .text {
    font-size: 1rem;
  }

  /*-------------- Endereços ------------- */
  .info-section {
    padding: 20px;
    text-align: center; /* centraliza textos */
  }

  .contact-layout {
    flex-direction: column;
    align-items: center; /* centraliza os blocos */
    gap: 20px;
  }

  .contact-left,
  .contact-right {
    width: 100%;
    min-width: auto;
    text-align: center; /* centraliza conteúdo interno */
  }

  .contact-left .endereco,
  .contact-left .contact-row {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center; /* centraliza os itens */
  }

  .contact-item {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    justify-content: center; /* centraliza ícone + texto */
    text-align: center;
  }

  .contact-item i {
    font-size: 20px;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .whatsapp-button {
    width: 100%;
    text-align: center;
    font-size: 14px;
    padding: 10px 15px;
  }

  .reunioes-section {
    padding: 20px 30px; /* ainda mais compacto */
  }

  .reunioes-boxes {
    flex-direction: column; /* empilha os itens */
    align-items: center;
  }

  .reuniao-item {
    width: 100%; /* ocupa toda largura */
    max-width: 500px; /* limite para não ficar gigante */
    font-size: 14px;
  }

  .reuniao-item span {
    font-size: 20px;
  }

  .info-uteis {
    padding: 20px 30px;
  }

  .info-container {
    flex-direction: column; /* empilha os blocos */
    gap: 20px;
  }

  .info-left,
  .info-right {
    min-width: 100%; /* ocupa toda largura */
  }

  .info-uteis h2 {
    font-size: 22px;
    text-align: center;
  }

  .info-item {
    font-size: 14px;
  }

  .info-item i {
    font-size: 20px;
  }

  .servicos {
    padding: 20px 30px;
  }

  .servicos-grid {
    flex-direction: column; /* empilha os itens */
    align-items: center;
  }

  .servico-item {
    width: 100%;
    max-width: 500px;
    font-size: 14px;
  }

  .servicos h2 {
    font-size: 22px;
    text-align: center;
  }

  .servicos-imagens {
    flex-direction: column; /* imagens empilhadas */
    align-items: center;
  }

  .servicos-imagens img {
    width: 100%;
    max-width: 500px;
    height: auto;
  }

  /* --------- Convite página de cultos */
  .pilares-container {
    flex-direction: column;
    align-items: center;
  }

  .pilar-item {
    width: 100%;
    max-width: 320px;
  }

  .pilares-section h2 {
    font-size: 24px;
  }

  /*------------- Hero Culto da Família ---------------- */
  .hero-family {
    padding: 8rem 1.5rem 2rem;
    background-position: center top;
  }

  .hero-family__content {
    max-width: 90%;
  }

  .hero-family h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
  }

  .hero-family p {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  .family-restoration__container {
    flex-direction: column-reverse;
    text-align: center;
  }

  /*------------- Hero Culto da Prosperidade ---------------- */
  .hero-prosperity {
    padding: 8rem 1.5rem 2rem;
    background-position: center top;
  }

  .hero-prosperity__content {
    max-width: 90%;
  }

  .hero-prosperity h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
  }

  .hero-prosperity p {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  /*------------- Hero Culto da Cura ---------------- */
  .hero-cura {
    padding: 8rem 1.5rem 2rem;
    background-position: center top;
  }

  .hero-cura__content {
    max-width: 90%;
  }

  .hero-cura h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
  }

  .hero-cura p {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  /*------------- Hero Culto da Busca ---------------- */
  .hero-busca {
    padding: 8rem 1.5rem 2rem;
    background-position: center top;
  }

  .hero-busca__content {
    max-width: 90%;
  }

  .hero-busca h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
  }

  .hero-busca p {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  /*------------- Hero Circulo de Oração ---------------- */
  .hero-oracao {
    padding: 8rem 1.5rem 2rem;
    background-position: center top;
  }

  .hero-oracao__content {
    max-width: 90%;
  }

  .hero-oracao h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
  }

  .hero-oracao p {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  /*------------- Hero Culto de Libertação ---------------- */
  .hero-libertacao {
    padding: 8rem 1.5rem 2rem;
    background-position: center top;
  }

  .hero-libertacao__content {
    max-width: 90%;
  }

  .hero-libertacao h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
  }

  .hero-libertacao p {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  /*------------- Hero Culto de Jovens ---------------- */
  .hero-jovens {
    padding: 8rem 1.5rem 2rem;
    background-position: center top;
  }

  .hero-jovens__content {
    max-width: 90%;
  }

  .hero-jovens h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
  }

  .hero-jovens p {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  /*------------- Hero Culto de Casais ---------------- */
  .hero-casais {
    padding: 8rem 1.5rem 2rem;
    background-position: center top;
  }

  .hero-casais__content {
    max-width: 90%;
  }

  .hero-casais h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
  }

  .hero-casais p {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  /*------------- Blog Oficial Redenção da Vida ---------------- */
  .blog-section .blog-text .blog-title {
    font-size: 45px;
    align-items: center;
  }

  /*------------- Blog Bispo Joacy ---------------- */
  /* Hero Section */
  .blogj-section .blogj-text .blogj-title {
    font-size: 30px;
    line-height: 1.2;
  }

  .blogj-section .blogj-text .blogj-subtitle {
    font-size: 20px;
  }

  .blogj-section .blogj-text .blogj-subtitle .logo-homej {
    width: 55px;
  }

  /* Layout principal */
  .blogJoacy-section {
    padding: 25px 12px;
  }
  .blogJoacy-section .layout {
    flex-direction: column;
    gap: 25px;
  }

  .blogJoacy-section .conteudo h1 {
    font-size: 26px;
  }

  /* Busca */
  .blogJoacy-section .busca {
    flex-direction: column;
    align-items: stretch;
  }

  .blogJoacy-section .busca input,
  .blogJoacy-section .busca button {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 10px;
  }
  /* Posts */
  .blogJoacy-section .post {
    flex-direction: column;
    align-items: center;
  }

  .blogJoacy-section .post-img {
    width: 100%;
    max-height: 900px;
  }

  .blogJoacy-section .post-info h3 {
    font-size: 22px;
  }

  /* Mais lidas */
  .blogJoacy-section .mais-lidas h3 {
    font-size: 20px;
  }
  .blogJoacy-section .numero {
    width: 32px;
    height: 32px;
    font-size: var(--font-size-m);
  }
  .blogJoacy-section .imagem-banner {
    height: 540px;
    width: 100%;
  }

  /* Testemunhos */
  .hero-testemunhos {
    padding: 12rem 1rem 3rem;
  }

  .hero-testemunhos__content {
    max-width: 90%;
  }

  /* Card - Carousel de Noticias */
  .noticia-item-noticias {
    min-width: 280px;
    max-width: 280px;
    height: 450px;
    padding: 12px;
  }
  .noticia-item-noticias img {
    height: 230px;
  }

  /* Noticia1 - Galeria */
  .mensagem-noticia1 p {
    text-align: left;
  }
  .subtitulo {
    font-size: 22px;
  }
  .galeria-noticia1 {
    padding: 20px 60px;
  }
  .titulo-galeria {
    font-size: 28px;
  }
  .subtitulo {
    font-size: 16px;
  }
  .grid-galeria video,
  .grid-galeria iframe {
    border: 3px solid #333; /* moldura mais fina */
  }

  .grid-galeria video::after,
  .grid-galeria iframe::after {
    font-size: 40px; /* ícone menor */
  }

  /* ===== Ministração Retiro 2025 ===== */
  .section-header h2 {
    font-size: 2rem;
  }

  .fruto-card {
    padding: 20px;
  }

  blockquote {
    padding: 15px;
  }
  .bispos-grid {
    gap: 30px;
  }

  .bispo-card {
    width: 100%;
    max-width: 320px;
  }

  /* ===== BLOG DO MINISTERIO DE MULHERES ===== */
    .banner h2 {
    font-size: 3.5rem;
  }

  .banner p {
    font-size: 1.6rem;
  }

  .agenda-texto h2 {
    font-size: 2rem;
  }

  .agenda-texto p {
    font-size: 1rem;
  }

  .destaques-2025 {
    flex-direction: column; /* carrossel em cima, lista embaixo */
    align-items: center;
  }

  .carousel-mulheres {
    width: 100%;
    height: 400px;
  }

  .materiais {
    width: 100%;
    max-height: none;
    margin-top: 20px;
  }

  .materiais li img {
    width: 80px;
    height: 60px;
  }
}

@media (max-width: 600px) {
  .logo-wrapper {
    height: 120px;
  }
  .logo {
    height: 78px;
  }
  .logo-nome {
    font-size: 1rem; /* texto menor */
    line-height: 1.1;
    top: 50%; /* continua centralizado */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10; /* garante que fique acima da logo */
  }
  .logo-nome .linha1 {
    font-size: 1.2rem;
  }
  .logo-nome .linha2 {
    font-size: 1.4rem;
  }

  /*-------------- Carousel ------------- */
  .carousel {
    height: 43vh; /* ocupa toda a altura da tela */
  }
  .carousel-slide img {
    object-fit: contain; /* mostra imagem inteira sem cortar */
    background: #000; /* fundo para preencher espaços */
  }
  .carousel button {
    font-size: 1.2rem;
  }

  /*-------------- Pastors ------------- */
  #pastors .pastors__grid {
    grid-template-columns: 1fr; /* 1 coluna */
    gap: 1.5rem;
  }

  .pastors__card img {
    width: 220px;
    height: 220px;
  }

  .pastors__section {
    font-size: 26px;
  }

  .pastors_subheader {
    font-size: 14px;
  }

  /* ------------ Weekly-agenda ----------------------- */
  .agenda__grid {
    grid-template-columns: repeat(
      1,
      minmax(220px, 400px)
    ); /* tamanho fixo/bonito pros cards */
    gap: 1.2rem;
  }
  .agenda__title {
    font-size: 1.8rem;
  }
  .agenda__subtitle {
    font-size: 0.9rem;
  }
  .agenda__card img {
    height: 200px;
  }

  /* ------------ Contribution ----------------------- */
  .contribution-hero {
    min-height: 30vh;
    padding: 3rem 1rem;
    background-position: top center; /* foca no topo da imagem */
  }

  .column p {
    font-size: 0.95rem;
  }
  .column.right .call {
    font-size: 1.2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }

  /* ------------ Blog Bispo Joacy ----------------------- */
  /* Hero Section */
  .blogj-section .blogj-text .blogj-title {
    font-size: 24px;
  }

  .blogj-section .blogj-text .blogj-subtitle {
    font-size: 16px;
  }

  .blogj-section .blogj-text .blogj-subtitle .logo-homej {
    width: 45px;
  }

  /* Layout principal */
  .blogJoacy-section {
    padding: 20px 10px;
  }

  .blogJoacy-section .conteudo h1 {
    font-size: 22px;
  }

  /* Busca */
  .blogJoacy-section .busca input,
  .blogJoacy-section .busca button {
    font-size: 14px;
    padding: 8px;
  }

  /* Posts */
  .blogJoacy-section .post-img {
    max-height: 700px;
  }

  .blogJoacy-section .post-info h3 {
    font-size: 18px;
  }

  .blogJoacy-section .descricao {
    font-size: 0.9em;
    text-align: justify;
  }

  /* Mais lidas */
  .blogJoacy-section .mais-lidas h3 {
    font-size: 18px;
  }
  .blogJoacy-section .numero {
    width: 28px;
    height: 28px;
    font-size: var(--font-size-s);
  }

  .blogJoacy-section .titulo {
    font-size: 0.9em;
  }

  /*------------- Blog Bispa Leci ---------------- */
  .blogl-section .blogl-text .blogl-title {
    font-size: 36px;
  }

  .blogl-section .blogl-text .blogl-subtitle {
    font-size: 22px;
  }

  .blogl-section .blogl-text .blogl-subtitle .logo-homel {
    width: 60px;
  }

  /* ------------ Testemunhos Formulário ----------------------- */
  .form-row {
    flex-direction: column;
  }

  .form-input,
  .form-radio-group {
    width: 100%;
  }

  .radio-options {
    flex-direction: column;
    align-items: flex-start;
  }

  /*------------- Hero Testemunhos ---------------- */
  .hero-testemunhos {
    padding: 8rem 1rem 2.5rem;
  }

  .hero-testemunhos__content {
    max-width: 95%;
  }

  /* Noticia1 - Galeria */
  .mensagem-noticia1 p {
    text-align: left;
  }
  .subtitulo {
    font-size: 22px;
  }
  .galeria-noticia1 {
    padding: 20px 30px;
  }
  .titulo-galeria {
    font-size: 24px;
  }
  .subtitulo {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .grid-galeria {
    grid-template-columns: 1fr 1fr; /* duas colunas */
  }
  .grid-galeria video,
  .grid-galeria iframe {
    border: 2px solid #333;
  }

  .grid-galeria video::after,
  .grid-galeria iframe::after {
    font-size: 32px;
  }

  /* ===== BLOG DO MINISTERIO DE MULHERES ===== */
  .banner h2 {
    font-size: 2.8rem;
  }

  .banner p {
    font-size: 1.4rem;
  }

  .agenda-texto h2 {
    font-size: 1.6rem;
  }

  .agenda-texto p {
    font-size: 0.9rem;
  }

  .carousel-mulheres {
    height: 300px;
  }

  .materiais li img {
    width: 70px;
    height: 50px;
  }

  .titulo-section {
    font-size: 1.6rem;
  }
}

@media (max-width: 400px) {
  .social-icons {
    display: none; /* esconde os ícones de redes sociais */
  }

  .logo-wrapper {
    flex: 1 1 100%; /* ocupa todo o espaço disponível */
    height: auto;
  }

  .logo-nome .linha1,
  .logo-nome .linha2 {
    font-size: 1.4rem; /* reduz levemente para caber melhor */
    line-height: 1.3;
    white-space: normal; /* permite quebra de linha */
  }

  .logo-nome {
    width: 100%;
    padding: 0 1rem; /* espaço lateral para não encostar nas bordas */
  }
  .logo {
    height: 50px;
  }
  .logo-nome {
    font-size: 0.9rem;
    line-height: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  }
  .logo-nome .linha1 {
    font-size: 0.9rem;
  }
  .logo-nome .linha2 {
    font-size: 0.9rem;
  }

  /*-------------- Carousel ------------- */
  .carousel {
    height: 29vh;
  }
  .carousel button {
    font-size: 1rem;
    padding: 0.2rem 0.6rem;
  }

  /*-------------- Welcome ------------- */
  .welcome .welcome-details {
    max-width: 100%; /* ocupa toda largura */
    flex: unset; /* remove proporção fixa */
  }
  .welcome .welcome-details h2 {
    margin-top: 3rem;
    font-size: 1.6rem; /* reduz título */
  }
  .welcome .welcome-details .text {
    font-size: var(--font-size-s); /* texto menor */
    text-align: justify; /* mais legível em telas pequenas */
  }
  .welcome .welcome-image-wrapper .welcome-image {
    max-width: 200px; /* imagem menor */
    margin-bottom: 3rem;
  }

  /*-------------- Pastors ------------- */
  #pastors .pastors__grid {
    grid-template-columns: 1fr; /* continua 1 coluna */
    gap: 1.8rem; /* mais espaço entre cards */
  }

  .pastors__card img {
    width: 160px;
    height: 160px;
  }

  .pastors__section {
    font-size: 24px;
  }

  .pastors_subheader {
    font-size: 13px;
  }

  /* ------------ Weekly-agenda ----------------------- */
  .agenda__grid {
    grid-template-columns: 1fr; /* continua 1 coluna */
    gap: 1.8rem;
  }

  .agenda__title {
    font-size: 1.6rem;
  }

  .agenda__subtitle {
    font-size: 0.85rem;
  }

  .agenda__card img {
    height: 180px;
  }

  .agenda__card-title {
    font-size: 1.1rem;
    padding: 1rem;
  }

  /* ------------ Contribution ----------------------- */
  .contribution-hero {
    min-height: 25vh; /* reduz a altura da hero */
    padding: 2rem 1rem; /* menos espaçamento */
    background-position: top center; /* foca no topo da imagem */
  }

  .contribution-hero h1 {
    font-size: 1.6rem; /* título menor */
  }

  .contribution-hero h2 {
    font-size: 1.2rem;
  }

  .contribution-columns__container {
    grid-template-columns: 1fr; /* vira uma coluna só */
    gap: 1.5rem;
    text-align: center;
  }

  .column p {
    font-size: 0.9rem; /* texto mais compacto */
    line-height: 1.4;
  }

  .column.right .call {
    font-size: 1rem; /* chamada menor */
    margin-top: 1rem;
  }

  .section-divider {
    max-width: 95%; /* linha acompanha largura da tela */
    margin: 1.5rem auto;
  }

  /*-------------- Pastors ------------- */
  .section-title {
    font-size: 1.5rem;
  }
  .text {
    font-size: 0.9rem;
  }

  /*-------------- About ------------- */
  .section-title {
    font-size: 1.5rem;
  }
  .text {
    font-size: 0.9rem;
  }

  /* ------------ Footer -------------------- */
  .footer {
    padding: 2rem 1rem; /* menos espaço */
    font-size: 0.85rem; /* fonte menor */
    text-align: center; /* centraliza conteúdo */
  }

  .footer__container {
    grid-template-columns: 1fr; /* uma coluna só */
    gap: 1.5rem;
  }

  .footer__column h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .footer__column p {
    font-size: 0.85rem;
    line-height: 1.4;
    align-items: center;
  }

  .footer__column ul li {
    margin-bottom: 0.4rem;
  }

  .footer__btn {
    width: 100%; /* botão ocupa toda largura */
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .footer__bottom {
    font-size: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 0.8rem;
  }

  /*----------- Hero Vila Sabrina ---------- */
  .hero-sabrina {
    padding: 8rem 1rem 2rem; /* reduz o espaço superior/inferior */
    background-position: center top; /* ajusta a posição da imagem */
  }

  .hero-sabrina__content {
    max-width: 100%; /* ocupa toda a largura disponível */
    padding: 0 1rem; /* adiciona respiro lateral */
  }

  .hero-sabrina h2 {
    font-size: 1.8rem; /* tamanho menor para caber bem */
    color: var(--primary-color); /* mostra o título em telas pequenas */
  }

  .hero-sabrina p {
    font-size: 1.2rem; /* reduz fonte para caber melhor */
    line-height: 1.4; /* melhora legibilidade */
  }

  .hero-sabrina span {
    display: block; /* quebra linha para não ficar apertado */
    font-size: 1.4rem;
  }

  /*----------- Hero Jova Rural ---------- */
  .hero-jovaRural {
    padding: 8rem 1rem 2rem; /* reduz o espaço superior/inferior */
    background-position: center top; /* ajusta a posição da imagem */
  }

  .hero-jovaRural__content {
    max-width: 100%; /* ocupa toda a largura disponível */
    padding: 0 1rem; /* adiciona respiro lateral */
  }

  .hero-jovaRural h2 {
    font-size: 1.8rem; /* tamanho menor para caber bem */
    color: var(--primary-color); /* mostra o título em telas pequenas */
  }

  .hero-jovaRural p {
    font-size: 1.2rem; /* reduz fonte para caber melhor */
    line-height: 1.4; /* melhora legibilidade */
  }

  .hero-jovaRural span {
    display: block; /* quebra linha para não ficar apertado */
    font-size: 1.4rem;
  }

  /*----------- Hero Americana ---------- */
  .hero-americana {
    padding: 8rem 1rem 2rem; /* reduz o espaço superior/inferior */
    background-position: center top; /* ajusta a posição da imagem */
  }

  .hero-americana__content {
    max-width: 100%; /* ocupa toda a largura disponível */
    padding: 0 1rem; /* adiciona respiro lateral */
  }

  .hero-americana h2 {
    font-size: 1.8rem; /* tamanho menor para caber bem */
    color: var(--primary-color); /* mostra o título em telas pequenas */
  }

  .hero-americana p {
    font-size: 1.2rem; /* reduz fonte para caber melhor */
    line-height: 1.4; /* melhora legibilidade */
  }

  .hero-americana span {
    display: block; /* quebra linha para não ficar apertado */
    font-size: 1.4rem;
  }

  /*----------- Hero Culto da Família ---------- */
  .hero-family {
    padding: 8rem 1rem 2rem; /* reduz o espaço superior/inferior */
    background-position: center top; /* ajusta a posição da imagem */
  }

  .hero-family__content {
    max-width: 100%; /* ocupa toda a largura disponível */
    padding: 0 1rem; /* adiciona respiro lateral */
  }

  .hero-family h2 {
    font-size: 1.8rem; /* tamanho menor para caber bem */
    color: var(--primary-color); /* mostra o título em telas pequenas */
  }

  .hero-family p {
    font-size: 1.2rem; /* reduz fonte para caber melhor */
    line-height: 1.4; /* melhora legibilidade */
  }

  .hero-family span {
    display: block; /* quebra linha para não ficar apertado */
    font-size: 1.4rem;
  }

  /*-------------- Endereços ------------- */
  .info-section {
    padding: 20px; /* bem compacto em telas pequenas */
  }
  .endereco,
  .contact-item {
    font-size: 14px;
  }
  .endereco i,
  .contact-item i {
    font-size: 20px;
  }
  .social-icons {
    font-size: 24px;
  }
  .reunioes-section {
    padding: 15px; /* bem compacto */
  }

  .reunioes-title {
    font-size: 20px;
    text-align: center;
  }

  .reuniao-item {
    padding: 15px;
    font-size: 13px;
  }

  .reuniao-item span {
    font-size: 18px;
  }
  .info-uteis {
    padding: 15px;
  }

  .info-uteis h2 {
    font-size: 20px;
    text-align: center;
  }

  .info-item {
    padding: 12px;
    font-size: 13px;
    flex-direction: column; /* ícone em cima do texto */
    align-items: flex-start;
  }

  .info-item i {
    font-size: 18px;
  }
  .info-right iframe {
    height: 200px; /* altura fixa para caber bem em telas pequenas */
  }

  .servicos {
    padding: 15px;
  }

  .servicos h2 {
    font-size: 20px;
    text-align: center;
  }

  .servico-item {
    padding: 15px;
    font-size: 13px;
  }

  .servico-item i {
    font-size: 20px;
  }

  .servicos-imagens img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  /* --------- Convite página de cultos */
  .pilares-section {
    padding: 20px 10px;
  }

  .pilares-section h2 {
    font-size: 20px;
  }

  .pilar-item i {
    font-size: 32px;
  }

  .pilar-item h3 {
    font-size: 18px;
  }

  .pilar-item p {
    font-size: 14px;
  }

  /*------------- Hero Culto da Família ---------------- */
  .hero-family {
    padding: 6rem 1rem 1.5rem;
  }

  .hero-family h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
  }

  .hero-family p {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .hero-family span {
    display: block;
    font-size: 1.2rem;
  }

  .family-restoration__container {
    flex-direction: column-reverse;
    text-align: center;
  }

  /*------------- Hero Culto da Prosperidade ---------------- */
  .hero-prosperity {
    padding: 6rem 1rem 1.5rem;
  }

  .hero-prosperity h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
  }

  .hero-prosperity p {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .hero-prosperity span {
    display: block;
    font-size: 1.2rem;
  }

  /*------------- Hero Culto da Cura ---------------- */
  .hero-cura {
    padding: 6rem 1rem 1.5rem;
  }

  .hero-cura__content h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
  }

  .hero-cura p {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .hero-cura span {
    display: block;
    font-size: 1.2rem;
  }

  /*------------- Hero Culto da Busca ---------------- */
  .hero-busca {
    padding: 6rem 1rem 1.5rem;
  }

  .hero-busca__content h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
  }

  .hero-busca p {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .hero-busca span {
    display: block;
    font-size: 1.2rem;
  }

  /*------------- Hero Circulo de Oração ---------------- */
  .hero-oracao {
    padding: 6rem 1rem 1.5rem;
  }

  .hero-oracao__content h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
  }

  .hero-oracao p {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .hero-oracao span {
    display: block;
    font-size: 1.2rem;
  }

  /*------------- Hero Culto de Libertação ---------------- */
  .hero-libertacao {
    padding: 6rem 1rem 1.5rem;
  }

  .hero-libertacao__content h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
  }

  .hero-libertacao p {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .hero-libertacao span {
    display: block;
    font-size: 1.2rem;
  }

  /*------------- Hero Culto de Jovens ---------------- */
  .hero-jovens {
    padding: 6rem 1rem 1.5rem;
  }

  .hero-jovens__content h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
  }

  .hero-jovens p {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .hero-jovens span {
    display: block;
    font-size: 1.2rem;
  }

  /*------------- Hero Culto de Casais ---------------- */
  .hero-casais {
    padding: 5rem 1rem 1.5rem;
  }

  .hero-casais__content h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
  }

  .hero-casais p {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .hero-casais span {
    display: block;
    font-size: 1.2rem;
  }

  /*------------- Blog Oficial Redenção da Vida ---------------- */
  .blog-section .blog-text .blog-title {
    font-size: 30px;
    align-items: center;
  }

  /*------------- Blog Oficial Bispo Joacy ---------------- */
  /* Hero Section */
  .blogj-section .blogj-text .blogj-title {
    font-size: 28px; /* reduz título */
    line-height: 1.2;
  }

  .blogj-section .blogj-text .blogj-subtitle {
    font-size: 18px; /* reduz subtítulo */
  }

  .blogj-section .blogj-text .blogj-subtitle .logo-homej {
    width: 50px; /* logo menor */
  }

  /* Layout principal */
  .blogJoacy-section {
    padding: 20px 10px;
  }

  .blogJoacy-section .layout {
    flex-direction: column; /* conteúdo e lateral empilhados */
    gap: 20px;
  }

  .blogJoacy-section .conteudo h1 {
    font-size: 24px; /* título menor */
  }

  /* Busca */
  .blogJoacy-section .busca {
    flex-direction: column;
    align-items: stretch;
  }

  .blogJoacy-section .busca input,
  .blogJoacy-section .busca button {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 10px;
  }

  /* Posts */
  .blogJoacy-section .post {
    flex-direction: column;
    align-items: center;
  }

  .blogJoacy-section .post-img {
    width: 100%; /* imagem ocupa toda largura */
    max-height: 480px; /* altura limitada */
  }

  .blogJoacy-section .post-info h3 {
    font-size: 20px;
  }

  /* Mais lidas */
  .blogJoacy-section .mais-lidas h3 {
    font-size: 20px;
  }

  .blogJoacy-section .numero {
    width: 30px;
    height: 30px;
    font-size: var(--font-size-m);
    margin-right: 10px;
  }
  /*------------- Hero Testemunhos ---------------- */
  .hero-testemunhos {
    padding: 6rem 1rem 2rem;
    background-position: top center; /* opcional: reposicionar imagem */
  }

  .hero-testemunhos__content {
    max-width: 100%;
  }

  /*-------- Noticia1 - Galeria ------------ */
  .mensagem-noticia1 p {
    text-align: left;
  }
  .subtitulo {
    font-size: 22px;
  }
  .galeria-noticia1 {
    padding: 15px;
  }
  .titulo-galeria {
    font-size: 20px;
  }
  .subtitulo {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .grid-galeria {
    grid-template-columns: 1fr; /* uma coluna */
  }
  .grid-galeria video,
  .grid-galeria iframe {
    border: 3px solid #333; /* moldura mais fina */
  }

  .grid-galeria video::after,
  .grid-galeria iframe::after {
    font-size: 40px; /* ícone menor */
  }
  .grid-galeria video,
  .grid-galeria iframe {
    border: 2px solid #333;
    border-radius: 6px; /* cantos mais suaves */
  }

  .grid-galeria video::after,
  .grid-galeria iframe::after {
    font-size: 24px; /* ícone ainda menor */
  }
  /* ===== BLOG DO MINISTERIO DE MULHERES ===== */
  .banner h2 {
    font-size: 2.2rem;
  }

  .banner p {
    font-size: 1.2rem;
  }

  .agenda-texto h2 {
    font-size: 1.3rem;
  }

  .agenda-texto p {
    font-size: 0.8rem;
  }

  .carousel-mulheres {
    height: 220px;
  }

  .materiais {
    padding: 15px;
  }

  .materiais li img {
    width: 60px;
    height: 45px;
  }

  .titulo-section {
    font-size: 1.4rem;
  }
}
