body {

  font-family: Arial, Helvetica, sans-serif;

  margin: 0;

  padding-top: 60px;

  background: linear-gradient(to bottom, #000000, #1a1a1a);

  color: #fff;

  overflow-x: hidden;

  

  

}



.cabecalho-fixo {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  height: 60px;

  z-index: 1000;

  background-color: #000;

  border-bottom: 1px solid #333;

}



.ministerio {

  font-size: 50px;

  color: transparent;

  -webkit-text-stroke: 2px #f17b0b;

  margin: 0;

}



.gratos {

  font-size: 60px;

  color: #fff;

  margin: 0;

}



/* MENU */

.menu-fixo {

  background-color: #000;

  border-top: 1px solid #333;

  border-bottom: 1px solid #333;

}



.menu-container {

  display: flex;

  align-items: center;

  justify-content: space-between;

  max-width: 1000px;

  margin: 0 auto;

  padding: 10px 20px;

}



.logo-menu {

  width: 180px;

  height: 75px;

  margin: 0%;

}



.menu-fixo ul {

  display: flex;

  list-style: none;

  margin: 0;

  padding: 0;

  gap: 40px;

}



.menu-fixo ul li a {

  color: #fff;

  text-decoration: none;

  font-weight: bold;

  font-size: 16px;

}



.menu-fixo ul li a {

  position: relative;

  padding-bottom: 5px;

}



.menu-fixo ul li a::after {

  content: '';

  position: absolute;

  left: 0;

  bottom: 0;

  width: 0;

  height: 2px;

  background: #f17b0b;

  transition: width 0.3s ease-in-out;

}



.menu-fixo ul li a:hover::after {

  width: 100%;

}





/* GALERIA */

.galeria-fotos {

  width: 90%;

  max-width: 1000px;

  margin: 140px auto 40px;

  padding: 10px;

  border-radius: 10px;

  box-sizing: border-box;

}



.swiper-slide img {

  width: 100%;

  height: 190px;

  object-fit: cover;

  border-radius: 6px;

  border: 3px solid #fff;

}



/* Ajuste no h1 */

.principal h1 {

  font-size: 100px;

  font-family: 'Bebas Neue', sans-serif;

  color: transparent;

  -webkit-text-stroke: 2px #f17b0b; /* contorno laranja */

  letter-spacing: 8px;

  position: absolute;

  top: 10px;

  left: 50%;

  transform: translateX(-50%);

  z-index: 1;

}



/* Ajuste no h2 */

.principal h2 {

  font-size: 70px;

  color: #ffffff;

  position: relative;

  top: 30px;

 z-index: 2;

}





.cursivo {

  font-family: 'Great Vibes', cursive; 

  font-size: 28px;

  color: white;

  margin-top: 20px;



}



/* Ajuste na seção principal */

.principal {

  position: relative; /* importante para o ::before */

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  padding: 40px 20px;

  text-align: center;

  min-height: 80vh; /* garantir altura visível */

  

}



.principal::before {

  content: "";

  position: absolute;

  top: 0; left: 0; right: 0; bottom: 0;

  background-image: url(foto0.jpg);

  background-size: cover;

  background-position: center;

  filter: blur(5px);

  z-index: -1; /* ficar atrás do texto */

}



.card-historia {

  background-color: #f17b0b;

  color: #000;

  padding: 20px;

  border-radius: 10px;

  cursor: pointer;

  text-align: center;

  font-weight: bold;

  transition: transform 0.3s ease, background-color 0.3s ease;

  max-width: 400px;

  margin: 20px auto;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);

}



.card-historia:hover {

  background-color: #ffffff;

  transform: scale(1.3);

}

.card-principio, .card-historia {

  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.05), 0 4px 10px rgba(241, 123, 11, 0.4);

}





/* Modal */

.modal {

  display: none;

  position: fixed;

  z-index: 2000;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  overflow: auto;

  background-color: rgba(0,0,0,0.8);

}



