
html, body {
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}
.section-title {
  font-size: clamp(3rem, 2.5vw, 4rem);
}

.texto-informativo {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.globe-icon {
  width: 1.5vw;
  margin-right: 0.5rem;
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
}
/*-------------------------------NAVTABS----------*/
/* Estilos para o botão de menu hambúrguer */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 11;
  padding-right: 10px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #ef6a01;
  transition: 0.3s;
  
}

/* Modificações para o menu em dispositivos menores */
@media (max-width: 1000px) {
  .menu-items {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 50%;
    background-color: #2d2d2f;
    flex-direction: column;
    padding-top: 60px;
    gap: 20px;
    align-items: center;
    animation: slideIn 0.3s forwards;
  }

  .menu-items.active {
    display: flex;
  }

  .nav-tabs1 ul {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* Animação de deslizamento para o menu */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* -----------HERO---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.scrolled .hero {
  top: 0;
}

.video-carousel {
  display: flex; /* Alinha vídeos horizontalmente */
  transition: transform 0.5s ease;
}

.custom-video-item,
.video-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 0 0 100%;
}

.hero button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 10px;
  cursor: pointer;
  color: white;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

/*RESPONSIVIDADE*/

@media (max-width: 480px) {
  .custom-video-item,
  .video-carousel img {
    width: 100%;
    height: auto;
  }

  .hero {
    margin-top: 8rem;
  }
}

/* Tablets */
@media (min-width: 481px) and (max-width: 768px) {
  .custom-video-item,
  .video-carousel img {
    object-position: center;
  }

  .hero {
    margin-top: 6rem;
    padding: 2rem;
  }
}

/* Desktops */
@media (min-width: 769px) {
  .custom-video-item,
  .video-carousel img {
    object-position: center;
  }
}

/*-----------------------------------------QUEM SOMOS-----------------------------------------*/

.cachoeira-container .texto-fixo .container-titulo .text-shadow {
  left: 280px;
}

.text-shadow {
  color: #fff;
}

.cachoeira-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: conic-gradient(
    from 245deg,
    rgba(239, 106, 1, 0.2),
    transparent 18%
  );
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

.cachoeira-wrapper {
  height: 205vh;
  position: relative;
  overflow: hidden;
  background: #000000;
}

/* Contêiner Principal */
.cachoeira-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  height: 100vh;
  top: 5%;
}

/* Texto Fixo no Centro */
.texto-fixo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  z-index: 10;
  transition: opacity 0.3s, visibility 0.3s;
  width: 50rem !important;
  font-family: var(--secondary-font-bkp);
}

