:root {
  --primary-color-T2: rgba(239, 106, 1, 0.74);
  --primary-color-T1: rgba(239, 106, 1, 0.89);
  --primary-color: #ef6a01;
  --primary-color-hover: #d05c00;
  --primary-color-D2: #a94200;
  --primary-color-D3: #8a3500;
  --secondary-color: #f3f3f3;
  --dark-color: #2d2d2f;
  --white-color: #ffffff;
  --gradient-overlay: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    #2d2d2f 100%
  );
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
  border: none;
}

a {
  text-decoration: none;
}

body {
  background-color: var(--dark-color);
  overflow-x: hidden;
  height: 100%;
  font-family: var(--secondary-font-bkp);
}

.wrapper {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.tituloCirc {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}

.circulo-bg {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  z-index: -1;
  width: 35%;
}

.grifado-bg {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  z-index: -1;
  width: 85%;
}

.grifado1-bg {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  z-index: -1;
  width: 85%;
}

.seta-bg {
  position: absolute;
  top: -65%;
  right: -50rem;
  transform: rotate(70deg);
  height: auto;
  z-index: 0;
  width: 150%;
}

.treslinhas-bg {
  position: absolute;
  top: -35%;
  left: 20%;
  transform: rotate(-50deg);
  height: auto;
  z-index: 1;
  width: 15%;
}

/* Texto Rotacionado */
/* Seção Principal */
.nome-lateral {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Texto na Esquerda */
.texto-esquerdo {
  position: fixed;
  left: 44px;
  transform: rotate(90deg);
  transform-origin: left;
  font-size: 7rem;
  font-weight: 700;
  color: #ffffff1c;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: var(--primary-font);
  z-index: 1;
  top: 160px;
}

/* Texto na Direita */
.texto-direito {
  position: fixed;
  right: 44px;
  transform: rotate(270deg);
  transform-origin: right;
  font-size: 7rem;
  font-weight: 700;
  color: #ffffff1c;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: var(--primary-font);
  z-index: 1;
  top: 80px;
}

/* Responsividade */
@media (max-height: 600px) {
  .texto-esquerdo,
  .texto-direito {
    font-size: 3rem; /* Reduz o tamanho em telas menores */
  }
}

.quem_somos,
.palavras,
.eventos,
.contribuicoes,
.pastores {
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(0 0 0 / 0%), rgb(0 0 0 / 100%));
  pointer-events: none;
}

/* -----------NAV---------- */
.line-separator {
  content: "";
  position: absolute;
  /* bottom: 4rem; */
  left: 2%;
  width: 96%;
  height: 2px;
  background-color: #aeaeae4d;
  z-index: 1;
}

.sub-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 1;
}

.restricted-access-group,
.icons-group {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.icons-group {
  gap: 20px;
  margin-right: 25px;
}

.restricted-access-group {
  margin-left: 20px;
}

.icon-content {
  position: relative;
}

.icon-content .tooltip {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  font-size: 14px;
  transition: all 0.3s ease;
  z-index: 10;
  height: fit-content;
}

.icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  bottom: -40px;
}

.icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: var(--secondary-color);
  background: #2d2d2f;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}

.icon-content a i {
  font-size: 17px;
  z-index: 1;
  
}

.icon-content a:hover {
  color: white;
}

.icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}

.icon-content a:hover .filled {
  height: 100%;
}

.icon-content a .filled,
.icon-content a ~ .tooltip {
  background-color: var(--primary-color);
}

nav {
  background-color: #c93b3b00;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: 0.3s ease;
  top: 0;
}

.nav-tabs1 {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  position: relative;
  align-items: center;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

nav ul li {
  margin-right: 20px;
  display: flex;
}

nav ul li a {
  text-decoration: none;
  color: var(--secondary-color);
  font-family: var(--secondary-font-bkp);
  padding: 10px 15px;
  transition: background-color 0.3s ease, transform 0.3s ease,
    box-shadow 0.3s ease;
  text-transform: uppercase;
  border-radius: 10px;
  font-weight: 600;
}

nav ul li a:hover {
  background-color: var(--primary-color-hover);
  transform: translateY(-5px);
  box-shadow: 3px 2px 15px 0px rgba(0, 0, 0, 0.2);
 
}

/* Estilo da logo */
nav .logo img {
  width: 200px;
  height: 6rem;
  display: block;
  object-fit: cover;
}

nav .logo {
  height: auto;
  background-color: transparent;
  margin-left: 20px;
}

@media (max-width: 768px) {
  nav .logo {
    width: 25%;
  }
}

/*FOOTER----------------------------------------------------*/
.site-footer {
  padding: 60px 20px;
  border-top: 1px solid #dddddd59;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  background-color: var(--dark-color);
}

.footer-container {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
}

.footer-logo img {
  width: 12rem;
  transition: opacity 0.3s;
}

.footer-logo img:hover {
  opacity: 0.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.footer-links a {
  font-size: 16px;
  text-decoration: none;
  color: #b7b7b7;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #666;
}

.footer-social a {
  font-size: 24px;
  color: #b7b7b7;
  margin: 0 10px;
  transition: transform 0.3s, color 0.3s;
}

.footer-social a:hover {
  color: #555;
  transform: scale(1.1);
}

.footer-info {
  font-size: 14px;
  color: #b7b7b7;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-map iframe {
    height: 250px;
  }
}

.bg-white-p {
  background-color: #2f2f2d4a;
  width: 85%;
  height: 62%;
  position: absolute;
  top: 35%;
  z-index: 0;
}

.bg-white-p::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: -1;
  pointer-events: none;
}

.svg-bg {
 /* Para que o conteúdo fique acima da imagem */
  width: 100%; /* Ocupa toda a largura da seção */
  height: auto;
  overflow: hidden; /* Garante que nada "vaze" fora do contêiner */
}

.svg-bg img {
  position: absolute;
  bottom: 37rem;
  left: 0%;
  transform: rotate(-118deg);
  width: 43%;
  z-index: 1;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.3));
}