@charset "UTF-8";
/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  margin: 0;
  height: 100vh;
  background-image: url("../images/background/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

.btn-saiba-mais {
  margin-top: 50px;
  display: inline-block;
  padding: 0.6em 1.6em;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-saiba-mais:hover {
  background: #fff;
  color: black;
  border-color: #fff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}

.txt-animado {
  font-size: 25px;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  color: rgba(204, 204, 204, 0.5);
  margin-top: 20px;
  white-space: nowrap;
}
.txt-animado .texto-base {
  color: rgba(204, 204, 204, 0.5);
}

#typewriter {
  color: rgba(255, 255, 255, 0.8);
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  padding-right: 5px;
  white-space: nowrap;
  overflow: hidden;
  animation: blink 0.75s step-end infinite;
}

@keyframes blink {
  0% {
    border-color: rgba(255, 255, 255, 0.8);
  }
  50% {
    border-color: rgba(255, 255, 255, 0);
  }
  100% {
    border-color: rgba(255, 255, 255, 0.8);
  }
}
.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Seção inicio */
.h1-topo,
.span-topo,
.titulo,
.paragrafo1,
.paragrafo2,
.paragrafo3,
.paragrafo4,
.foto-pastor,
.botao-inicio {
  visibility: hidden;
}

/* Seção identidade */
.titulo-identify,
.subtitulo-identify,
.paragrafo-identify,
.img-identify {
  visibility: hidden;
}

header {
  width: 100%;
  padding: 60px 4%;
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.7s;
  z-index: 99;
}
header img {
  width: 18vh;
}
header > .container {
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
}
header.rolagem {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px 4%;
}
header.rolagem a {
  color: #f0f0f0;
}
header.rolagem img {
  width: 18vh;
}

.menu ul {
  list-style-type: none;
}
.menu ul li {
  display: inline-block;
  margin: 0 40px;
}
.menu nav a {
  color: #f0f0f0;
  text-decoration: none;
  padding: 0 50px 10px 0;
  position: relative;
}
.menu nav a::after {
  content: "";
  width: 0%;
  height: 4px;
  background-color: #f0f0f0;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.5s ease-in-out;
}
.menu nav a:hover::after {
  width: 100%;
}

.menu-mobile {
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  position: absolute;
  top: 98px;
  left: 0;
  width: 100%;
  height: 0vh;
  visibility: hidden;
  transition: 0.5s;
  overflow: hidden;
}
.menu-mobile ul {
  list-style-type: none;
}
.menu-mobile nav a {
  color: #f0f0f0;
  text-decoration: none;
  display: block;
  padding: 20px 30px;
  font-size: 16pt;
}
.menu-mobile nav a.foco {
  color: #fff;
}
.menu-mobile nav a:hover {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}
.menu-mobile.abrir {
  visibility: visible;
  height: calc(100vh - 98px);
}

#btn-menu {
  width: 32px;
  height: 32px;
  border: 2px solid #ccc;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  display: none;
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  z-index: 100;
}
#btn-menu .linha {
  width: 20px;
  height: 2px;
  background-color: #ccc;
  display: block;
  margin: 4px auto;
  position: relative;
  transform-origin: center;
  transition: 0.2s;
}
#btn-menu.ativar {
  border: 2px solid rgba(255, 0, 0, 0.8);
}
#btn-menu.ativar .linha:nth-child(1) {
  transform: translateY(6px) rotate(-45deg);
  background-color: rgba(255, 0, 0, 0.8);
}
#btn-menu.ativar .linha:nth-child(2) {
  width: 0;
}
#btn-menu.ativar .linha:nth-child(3) {
  transform: translateY(-6px) rotate(45deg);
  background-color: rgba(255, 0, 0, 0.8);
}

.identity-page {
  padding-top: 80px;
}

.banner {
  height: 100vh;
  background-image: url(../images/foto-encontros/BANNER.jpg);
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.banner h1 {
  font-size: 4em;
  color: rgba(204, 204, 204, 0.5);
}
.banner h1 span {
  color: rgba(255, 255, 255, 0.8);
}

#inicio {
  scroll-margin-top: 70px;
}
#inicio .container {
  display: flex;
  background-color: rgba(26, 26, 26, 0.7);
  color: white;
  padding: 40px;
  align-items: center;
  border-radius: 8px;
}