.modal-conteudo {

  background-color: #141414;

  margin: 10% auto;

  padding: 30px;

  border: 1px solid #f17b0b;

  width: 80%;

  max-width: 600px;

  color: #fff;

  border-radius: 10px;

}



.fechar {

  color: #f17b0b;

  float: right;

  font-size: 28px;

  font-weight: bold;

  cursor: pointer;

}



.fechar:hover {

  color: #fff;

}



.historia {

  font-size: 20px;

  text-align: center;

}



/* Estilo dos Princípios */

.principios {

  background-color: black;

  padding: 20px 100px;

  text-align: center;

}



.principios h2 {

  color: #f17b0b;

  font-size: 42px;

  margin-bottom: 50px;

  text-decoration: underline;

  text-decoration-color: #f17b0b;

  font-style: italic;

}



/* Estilo do container dos cards */

.cards-principios {

  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 30px;

}



/* Estilo dos cards individuais */

.card-principio {

  background-color: #1c1c1c;

  border: 2px solid #f17b0b;

  color: #fff;

  padding: 20px;

  width: 220px;

  border-radius: 12px;

  cursor: pointer;

  text-align: center;

  transition: transform 0.5s ease;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);

  position: relative; /* necessário para posicionar o overlay */

}



.card-principio:hover {

  transform: scale(1.2);

  background-color: #292929;

}



/* Adiciona a camada de fundo fosco (overlay) no card */

.card-principio .overlay {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background-color: rgba(0, 0, 0, 0.6); /* Fundo escuro e transparente */

  z-index: 1; /* Coloca o overlay acima do conteúdo */

  opacity: 0; /* Inicialmente invisível */

  transition: opacity 0.3s ease; /* Transição suave para visibilidade */

  border-radius: 12px;

}



/* Quando o card é clicado, o overlay fica visível */

.card-principio.clicked .overlay {

  opacity: 1; /* Torna o overlay visível */

}



.card-principio.clicked {

  color: #f17b0b; /* Alterar a cor do texto quando o card é clicado */

}



/* Estilo da imagem dentro do card */

.card-principio img {

  width: 100px;

  height: 100px;

  object-fit: cover;

  border-radius: 50%;

  margin-bottom: 15px;

  border: 2px solid #f17b0b;

}







@media (max-width: 768px) {
  .cabecalho-fixo {

    height: 50px;
  }

  .ministerio { font-size: 30px; }

  .gratos { font-size: 36px; }

  .principal h1, .principal h2 { font-size: 30px; }

  .logo-menu {
    width: 140px;
    height: auto;


  }
  
  body {
    padding-top: 50px;
  }
  .swiper-slide img {
    
    width: 100%;

    height: auto;

  }

  

  .cards-principios {

    flex-direction: column;

    align-items: center;

  }



  .card-principio {

    width: 90%;

  }



  .card-historia {

    max-width: 80%;

  }

  

  .menu-fixo ul {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;

  }

}

