/*Inicio */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #e7eaee;
  text-align: center;
}

/* Menu de navegação responsivo */
.navbar {
  background-color: #003366; /*Cor dos links cabeçalho*/
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.navbar a {
  color: #ffffff;
  text-decoration: none;
  margin: 7px 12px;
  font-weight: bold;
  font-size: 1.5em;
}

.navbar a:hover {
  text-decoration: underline;
}

/* Cabeçalho com logo e título */
.logo-e-titulo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 20px;
}

.logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 40px;
}

.titulo-principal {
  font-size: 2em;
  color: #eaedf0;  /* Texto Amigos da Graça*/
  margin: 0;
  text-align: center;
  height: 10vh; /* Reduz a altura da seção */
}

/* Texto deslizante */
.deslizante-central {
  font-size: 1.8em;
  color: #003366;
  text-align: center;
  margin-top: 80px;
  animation: deslizar-central 1.5s ease-out forwards;
  position: relative;
}

@keyframes deslizar-central {
  from {
    left: -100%;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}

/* Texto piscando */
.piscando {
  font-size: 2.5em;
  color: #1215e6;
  animation: piscar 2s infinite;
  text-align: center;
  margin-top: 20px;
  padding: 0 30px;
}

@keyframes piscar {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

/* Responsividade */
@media (max-width: 600px) {
  .titulo-principal {
    font-size: 1.5em;
  }

  .deslizante-central {
    font-size: 1.2em;
  }

  .piscando {
    font-size: 1.4em;
  }

  .navbar a {
    font-size: 0.9em;
    margin: 6px;
  }

  .logo {
    width: 80px;
  }
}

/* Seções centrais */
.inicio-centralizado {
  display: flex;   /*Texto Bem vindo*/
  justify-content: center; /* Alinha no topo */
  align-items: center;
  height: 60vh; /* Reduz a altura da seção */
  flex-direction: column;
  text-align: center;
}

.contato {
  display: flex;
  flex-direction: column;
  justify-content: center;     /* Centraliza verticalmente */
  align-items: center;         /* Centraliza horizontalmente */
  height: 90vh;               /* Ocupa toda a altura da tela */
  text-align: center;
  padding: 0 30px;
  background: transparent;     /* Usa o fundo degradê do body */
}

.titulo-contato {
  font-size: 2.5em;
  font-weight: bold;
  color: #003366;
  margin-bottom: 20px;
}

.texto-contato,
.email-contato,
.telefone-contato,
.endereco-contato {
  font-size: 1.4em;
  color: #ffffff;
  margin: 10px 0;
}

.logo-contato {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.logo-contato-img {
  max-width: 200px;
  height: auto;
}


/*Formulário*/
.formulario-google {
  margin-top: 70px;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  padding:0 20px;
  position: relative;
  left: -100px; /* Desloca levemente para a esquerda */
}

.iframe-formulario {
  width: 260%;
  height: 600px;
  border: 4px solid #0e24a3;     /* Borda azul */
  border-radius: 16px;           /* Bordas arredondadas */
  box-shadow: 0 0 12px rgba(240, 238, 238, 0.945); /* Sombra leve opcional */
}

/* Título "Quem Somos?"*/

.titulo-quem-somos {
  font-size: 2.0em;
  font-weight: bold;
  color: #e9e9f1; 
  margin-bottom: 30px;
  text-align: center;
}


.subtitulo-historico {
  font-size: 1.5em;
  font-weight: bold;
  color: #201391;
  margin-bottom: 20px;
  text-align: left;
}

.quem-somos { /*Texto*/
  padding: 50px 30px;
  max-width: 900px; /*Distancia texto*/
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.8em;
  text-align: justify;
  color:#201391
}

.logo-quem {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.logo-quem-img {
  max-width: 200px;
  height: auto;
}

/*Seçao Redes*/
.section.redes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh; 
  background-image: url("imagem/logo.jpg");
  background-size: 600px;         /* Define o tamanho do logo */
  background-position: center;    /* Centraliza o logo */
  background-repeat: no-repeat;
  padding: 40px 20px;
  text-align: center;
}

.titulo-redes {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #edecf3;
  margin-bottom: 20px;
}

.links-redes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Estilo dos botões */
.social-link {
  background-color: #003366;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  padding: 12px 24px;
  border-radius: 8px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.social-link:hover {
  background-color: #ffffff;
  color: #003366 !important;
}

/* Seção Projetos */
.cabecalho-projetos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  text-align: center;
}

.titulo-projetos {
  font-size: 2.7em;
  font-weight: bold;
  color: #f1f1f7;
  margin: 20px 0;
}

.projetos-conteudo {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 0 30px;
}

.texto-projetos {
  max-width: 800px;
  text-align: left;
  font-size: 1.4em;
  line-height: 1.8em;
  color: #003366;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: linear-gradient(to bottom, #003366, #3399ff, #ffffff);
  min-height: 100vh;
  font-family: Arial, sans-serif;
}

.eventos-campanhas {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;     /* Alinha no topo */
  align-items: center;        /* Centraliza horizontalmente */ 
  height: 100vh;
  text-align: center;
  padding-top: 60px;  /* Espaço entre o topo e o conteúdo */
  padding-left: 30px;
  background: transparent;
}

.titulo-eventos {
  font-size: 2.4em;
  font-weight: bold;
  color: #003366;
  margin-bottom: 20px;
}

.texto-eventos {
  font-size: 1.6em;
  color: #ecebf1;
  max-width: 700px;
}

.logo-eventos {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.logo-eventos-img {
  max-width: 200px;
  height: auto;
}

.como-ajudar {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding-top: 120px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 100px;
  background: transparent;
}

.titulo-ajuda {
  font-size: 2.4em;
  font-weight: bold;
  color: #003366;
  margin-bottom: 60px; /* Espaço entre título e texto */
}

.texto-ajuda {
  font-size: 1.8em; /* Letra maior */
  color: #3c15ca;
  max-width: 800px;
  margin-top: 0;
}

.logo-ajuda {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.logo-ajuda-img {
  max-width: 200px;
  height: auto;
}