.image img {
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
}

.texto {
  margin-left: 30px;
  max-width: 600px;
}
.texto p {
  font-family: "Lora", serif;
  font-size: 1.2em;
  line-height: 1.4em;
}
.texto h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
}

.container-flex {
  display: flex;
}

section {
  padding: 48px;
}
section h2 {
  font-family: "Montserrat", sans-serif;
  margin-bottom: 16px;
  color: #F9A825;
  font-size: 28px;
}
section h3 {
  font-family: "Poppins", sans-serif;
  color: #FFB300;
  margin-bottom: 20px;
  font-size: 35px;
}
section p {
  font-family: "Lora", serif;
  color: #E0E0E0;
  font-size: 28px;
  margin-bottom: 10px;
}

.card-identidade {
  background-color: rgba(26, 26, 26, 0.7);
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.titulo-identify {
  font-size: 40px;
}

.subtitulo-identify {
  font-size: 30px;
}

.paragrafo-identify {
  font-size: 24px;
}

.paragrafo-sobre {
  margin-bottom: 32px;
}

.card-encontros {
  background-color: rgba(26, 26, 26, 0.7);
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.paragrafo-cultos img,
.passos img {
  width: 500px;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}
.paragrafo-cultos img:hover,
.passos img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

#cultos-igreja h2,
#nossa-identidade h2 {
  margin-bottom: 75px;
}

.legenda-cultos,
.legenda-identidade {
  margin-top: 50px;
  padding-bottom: 75px;
}

.social-links img {
  height: 25px;
}
.social-links li {
  display: inline;
  margin-right: 8px;
}
.social-links li a {
  text-decoration: none;
}

footer {
  background-color: #0D0D0D;
}
footer .container {
  display: flex;
  color: white;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
footer .container ul {
  width: 33.3%;
  list-style: none;
}
footer .container ul > p {
  margin-bottom: 40px;
}
footer .container li {
  margin: 10px 0;
}
footer .container h3 {
  margin-top: 16px;
  margin-bottom: 16px;
  font-weight: 600;
  color: #FFB300;
}
footer .container .redes-sociais img {
  margin-top: 25px;
  margin-right: 10px;
  width: 33px;
  height: 33px;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
  filter: brightness(0.8);
}
footer .container .redes-sociais img:hover {
  transform: scale(1.3) rotate(15deg);
  filter: brightness(1);
}
footer .container a {
  color: #f0f0f0;
  text-decoration: none;
}

/* RESPONSIVIDADE */
@media screen and (max-width: 1030px) {
  .menu {
    display: none;
  }
  #btn-menu {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  header ul li {
    margin: 0 20px;
  }
  #inicio .container {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }
  .texto {
    margin-left: 0;
    text-align: center;
  }
  .banner h1 {
    font-size: 3em;
  }
  .container-flex {
    flex-direction: column;
    align-items: center;
  }
  section {
    padding: 30px 0;
  }
  section h2 {
    font-size: 36px;
  }
  section p {
    font-size: 24px;
  }
  footer .container {
    flex-direction: column;
    text-align: center;
  }
  footer .container ul {
    width: 100%;
    margin-bottom: 30px;
  }
  footer .container .redes-sociais img {
    height: 20px;
  }
  .image img,
  .paragrafo-cultos img,
  .passos img {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .banner h1 {
    font-size: 2.5em;
  }
  nav a {
    padding: 0 20px 10px 0;
    font-size: 14px;
  }
  .txt-animado {
    font-size: 20px;
  }
  header {
    padding: 30px 4%;
  }
  header img {
    width: 15vh;
  }
  .container-flex {
    flex-direction: column;
    text-align: center;
  }
  .social-links img {
    height: 20px;
  }
  section h2 {
    font-size: 36px;
  }
  section p {
    font-size: 20px;
  }
  footer .container h3 {
    font-size: 18px;
  }
  footer .container ul li {
    margin: 5px 0;
  }
  footer .container .redes-sociais img {
    margin-top: 15px;
    margin-right: 8px;
  }
}
header > .container,
.menu-mobile {
  max-width: 100%;
  overflow-x: hidden;
}
/*# sourceMappingURL=.maps/main.css.map */