/* Colunas Laterais */
.coluna-esquerda,
.coluna-direita {
  width: 20%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Imagens */
.imagem-cachoeira {
  width: 100%;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 1s;
}

.imagem-cachoeira.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {

  .cachoeira-wrapper {
    height: unset;
    position: unset;
  }

  .cachoeira-container {
    flex-direction: column; 
    align-items: center;
    height: 50rem;
  }

  .texto-fixo {
    width: 90% !important;
    height: 100%;
  }

  .texto-fixo p {
    font-size: 1.3rem;
    line-height: 1.85rem;
  }

  .texto-fixo .scribble-underline,
  .texto-fixo .scribble-circle {
    font-size: 1.3rem;
  }

  .container-titulo .text-main {
    font-size: 2.2rem;
  }

  .container-titulo .text-shadow {
    font-size: 2rem;
        left: 15%;
        top: 40px;
    }


  .cachoeira-container .texto-fixo .container-titulo .text-shadow {
    left: 22% !important;
  }

  .coluna-esquerda,
  .coluna-direita {
   display: none;
  }

  .imagem-cachoeira {
    width: 100%; /* Ajustar largura das imagens */
    max-width: 300px; /* Limitar o tamanho */
    filter: brightness(0.5);
  }
}

@media (min-width: 769px) and (max-width: 1025px) {
  .cachoeira-wrapper {
    height: 100rem;
  }

  .coluna-esquerda,
  .coluna-direita {
    width: 25%;
    display: flex;
    flex-direction: column;
    /* gap: 30px; */
  }

  .cachoeira-container {
    top: unset;
  }

  .cachoeira-container .texto-fixo .container-titulo .text-shadow {
    left: 120px;
}

}

/*-----------------------------------FAÇA PARTE DA FAMILIA-----------------------------------*/
.faca-parte {
  display: flex;
  justify-content: center;
  position: relative;
  top: -35px;
}

/* Botão invisível e deslocado no início */
.faca-parte .botao-float {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 15px 30px;
  color: white;
  border: none;
  border-radius: unset;
  cursor: pointer;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-family: var(--secondary-font-bkp);
  transition: transform 1s, opacity 1s;
  justify-content: center;
}

/* Efeito hover */
.botao-float:hover {
  transform: scale(2.1);
}

.empty {
  fill: white;
  transition: transform 1s;
}

.botao-float:hover .empty {
  transform: rotate(360deg);
}

/*PASTORES-------------------------------------------------------------------------*/
.pastores {
  padding: 5rem 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  background: url(../images/only_bg.webp) center / cover no-repeat;
  position: relative;
  min-height: 120vh !important;
  width: 100%;
}

.pastor-content {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  margin: 0 auto;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
  position: absolute;
  bottom: 0;
  align-items: center;
}

.img-wrapper {
  position: relative;
  overflow: hidden;
}

/* Imagem Principal */
.image-wrapper-prs {
  position: relative;
  height: auto;
  display: block;
  z-index: 1;
}
/* Estilo Principal */
.info-text.pastor-text {
  max-width: 700px;
  margin: 3rem auto;
  padding: 2rem;
  background: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
  text-align: center;
}

/* Descrição do Pastor */
.info-culto.pastor-description {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #d4d4d4;
  font-family: var(--secondary-font-bkp);
  margin-bottom: 1.5rem;
  text-align: left;
}

/* Texto para seguir */
.follow-text {
  font-size: 1.6rem;
  color: #f97316;
  font-family: var(--primary-font);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

/* Contatos do Pastor */
.info-culto.pastor-contacts {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-family: var(--secondary-font-bkp);
}

.info-culto.pastor-contacts a {
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #2a2a2a;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  align-items: center;
}

.info-culto.pastor-contacts a:hover {
  color: #ffffff;
  background: #f97316;
  transform: scale(1.1);
}

/* Ícones */
.info-culto.pastor-contacts i {
  font-size: 1.8rem;
}

/* Botão Saiba Mais */
.learn-more {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1.2rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.learn-more:hover {
  background-color: var(--primary-color-hover);
  transform: scale(1.05); /* Leve animação ao passar o mouse */
}

/* Responsividade */
@media (max-width: 1800px) {
  .pastor-content {
    flex-direction: column; /* Troca para coluna em telas menores */
    align-items: center; /* Centraliza os itens */
  }

  .img-wrapper {
    height: 35rem;
  }

  .info-text.pastor-text {
    max-width: 700px;
    margin: 0 auto;
    }

  .image-wrapper-prs {
    width: 100%;
    height: 100%;
  }

  .pastor-content {
    position: unset;
  }
  .pastor-text {
    max-width: 100%; /* Texto ocupa toda a largura */
    text-align: center;
  }

  .pastores {
    height: 100%;

  }
}

@media (max-width: 768px) {
  .pastores {
    padding: 3rem 5%;
    background-attachment: scroll;
    height: auto;
    min-height: 100vh;
  }
  .pastor-content {
    bottom: unset;
    align-content: center;
    top: 15rem;
    margin-bottom: unset;
  }

  .img-wrapper {
    border-radius: 15px;
    margin-bottom: unset;
    height: auto;
  }

  .pastor-text {
    font-size: 1.3rem; /* Reduz tamanho do texto */
  }

  .image-wrapper-prs {
    width: 100%;
  }

  .pastor-content .info-text.pastor-text {
    margin: 0;
    max-width: 100%;
    padding: 1rem;
    width: 90%;
  }

  .info-culto.pastor-description {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .info-culto.pastor-contacts {
    flex-direction: column;
  }

  .info-culto.pastor-contacts a {
    font-size: 1.1rem;
    background: #f97316;
    justify-content: center;
  }

  .follow-text {
    font-size: 1.3rem;
  }

  .quem_somos,
  .palavras,
  .eventos,
  .contribuicoes,
  .pastores {
    padding: 5rem 0;
  }

}

/*--------------------------PALAVRAS--------------------*/
.palavras {
  padding: 80px 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  position: relative;
  background: #000000;
}

/* Layout de grid para os vídeos */
.videos_palavras {
  display: flex;
  gap: 2rem;
  width: 100%;
  justify-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
/* Estilo das miniaturas dos vídeos */
.thumbnail-container img {
  object-fit: cover;
  object-position: center -50px;
  border-radius: 15px;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.ultima-pregacao .thumbnail-container img {
  object-position: center -75px;
}

.ultima-pregacao .video-event {
  font-size: 3rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  letter-spacing: 0.5px;
  font-family: var(--secondary-font);
}

.thumbnail-container img:hover {
  transform: scale(1.05);
}

/* Estilo do card do vídeo */
.video-card {
  position: relative;
  overflow: hidden;
  box-shadow: 0px 8px 15px rgb(0 0 0 / -112%);
  border-radius: 15px;
  transition: box-shadow 0.3s ease;
  height: 25rem;
  width: 30rem;
  padding: 10px;
  background: #1d1d1d;
}

.ultima-pregacao .video-card {
  height: 40rem;
  width: 55rem;
}

.video-card .thumbnail-container,
.ultima-pregacao .thumbnail-container {
  height: 100%;
}

.video-card:hover {
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.7);
}

/* Overlay com Nome do Evento, Pastor e Data */
.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(0deg, rgb(0 0 0) 25%, rgba(0, 0, 0, 0) 100%);
  color: #ffffff;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.ultima-pregacao .video-overlay {
  background: linear-gradient(to top, rgb(0 0 0) 15%, rgba(0, 0, 0, 0) 70%);
}

/* Nome do evento */
.video-event {
  font-size: 1.5rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  letter-spacing: 0.5px;
  font-family: var(--secondary-font);
}

/* Nome do pastor */
.video-pastor {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  margin-top: 5px;
  text-transform: uppercase;
}

/* Data do vídeo */
.video-date {
  font-size: 0.9rem;
  color: #aeaeae;
  font-style: italic;
  margin-top: 5px;
}

/* Botão de Play Centralizado */
.play-button,
.play-button-small {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(
    circle,
    rgba(255, 136, 1, 1) 0%,
    rgba(255, 136, 1, 0.8) 60%,
    rgba(255, 136, 1, 0) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.3s ease;
}

.play-button:hover,
.play-button-small:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Botão de Compartilhar sobre o vídeo */
.share-icon {
  position: absolute;
  top: 25px;
  right: 25px;
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  width: 45px;
  height: 45px;
  z-index: 3;
  transition: transform 0.3s ease;
}

.share-icon:hover {
  transform: scale(1.2);
}

/* Ícones de Compartilhamento */
.share-options {
  position: absolute;
  top: 80px;
  right: 29px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 3;
}

.share-options.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.social-btn {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #444;
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.social-btn:hover {
  background-color: var(--primary-color-hover);
}

/* Botão Ver Mais */
.palavras button {
  margin-top: 3rem;
  background-color: var(--primary-color);
  color: #fff;
  padding: 15px 75px;
  border: none;
  border-radius: 10px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.palavras button:hover {
  background-color: var(--primary-color-hover);
  transform: translateY(-5px);
}

/* Responsivo */
@media (max-width: 768px) {
  .videos_palavras {
    grid-template-columns: 1fr;
    width: 90%;
  }

  .ultima-pregacao {
    display: none;
  }

  .bg-withe-p {
    height: 57%;
  }
}

/*MODAL-----------*/
/* Estilos da modal */
.video-modal {
  display: none; /* Oculta por padrão */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background-color: #1d1d1d;
  border-radius: 10px;
  overflow: hidden;
  padding: 2rem;
}

.video-modal-header h2 {
  font-size: 1.5rem;
  margin: 0 0 15px;
  color: #ffffff;
  font-weight: 700;
}

#videoContainer {
  width: 100%;
  padding-top: 56.25%; /* Aspect ratio 16:9 */
  position: relative;
}

#videoContainer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Botão de fechar */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1;
}

/*EVENTOS-----------------------------------------*/
.evento-card-line {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.eventos {
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #000;
  background-size: cover;
}

.fundo-preto {
  background-color: #2d2d2f;
  color: #ff7300;
  width: 45%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center; 
  box-shadow: 10px 0 20px rgba(0, 0, 0, 0.5);
  flex-direction: column;
}

.culto-content {
  margin-top: 5rem;
}

.culto-title h2 {
  font-size: 3.5rem;
  font-family: var(--secondary-font);
}

.culto-title p {
  font-size: 1.5rem;
  font-family: var(--primary-font);
  color: #d8d8d8;
}

.info-text {
  margin: 3rem 4rem;
  padding: 2rem;
  background: #1a1a1a;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}

.info-culto {
  padding: 1rem 1.5rem;
  background: #2a2a2a;
  border-left: 5px solid #f97316; 
  border-radius: 5px;
  transition: transform 0.3s ease;
}

.info-culto:hover {
  transform: translateY(-5px);
}

.info-culto span {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--primary-font);
  font-size: 1.8rem;
  color: #ffffff; /* Laranja */
}

.eventos .info-culto h5 {
  margin-bottom: 0.5rem;
}

.call-to-action h4 {
  font-family: var(--primary-font);
  text-transform: uppercase;
  position: relative;
  z-index: 3;
}

.call-to-action h4 .scribble-circle {
  z-index: -1;
}

.info-culto p {
  font-family: var(--secondary-font-bkp);
  font-size: 1.3rem;
  color: #d4d4d4;
  text-align: left;
}

.info-culto .globe-icon {
  width: 1.5rem;
  margin-right: 0.5rem; /* Espaçamento entre o ícone e o texto */
  display: inline-block;
  vertical-align: middle; /* Alinha verticalmente ao centro */
  object-fit: contain; /* Garante que não fique esticado */
}

.evento-card {
  transition: transform 0.3s ease;
  height: 100%;
}

/* Banner com Imagem e Overlay */
.evento-banner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.evento-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.swiper-container {
  height: 100%;
  margin-left: auto;
  margin-right: 3rem;
  right: 0;
  top: 0;
}

/* Slide */
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1a1a;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.swiper-slide-prev,
.swiper-slide-next {
  opacity: 0.6; /* Deixa os slides laterais levemente transparentes */
  transform: scale(0.9); /* Diminui um pouco o tamanho */
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1); /* Tamanho normal para o slide ativo */
}
/* Imagem */
.evento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-wrapper .swiper-slide.swiper-slide-active, .swiper-wrapper .swiper-slide.swiper-slide-next, .swiper-wrapper .swiper-slide.swiper-slide-prev, .swiper-wrapper .swiper-slide.swiper-slide-visible, .swiper-wrapper .swiper-slide {
  height: 64vh !important;
  max-width: 35rem;
}

.swiper-wrapper .swiper-slide.swiper-slide-active {
  opacity: unset !important;
}

@media (max-width: 768px) {
  .info-text {
     max-width: unset; 
    margin: unset;
    }

    .call-to-action h4 {
      font-size: 1.5rem;
    }

    .programacao-semanal button {
      font-size: 1.2rem;
    }

    .info-culto span {
      flex-direction: column;
      font-size: 1.4rem;
  }

  .fundo-preto {
   margin-top: 10rem !important;
}
  }

/* Responsividade */
@media (max-width: 1550px) {
  .eventos {
    position: unset;

    height: unset;
  }

  .fundo-preto {
    position: unset;
    width: 90%;
    box-shadow: 0px -1px 20px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    margin-top: 15rem;
  }
  .evento-card {
    max-width: 100%;
  }

  .evento-banner {
    height: 300px;
  }

  .swiper-container {
    position: unset;
  }

  .eventos .container-titulo {
    left: unset;
  }

  .culto-content {
    margin-top: unset;
  }

  .info-culto span {
    flex-direction: column;
    font-size: 1.5rem;
  }

  .info-culto p {
    text-align: center;
  }

  .info-culto span img {
    width: 2rem;
    margin-bottom: 0.5rem;
  }

  .programacao-semanal button i {
    transform: rotate(90deg);
    margin-left: 0.5rem;
  }

  .swiper-container {
    width: 100%;
    margin-right: 0rem;
  }

  .swiper-wrapper .swiper-slide.swiper-slide-active,
  .swiper-wrapper .swiper-slide.swiper-slide-next,
  .swiper-wrapper .swiper-slide.swiper-slide-prev,
  .swiper-wrapper .swiper-slide.swiper-slide-visible,
  .swiper-wrapper .swiper-slide {
    height: 30rem !important;
  }


 
}

/*CONTRIBUIÇÕES--------------------------------------------------------*/
/* Seção Contribuições */
.contri-bg {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.8) 60%
    ),
    url(../images/bg-hands.webp) no-repeat center center / cover;
  background-repeat: no-repeat;
  background-size: cover; /* Garante que a imagem ocupa toda a seção */
  background-position: center; /* Centraliza a imagem */
  background-attachment: fixed; /* Ativa o efeito parallax */
  height: 100%; 
  z-index: 0;
}

.texto-contribuicoes-versiculo {
  font-size: 2rem;
  color: var(--secondary-color);
  max-width: 850px;
  margin: 0 auto;
  font-family: var(--secondary-font);
  background: #2f2f2f75;
  font-style: italic;
  border-radius: 5px;
}

.texto-contribuicoes .scribble-underline {
  font-size: 1.5rem;
  font-family: var(--primary-font);
  text-transform: uppercase;
  margin: 0;
}

.texto-contribuicoes {
  max-width: 850px;
}

.contribuicoes-content .texto2 p {
  line-height: 3.5rem;
  font-size: 2rem;
}

.texto-contribuicoes-versiculo span {
  position: absolute;
  bottom: -40px;
  right: -75px;
  padding: 1rem;
  background: #ef6a01;
  font-size: 1.2rem;
  font-style: normal;
  border-radius: 5px;

  font-family: var(--secondary-font-bkp);
}

.texto-contribuicoes-versiculo p {
  padding: 1rem;
  border-radius: 5px;
}

/* Container Principal */
.contribuicoes-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5rem;
}

/* Texto da Seção */
.texto-contribuicoes p {
  font-size: 1.7rem;
  color: var(--secondary-color);
  margin: 0 auto;
  font-family: var(--secondary-font-bkp);
}

/* Botões de Doação */
.botoes-contribuicoes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Botões Estilizados */
.btn-doar {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  background-color: var(--primary-color);
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: white;
  transition: background-color 300ms ease, transform 300ms ease;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
  transform: none !important;
}

.btn-doar img {
  width: 25px;
  margin-right: 10px;
}

.btn-doar:hover {
  background-color: var(--primary-color-hover);
  transform: scale(1.05) !important;
}

/* Responsividade */
@media (max-width: 768px) {
  .botoes-contribuicoes {
    flex-direction: column;
    gap: 15px;
  }

  .contribuicoes-content .btn-doar {
    width: 100%;
  }

  .texto-contribuicoes p {
    font-size: 1.5rem;
    width: 90%;
  }

  .texto-contribuicoes-versiculo p {
    bottom: -47px;
    right: 10px;
  }

  .contribuicoes-content .texto2 p {
      line-height: 2.5rem;
      font-size: 1.5rem;
  
  }

  .scribble-circle {
    font-size: 25px !important;
  }

  .scribble-underline {
    font-size: 25px !important;
  }

  .texto-contribuicoes-versiculo span {
    left: 50%;
    transform: translate(-50%, 0%);
    bottom: -50px;
  }
}

@media (max-width: 1024px) {
  .texto-contribuicoes-versiculo span {
    bottom: -50px;
    right: -12px;
  }
}

.info-contribuicao {
  padding: 1rem;
  background: #0c0c0c82;
  border-bottom: 5px solid #f97316;
  border-radius: 5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 1rem 0;
}

/* background: black;
padding: 1.5rem 1rem;
border-radius: 15px; */


.info-contribuicao:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.info-contribuicao span {
  display: block;
  font-family: var(--primary-font, Arial, sans-serif);
  font-size: 1.5rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0.5rem;
}

.info-contribuicao p {
  font-family: var(--primary-font, Arial, sans-serif);
  font-size: 1.2rem;
  text-align: center;
  margin: 0.2rem 0;
  color: #ffffff;
}

.pix-contribuicoes-img {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.pix-contribuicoes-img img {
  max-width: 75%;
  height: auto;
  border-radius: 5px;
}

/*LOCALIZAÇÃO--------------------------*/
.localizacao-igreja {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

.mapa-container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 45%; /* Proporção mais adequada para o mapa */
  height: 0;
  overflow: hidden;
}

.mapa-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .mapa-container {
    width: 95%;
    padding-bottom: 60%; /* Proporção mais alta para mobile */
  }
}

/*---------------------------*/
/* Tela de sobreposição inicial */
.overlay-inicial {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background: #000000;
}

.texto-central {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  color: #f3f3f3;
  font-family: "Anton", sans-serif;
  font-size: 3rem;
}

.texto-linha {
  font-size: 5rem;
  color: #ffffff;
  text-transform: uppercase;
}

/* Responsividade */
@media (max-width: 768px) {
  .texto-central img {
    width: 100%;
  }
}

@media (max-width: 1450px) {
  .texto-central img {
    width: 100%;
  }
}

/* Conteúdo principal oculto inicialmente */
.conteudo {
  opacity: 0;
  text-align: center;
  color: #fff;
}

.container-titulo {
  position: relative;
  text-align: center;
  font-family: var(--primary-font);
  margin-bottom: 6rem;
  z-index: 0;
}

/* Texto de fundo preto com sombra */
.text-shadow {
  position: absolute;
  top: 75px;
  left: 140px;
  font-size: 3.7rem;
  font-weight: 700;
  transform: rotate(-8deg);
  opacity: 0.7;
  text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.4);
  background: #cd4400;
  z-index: -1;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
  padding: 0 0.5em;
  width: max-content;
}

/* Texto principal laranja com fundo */
.text-main {
  font-size: 4rem;
  font-weight: bold;
  color: white;
  background: #ef6a01;
  padding: 0.2em 0.5em;
  display: inline-block;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
}

/* global */
@media (max-width: 768px) {
  .form-container {
    width: 80% !important;
    margin-top: 3rem !important;
  }

  .form-container .btn-submit {
    font-size: 1rem !important;
    padding: 5px !important;
  }
}

.form-container {
  padding: 30px;
  background-color: #f3f3f3;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: #2d2d2f;
  width: 100%;
  max-width: 500px;
  margin: auto;
  margin: 1.5rem 0;
}

.form-container .form-control {
  background-color: #fff;
  color: #2d2d2f;
  border: 1px solid #ef6a01;
  border-radius: 5px;
  font-size: 1rem;
}

.form-container .form-control:focus {
  border-color: #d05c00; /* Cor mais intensa ao focar */
  box-shadow: 0 0 5px rgba(239, 106, 1, 0.3); /* Leve brilho laranja */
}

/* Estilo do botão de envio */
.form-container .btn-submit {
  background-color: #ef6a01; /* Cor de fundo laranja */
  color: #ffffff; /* Texto branco */
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-container .btn-submit:hover {
  background-color: var(--primary-color-hover);
  transform: scale(1.05);
}

.form-container .text-center {
  font-family: var(--secondary-font);
}

.form-container .form-label {
  font-weight: 600;
  color: #ef6a01;
}

@media (max-width: 1550px) {

  .text-main {
    font-size: 3rem;
}

  .text-shadow {
    font-size: 2.7rem;
    }
}

@media (max-width: 768px) {
  .form-container {
    width: 80% !important;
    margin-top: 3rem !important;
  }

  .form-container .btn-submit {
    font-size: 1rem !important;
    padding: 5px !important;
  }
}

::selection {
  background-color: #ef6a01; /* Cor de fundo da seleção */
  color: #ffffff; /* Cor do texto selecionado */
}

/* Para navegadores que usam ::-moz-selection (Firefox) */
::-moz-selection {
  background-color: #ef6a01;
  color: #ffffff;
}