.rodape {

  

  color: #fff;

  padding: 40px 20px;

  text-align: center;

  margin-top: 40px;

  background: linear-gradient(to top, #000000, #141414);

  border-top: 4px solid #f17b0b;

  border-bottom: 2px solid #f17b0b;

  

}



.rodape-container {

  max-width: 1000px;

  margin: 0 auto;

}



.rodape-logo {

  width: 150px;

  height: auto;

  margin-bottom: 20px;

}



.rodape-frase {

  font-style: italic;

  color: #f17b0b;

  margin-bottom: 20px;

  font-size: 18px;

  font-weight: 500;





  

}



.rodape-contato p {

  margin: 5px 0;

  font-size: 15px;

}



.copyright {

  margin-top: 20px;

  font-size: 13px;

  color: #999;

}

* {

  box-sizing: border-box;

  transition: all 0.3s ease-in-out;

}

.youtube-cards {

  padding: 130px 25px;

  text-align: center;

  background-color: #000000;

}



.youtube-cards h2 {

  color: #f17b0b;

  margin-bottom: 40px;

  font-size: 36px;

  font-weight: 700;

}



.card-container {

  display: flex;

  justify-content: center;

  gap: 30px;

  flex-wrap: wrap;

}



.youtube-card {

  background-color: #1c1c1c;

  border: 2px solid #f17b0b;

  border-radius: 10px;

  padding: 20px;

  width: 250px;

  cursor: pointer;

  transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.youtube-card:hover {

  transform: scale(1.05);

  box-shadow: 0 4px 20px rgba(241, 123, 11, 0.4);

}



.youtube-card img {

  width: 100%;

  height: 150px;

  object-fit: cover;

  border-radius: 6px;

  margin-bottom: 15px;

}



.youtube-card h3 {

  color: #fff;

  font-size: 18px;

}





.versiculo-destaque {

  background: linear-gradient(to right, #1a1a1a, #000);

  padding: 60px 20px;

  text-align: center;

  color: #fff;

  border-top: 2px solid #f17b0b;

  border-bottom: 2px solid #f17b0b;

}



.versiculo-conteudo h2 {

  font-size: 32px;

  color: #f17b0b;

  margin-bottom: 20px;

}



.versiculo-conteudo blockquote {

  font-size: 22px;

  font-style: italic;

  color: #ffffff;

  max-width: 800px;

  margin: 0 auto;

  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);

  transition: opacity 0.5s ease;

}

/* Estilo dos cards de Programação e Bíblia */

.card-programacao, .card-biblia {

  background-color: #1c1c1c;

  border: 2px solid #f17b0b;

  color: #fff;

  padding: 20px;

  width: 220px;

  border-radius: 12px;

  cursor: pointer;

  text-align: center;

  transition: transform 0.5s ease;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);

  position: relative;

  

}

.cards-duplos {

  display: flex;

  justify-content: center;

  gap: 30px;

  flex-wrap: wrap; /* Isso permite que os cards se ajustem em telas menores */

  margin-top: 30px;

}

.card-programacao:hover, .card-biblia:hover {

  transform: scale(1.2);

  background-color: #292929;

}



/* Adiciona a camada de fundo fosco (overlay) nos cards */

.card-programacao .overlay, .card-biblia .overlay {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background-color: rgba(0, 0, 0, 0.6); /* Fundo escuro e transparente */

  z-index: 1; /* Coloca o overlay acima do conteúdo */

  opacity: 0; /* Inicialmente invisível */

  transition: opacity 0.3s ease; /* Transição suave para visibilidade */

  border-radius: 12px;

}



/* Quando o card é clicado, o overlay fica visível */

.card-programacao.clicked .overlay, .card-biblia.clicked .overlay {

  opacity: 1; /* Torna o overlay visível */

}



.card-programacao.clicked, .card-biblia.clicked {

  color: #f17b0b; /* Alterar a cor do texto quando o card é clicado */

}



/* Estilo da imagem dentro dos cards */

.card-programacao img, .card-biblia img {

  width: 100px;

  height: 100px;

  object-fit: cover;

  border-radius: 50%;

  margin-bottom: 15px;

  border: 2px solid #f17b0b;

}

.biblia-online {

   background-color: black;

   padding: 20px 100px;

  text-align: center;

  }

  

  .biblia-online h2 {

    color: #f17b0b;

    font-size: 42px;

    margin-bottom: 50px;

    text-decoration: underline;

    text-decoration-color: #f17b0b;

    font-style: italic;

  }

  .programacoes {

    background-color: rgb(0, 0, 0);

    padding: 20px 100px;

    text-align: center;

    border-top: 2px solid #f17b0b;

    border-bottom: 2px solid #f17b0b;

   }

   

   .programacoes h2 {

     color: #f17b0b;

     font-size: 42px;

     margin-bottom: 50px;

     text-decoration: underline;

     text-decoration-color: #f17b0b;

     font-style: italic;

   }

   .evangelismo {

    padding: 80px 20px;

    background-color: #000;

    color: #fff;

    text-align: center;

    border-top: 2px solid #f17b0b;

    overflow-x: hidden;

  }

  

  .evangelismo h2 {

    font-size: 42px;

    color: #f17b0b;

    margin-bottom: 20px;

    text-decoration: underline;

    text-decoration-color: #f17b0b;

    font-style: italic;

  }

  

  .evangelismo-texto {

    font-size: 20px;

    max-width: 800px;

    margin: 0 auto 40px;

    line-height: 1.6;

  }

  

  .galeria-evangelismo {

    width: 90%;

    max-width: 1000px;

    margin: 0 auto;

  }

  

  .evangelismo-fotos h2 {

    font-size: 42px;

    color: #f17b0b;

    margin-bottom: 40px;

    text-decoration: underline;

    text-decoration-color: #f17b0b;

    font-style: italic;

  }

  

  .mosaico-evangelismo {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

    gap: 15px;

    padding: 0;

    overflow: hidden;

    

  }

  

  .mosaico-evangelismo img {

    width: 100%;

    height: 200px;

    object-fit: cover;

    border-radius: 10px;

    border: 3px solid #fff;

    transition: transform 0.3s ease;

  }

  

  .mosaico-evangelismo img:hover {

    transform: scale(1.05);

  }

  .etexto {

    font-size: 20px;

    max-width: 800px;

    margin: 0 auto 40px;

    line-height: 1.6;

  }

  .doacao-secao {

    background: #000;

    padding: 60px 20px;

    text-align: center;

    border-top: 2px solid #f17b0b;

    color: #fff;

  }



  

  .doacao-secao h2 {

    color: #f17b0b;

    font-size: 36px;

    margin-bottom: 40px;

    

    font-style: italic;

  }

  

  .doacao-cards {

    display: flex;

    justify-content: center;

    gap: 40px;

    flex-wrap: wrap;

  }

  

  .card-doacao {

    background-color: #1c1c1c;

    border: 2px solid #f17b0b;

    border-radius: 12px;

    padding: 20px;

    width: 220px;

    cursor: pointer;

    transition: transform 0.3s ease;

    text-align: center;

  }

  

  .card-doacao:hover {

    transform: scale(1.1);

    background-color: #292929;

  }

  

  .card-doacao img {

    width: 80px;

    height: 80px;

    margin-bottom: 15px;

  }

  

  .card-doacao h3 {

    color: #fff;

    font-size: 18px;

  }

  

  .qr-code-box {

    margin-top: 30px;

  }

  

  .qr-code-box img {

    width: 200px;

    height: auto;

    border: 2px solid #f17b0b;

    border-radius: 10px;

  }

  

  .oração h1 {

    text-align: center;

    flex-wrap: nowrap;

    color: #f17b0b;

    font-size: 40px;

    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif
    

  }

  .cont h1 {

  

    text-align: center;

    color: #f17b0b;

    font-size: 50px;

    font-family:Arial, Helvetica, sans-serif

    

  }

  .contt {

   text-align: center;

   padding: 80px 20px;

  }



  .h {

    

    text-align: center;

  }



  .escola h1 {

    text-align: center;
    flex-wrap: nowrap;

    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

    font-size: 40px;

    color: #f17b0b;

    margin-top: 20px;

    margin-bottom: 20px;

    

  }

  html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.swiper-container {
  
  max-width: 100vw;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  flex: 0 0 auto;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}/* Popup */
.popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px; /* garante espaço em telas pequenas */
}

.popup-content {
  background: rgba(0, 0, 0, 0.9);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  max-width: 350px;
  width: 100%;
  position: relative; /* importante para posicionar o botão fechar */
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Botão fechar */
.popup-content .fechar {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: transparent;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
}

/* Botões iOS/Android */
.popup-content .botoes {
  display: flex;
  justify-content: space-around;
  margin-top: 15px;
  flex-wrap: wrap;
}

.popup-content .btn {
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  margin: 5px 0;
}

.btn.ios {
  background: #007aff;
}

.btn.android {
  background: #3ddc84;
}

