
/* Codigo efeito da imagem aumenta*/

image {
  width: 100%;
  height: 100%;
}
.image img {
  -webkit-transition: all 1s ease;
  /* Safari and Chrome */
  -moz-transition: all 1s ease;
  /* Firefox */
  -o-transition: all 1s ease;
  /* IE 9 */
  -ms-transition: all 1s ease;
  /* Opera */
  transition: all 1s ease;
}
.image:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}
/* Fim Codigo efeito da imagem aumenta*/



/* textos*/
.texto {
  margin-bottom: 20px; 
  position: relative;
  padding-bottom: 20px;
}

.texto h1, 
.texto h2 {
  font-size: 32px;
  text-align: center;  
  font-weight: 700;
  margin-bottom: 10px; 
  color: #363232;
}

.texto h3, 
.texto h4 {
  text-align: left;
  font-size: 24px;
  font-weight: 600;
  color: #363232;
  margin-bottom: 10px; 
   text-align: center;
}

.texto h5, 
.texto h6 {
  text-align: left;
  font-size: 20px;
  font-weight: 500;
  color: #363232;
  margin-bottom: 8px;
   text-align: center;
}


.texto p {
  text-align: justify;
  font-size: 18px;
  font-weight: 400;
  color: #555; /* Cor mais neutra para melhor legibilidade */
  line-height: 1.6; /* Espaçamento entre linhas melhorado */
  margin-bottom: 10px;
}

/* Links */
.texto a {
  font-size: 18px;
  font-weight: 600;
  color: #051c67;
  text-decoration: none;
}

.texto a:hover {
  text-decoration: underline;
}
/* Fim dos textos*/

/* Título da galeria*/

.custom-parallax {
       background-size: cover; /* Faz a imagem cobrir toda a área */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat; /* Evita repetição da imagem */
    height: 400px; /* Define uma altura fixa */
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Fim dos textos*/



/* card customizado*/

     .custom-card {
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }
        .custom-card:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }
        .custom-card img {
            width: 50px;
            margin-bottom: 10px;
        }
        .custom-card-title {
            font-size: 18px;
            font-weight: bold;
        }
       /* fim customizado*/