:root {
    --primary-color: #053e88; /* Azul */
    --secondary-color: #333; /* Cor escura para o texto */
    --background-light: #f9f9f9;
    --white: #fff;
    --accent-green: #34A853; /* Verde para botões */
  }

  .banner {
    position: relative;
    width: 100%;
    height: 350px;
    background-image: url('/img/IMG_4498.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Efeito escurecido */
    
}

.texto {
    position: relative;
    z-index: 2;
    max-width: 700px;
    animation: fadeIn 1s ease-in-out;
}


.banner h1 {
    font-size: 1.8rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
    animation: slideIn 1s ease-in-out;
}

.banner p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 15px;
    animation: fadeIn 1.5s ease-in-out;
}

/* Botão "Ler Mais" */
.btn-ler-mais {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background: #007bff;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-ler-mais:hover {
    background: #0056b3;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}


/* Estiliza o texto */
.texto {
    position: absolute;
    z-index: 2;
    max-width: 80%;
}
.sobre p {
  padding: 10px;
  text-align: justify;
}

  .hero-sobre{
    padding: 80px 5%;
    min-height: 200px;
  }
  .hero-sobre img{
    filter: blur(65px);
  }
  .hero-sobre h2{
    color: #f9f9f9;
    text-align: left;
  }
  .hero-sobre-pg h1 {
    font-size: 5.4em;
    max-width: 800px;
    margin-bottom: 0px;
    margin-top: 160px;
  }

  .secao-sobre-pg h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    margin-top: 0px;
  }
  .secao-sobre-pg h3 {
    text-align: justify;
    font-size: 3rem;
     
  }
  
  .secao-sobre-pg p {
    text-align: justify;
  }
  
  .secao-sobre-pg img {
    width: 60%;
    size-adjust: auto;
    padding: 20px;
    border-radius: 18px;
  }
  
  .secao-sobre-pg button {
    background-color: #007bff;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  .gallery {
    padding: 20px;
    text-align: center;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}
  
.gallery-item:hover {
    transform: scale(1.2);
    cursor: pointer;
}
 .fundation{
  justify-content: center;
  align-items: center;
  padding: 50px;
  background-color: #f9f9f9;
  text-align: center;
  width: 100%;

 }
.fundation img {
    width: 80%;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    
}
.fundation p {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    text-align: justify;
}
.gallery-item {
    text-align: center;
    transition: 0.5s;
float: left;
    width: 400px;
    height: 200px;
background-color: white;
}

.gallery-item img {
    width: 50%;
    height: auto;
    border-radius: 5px;
   
}

.gallery-item p {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

/* Container */
.valores-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 50px 20px;
  background: var(--background-light);
}

/* Blocos de conteúdo */
.content-valores {
  background: var(--white);
  padding: 25px;
  width: 80%;
  max-width: 600px;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 5px 15px var(--shadow-color);
  transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

/* Títulos */
.content-valores h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

/* Texto */
.content-valores p {
  color: var(--secondary-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Animação ao passar o mouse */
@keyframes hoverEffect {
  0% {
      transform: scale(1);
      box-shadow: 0 5px 15px var(--shadow-color);
  }
  100% {
      transform: scale(1.1);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
}

/* Aplica a animação */
.content-valores:hover {
  animation: hoverEffect 0.6s forwards;
  cursor: pointer;
}