/* Estilos Globais */

/* Adicione aqui os estilos globais */




/*
	COMENTARIOS GLOBAIS
*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        padding: 0px 10px 0 10px;
    }
}

.container-fluid {
    width: 100%;
    padding-left: 120px;
    padding-right: 120px;
    margin-right: auto;
    margin-left: auto;
}

.container {
    width: 100%;
    padding-right: 4px;
    padding-left: 4px;
    margin-right: auto;
    margin-left: auto;
}

p {
    font-size: 14px;
    line-height: 21px;
}

/* INICIO - Header */

#header.header-scrolled {
    background: rgba(64, 137, 93, 0.9);
    height: 60px;
}

.nav-menu a {
    font-size: 12px;
    padding: 15px 0 15px 21px;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 25px;
    top: calc(120% - 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 25%);
    transition: ease all 0.3s;
    line-height: 1px;
}

.nav-menu .drop-down ul a {
    padding: 10px 10px;
    font-size: 12px;
    font-weight: 500;
    text-transform: none;
    color: #01036f;
}

.nav-menu .drop-down li {
    min-width: 125px;
    position: relative;
}

@media(max-width:768px) {
    .mobile-nav {
        position: fixed;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        z-index: 9999;
        overflow-y: auto;
        background: #fff;
        transition: ease-in-out 0.2s;
        opacity: 0;
        visibility: hidden;
        border-radius: 10px;
        padding: 10px 0;
        font-size: 14px;
    }
}

/* FIM - Header */




/* INICIO - Hero Section */

#hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(45deg, #40895d, #010483);
  position: relative;
}

#hero .container {
  position: relative;
  padding-top: 70px;
  z-index: 2;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: #eee;
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #40895d;
}

#hero .btn-get-started:hover {
  background: #010483;
}

#hero .hero-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 1;
  position: absolute;
  bottom: 0;
}

#hero .hero-waves .wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

#hero .hero-waves .wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

#hero .hero-waves .wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@media (max-width: 991px) {
  #hero {
    height: auto;
  }
  #hero .container {
    padding-top: 60px;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}

/* FIM - Hero Section */

/* INICIO - About Section */

#about {
  padding: 30px 0 30px 0;
}

#imagem_nucleo {
  margin-top: 20px;
}

.texto_registro_apresentacao {
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: justify;
}

#titulo_hospital {
  font-size: 2.5rem;
  color: #010483;
  line-height: 20px;
  margin-bottom: 20px;
}

.titulo_instituicao {
  font-size: 1.5rem;
  margin-bottom: 10px;
  margin-top: 15px;
  color: #3A5FCD;
  line-height: 20px;
}

.texto_informacao {
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: justify;
}

@media (max-width: 768px) {
  #titulo_hospital {
    text-align: center;
    font-size: 34px;
    padding-bottom: 10px;
  }
  .texto_registro_apresentacao {
    text-align: center;
  }
  .titulo_instituicao {
    text-align: center;
  }
  .texto_informacao {
    text-align: center;
  }
}

/* FIM - About Section */

/* INICIO - Objetivos Section */

#objetivos {
  padding: 30px 0 30px 0;
}

.objetivos .content h3 {
  font-weight: 600;
  font-size: 36px;
  color: #010483;
  font-family: "Oswald";
}

.objetivos .content + .content {
  margin-top: 25px;
}

.objetivos .content ul {
  list-style: none;
  padding: 0;
  font-size: 14px;
  margin-left: 10px;
}

.objetivos .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #010483;
}

#titulo_outro_objetivo {
  font-size: 22px;
  color: #010483;
  padding-top: 20px;
}

.texto_registro_geral {
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: justify;
}

#titulo_objetivo {
  font-size: 22px;
  color: #010483;
  padding-top: 20px;
}

.texto_objetivo {
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: justify;
}

#img_objetivo {
  margin-top: 20px;
}

#titulo_objetivo2 {
  font-size: 22px;
  color: #010483;
  padding-top: 20px;
}

.texto_objetivo2 {
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: justify;
}

#titulo_objetivo3 {
  font-size: 22px;
  color: #010483;
  padding-top: 20px;
}

#img_objetivo2 {
  margin-top: 20px;
}

#titulo_objetivo4 {
  font-size: 22px;
  color: #010483;
  padding-top: 20px;
}

.texto_objetivo3 {
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: justify;
}

.carousel-container {
  margin-top: 20px;
}

.carousel_titulo {
  font-size: 1.5rem;
  color: #fff;
}

.carousel_titulo2 {
  font-size: 1.1rem;
  color: #fff;
}

@media (max-width: 768px) {
  .objetivos .content + .content {
    margin-top: 0px;
  }
  .objetivos .content h3 {
    text-align: center;
    font-size: 34px;
    padding-bottom: 10px;
  }
  #titulo_outro_objetivo {
    text-align: center;
  }
  .texto_registro_geral {
    text-align: center;
  }
  #titulo_objetivo {
    text-align: center;
  }
  .texto_objetivo {
    text-align: center;
  }
  #img_objetivo {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  #titulo_objetivo2 {
    text-align: center;
  }
  .texto_objetivo2 {
    text-align: center;
  }
  #titulo_objetivo3 {
    text-align: center;
  }
  #img_objetivo2 {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  #titulo_objetivo4 {
    text-align: center;
  }
  .texto_objetivo3 {
    text-align: center;
  }
}

/* FIM - Objetivos Section */

/* INICIO - Nossos Criterios Section */

#nossos_criterios {
  padding: 30px 0 30px 0;
}

#titulo_criterios {
  font-size: 22px;
  color: #010483;
  padding-top: 20px;
}

.texto_criterios {
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: justify;
}

.titulo_ultimos_informes {
  font-size: 1.5rem;
  margin-bottom: 10px;
  margin-top: 15px;
  color: #3A5FCD;
  line-height: 20px;
  text-align: center;
}

.texto_ultimos_informes {
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: center;
}

.titulo_folder_informacao {
  font-size: 22px;
  color: #010483;
  padding-top: 20px;
}

#folder_banco_olhos {
  margin-top: 20px;
}

@media (max-width: 768px) {
  #titulo_criterios {
    text-align: center;
  }
  .texto_criterios {
    text-align: center;
  }
  .titulo_folder_informacao {
    text-align: center;
  }
  #folder_banco_olhos {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

/* FIM - Nossos Criterios Section */

/* INICIO - Nossa Informacao Section */

#nossa_informacao {
  padding-top: 70px;
  padding-bottom: 20px;
}

.titulo_informacao {
  font-size: 1.5rem;
  margin-bottom: 10px;
  margin-top: 15px;
  color: #3A5FCD;
  line-height: 20px;
}

.titulo_informativo {
  font-size: 22px;
  color: #010483;
  padding-top: 20px;
}

#img_informativo_doadora {
  margin-top: 20px;
}

#img_instagram {
  margin-top: 20px;
}

#titulo_instagram {
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: center;
}

#cadastro_formulario {
  margin-top: 20px;
}

.titulo_mundial_doacao {
  font-size: 22px;
  color: #010483;
  padding-top: 20px;
}

.texto_formulario {
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: justify;
}

#img_detalhe_cornea {
  margin-top: 20px;
}

.titulo_informacao2 {
  font-size: 22px;
  color: #010483;
  padding-top: 20px;
}

#img_evento_adverso {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .titulo_informacao {
    text-align: center;
  }
  .titulo_informativo {
    text-align: center;
  }
  #img_informativo_doadora {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  #img_instagram {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .titulo_mundial_doacao {
    text-align: center;
  }
  .texto_formulario {
    text-align: center;
  }
  #img_detalhe_cornea {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .titulo_informacao2 {
    text-align: center;
  }
  #img_evento_adverso {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

/* FIM - Nossa Informacao Section */

/* INICIO - Incentivo Doacao Section */

#incentivo_doacao {
  padding: 30px 0 30px 0;
}

#titulo_beneficios {
  font-size: 22px;
  color: #010483;
  padding-top: 20px;
}

.texto_beneficios {
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: justify;
}

#tab_incentivo {
  margin-top: 20px;
}

.informe_beneficio {
  font-size: 1.5rem;
  margin-bottom: 10px;
  margin-top: 15px;
  color: #3A5FCD;
  line-height: 20px;
}

.texto_beneficio {
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: justify;
}

.img_beneficio {
  margin-top: 20px;
}

@media (max-width: 768px) {
  #titulo_beneficios {
    text-align: center;
  }
  .texto_beneficios {
    text-align: center;
  }
  .informe_beneficio {
    text-align: center;
  }
  .texto_beneficio {
    text-align: center;
  }
  .img_beneficio {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

/* FIM - Incentivo Doacao Section */

/* INICIO - Testimonials Section */

#testimonials {
  padding: 30px 0 30px 0;
}

#titulo_depoimento {
  font-size: 22px;
  color: #010483;
  padding-top: 20px;
}

#texto_registro_informacoes {
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: justify;
}

.testimonial-item {
  margin-top: 20px;
}

.testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
  border: 6px solid #fff;
}

.testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonial-item h4 {
  font-size: 14px;
  color: #999;
}

.testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: justify;
}

.testimonial-item .quote-icon-left,
.testimonial-item .quote-icon-right {
  font-size: 26px;
  color: #40895d;
}

.testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

@media (max-width: 768px) {
  #titulo_depoimento {
    text-align: center;
  }
  #texto_registro_informacoes {
    text-align: center;
  }
}

/* FIM - Testimonials Section */

/* INICIO - Nosso Contato Section */

#nosso_contato {
  padding-top: 70px;
  padding-bottom: 20px;
}

#formulario_contato {
  margin-top: 20px;
}

.titulo_doador {
  font-size: 22px;
  color: #010483;
  padding-top: 20px;
}

.texto_doador {
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: justify;
}

.titulo_localizacao {
  font-size: 22px;
  color: #010483;
  padding-top: 20px;
}

.texto_localizacao {
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: justify;
}

.texto_localizacao2 {
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: justify;
}

.titulo_doador2 {
  font-size: 22px;
  color: #010483;
  padding-top: 20px;
}

@media (max-width: 768px) {
  .titulo_doador {
    text-align: center;
  }
  .texto_doador {
    text-align: center;
  }
  .titulo_localizacao {
    text-align: center;
  }
  .texto_localizacao {
    text-align: center;
  }
  .texto_localizacao2 {
    text-align: center;
  }
  .titulo_doador2 {
    text-align: center;
  }
}

/* FIM - Nosso Contato Section */

/* INICIO - Gallery Section */

#gallery {
  padding: 30px 0 30px 0;
}

#titulo_galeria {
  font-size: 22px;
  color: #010483;
  padding-top: 20px;
}

@media (max-width: 768px) {
  #titulo_galeria {
    text-align: center;
  }
}

/* FIM - Gallery Section */

/* INICIO - Mais Informacoes Section (FAQ) */

#mais_informacoes {
  padding: 30px 0 30px 0;
}

#titulo_informacoes {
  font-size: 22px;
  color: #010483;
  padding-top: 20px;
}

.video_thumbnail {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.video_thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}

.video_thumbnail .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  #titulo_informacoes {
    text-align: center;
  }
}

/* FIM - Mais Informacoes Section (FAQ) */

/* INICIO - Acesso Sistema Section (Login) */

#acesso_sistema {
  padding: 30px 0 30px 0;
}

#titulo_sistema {
  font-size: 22px;
  color: #010483;
  padding-top: 20px;
}

#img_sistema {
  margin-top: 20px;
}

#texto_sistema {
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: justify;
}

@media (max-width: 768px) {
  #titulo_sistema {
    text-align: center;
  }
  #img_sistema {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  #texto_sistema {
    text-align: center;
  }
}

/* FIM - Acesso Sistema Section (Login) */

/* Estilos não utilizados ou comentados no CSS original */

/*
.single-post {
  position: relative;
  border-bottom: 1px solid #ddd;
  display: inline-block;
  padding: 17px 0;
  margin-left: 4px;
}

.single-post .image img {
  float: left;
  width: 80px;
  height: 80px;
  margin-right: 20px;
}

.single-post .content {
  padding-left: 100px;
}

ul, ul li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-post .content h5 a {
  color: #2C2D3F;
  font-weight: 500;
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
  display: block;
  margin-bottom: 10px;
  margin-top: 0;
}

.single-post .content h5 a:hover {
  color: #34e5a6;
}

.single-post .content .comment li {
  color: #888;
  display: inline-block;
  margin-right: 5px;
  font-weight: 400;
  font-size: 12px;
}

.single-post  i {
  font-size: 12px;
}

.fa {
  padding-right: 5px;
}

#titulo_artigos_recentes {
  font-size: 26px;
  color: #010483;
  padding-top: 10px;
}

.titulo_noticas_recentes {
  font-size: 22px;
  color: #010483;
  padding-top: 10px;
}

.titulo_documentos {
  font-size: 22px;
  color: #010483;
  padding-top: 20px;
}

.titulo_documentos2 {
  font-size: 22px;
  color: #010483;
  padding-top: 60px;
}

.titulo_biblioteca_digital {
  font-size: 22px;
  color: #010483;
  padding-top: 20px;
  margin-left: -4px;
}

#modulo_incentivos {
  margin-top: 0px;
}

.caixa_incentivos {
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.caixa_incentivos a {
  display: block;
}

.img_beneficio_link {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 10px 10px 0 0;
  object-fit: cover;
}

.img_beneficio_link:hover {
  transform: scale(1.1);
  transform-origin: center center;
}

.caixa_incentivos div[data-aos] {
  padding: 15px;
}

.titulo_incentivos {
  font-size: 1.5rem;
  margin-bottom: 10px;
  margin-top: 15px;
  color: #3A5FCD;
  line-height: 20px;
  text-align: center;
}

.texto_incentivos {
  font-size: 1.3rem;
  line-height: 1.4;
  text-align: center;
}

@media(max-width:768px) {
  .container-fluid {
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
    margin-right: auto;
    margin-left: auto;
  }
  #modulo_incentivos {
    margin-top: -20px;
  }
  .caixa_incentivos {
    transition: transform 0.3s ease;
    margin-top: 20px;
  }
  .titulo_noticas_recentes {
    margin-left: 4px;
  }
  .titulo_documentos {
    margin-left: 3px;
  }
  .titulo_biblioteca_digital {
    margin-left: 3px;
    padding: 50px 0 0px 12px;
  }
  .img_beneficio_link {
    width: 100%;
    height: auto;
    margin-top: -8px;
  }
}

#main {
  padding: 1px 0 0px 0;
}

#details {
  padding: 30px 0 30px 0;
}

#team-section .our-team {
  padding-top: 1px;
}

.section-title p {
  padding-top: 6px;
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: inherit;
  font-family: "Oswald", "Poppins", sans-serif;
  color: #010483;
  padding-bottom: 12px;
  line-height: 1.2;
}

.section-title {
  padding-bottom: 10px;
}

.latest-news-outras {
  padding-top: 40px;
  padding-bottom: 20px;
}

.pic2 {
  overflow: hidden;
  border-radius: 4px;
  text-align: center;
}

.pic2 img {
  max-width: 100%;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.pic2:hover img {
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.counts {
}

.team-member:hover .team-objetivos {
  opacity: 1;
  -webkit-animation: bounceIn;
  animation: bounceIn;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
}

.team-member .team-objetivos {
  position: absolute;
  top: 214px;
  width: 90%;
  height: 100%;
  border-radius: 4px;
}

#caixa_enquete {
  margin-top: 20px;
}

#titulo_enquete {
  font-size: 22px;
  color: #010483;
  padding-top: 20px;
}

#caixa_enquete_detalhe {
  margin-top: 20px;
}

#resposta_enquete-group {
  margin-top: 20px;
}

.resp_enquete {
  margin-top: 20px;
}

#lblobs {
  margin-top: 20px;
}

#resposta_erro {
  margin-top: 20px;
}





/* INICIO - Mais Informacoes Section (FAQ) */

#mais_informacoes {
  padding: 30px 0 30px 0;
}

#titulo_informacoes {
  font-size: 22px;
  color: #010483;
  padding-top: 20px;
}

.video_thumbnail {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.video_thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}

.video_thumbnail .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  #titulo_informacoes {
    text-align: center;
  }
}

/* FIM - Mais Informacoes Section (FAQ) */




/* INICIO - Acesso Sistema Section (Login) */

#acesso_sistema {
  padding: 30px 0 30px 0;
}

#titulo_sistema {
  font-size: 22px;
  color: #010483;
  padding-top: 20px;
}

#img_sistema {
  margin-top: 20px;
}

#texto_sistema {
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: justify;
}

@media (max-width: 768px) {
  #titulo_sistema {
    text-align: center;
  }
  #img_sistema {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  #texto_sistema {
    text-align: center;
  }
}

/* FIM - Acesso Sistema Section (Login) */




/* Estilos Globais */

/*
.single-post {
  position: relative;
  border-bottom: 1px solid #ddd;
  display: inline-block;
  padding: 17px 0;
  margin-left: 4px;
}

.single-post .image img {
  float: left;
  width: 80px;
  height: 80px;
  margin-right: 20px;
}

.single-post .content {
  padding-left: 100px;
}

ul, ul li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-post .content h5 a {
  color: #2C2D3F;
  font-weight: 500;
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
  display: block;
  margin-bottom: 10px;
  margin-top: 0;
}

.single-post .content h5 a:hover {
  color: #34e5a6;
}

.single-post .content .comment li {
  color: #888;
  display: inline-block;
  margin-right: 5px;
  font-weight: 400;
  font-size: 12px;
}

.single-post  i {
  font-size: 12px;
}

.fa {
  padding-right: 5px;
}

#titulo_artigos_recentes {
  font-size: 26px;
  color: #010483;
  padding-top: 10px;
}

.titulo_noticas_recentes {
  font-size: 22px;
  color: #010483;
  padding-top: 10px;
}

.titulo_documentos {
  font-size: 22px;
  color: #010483;
  padding-top: 20px;
}

.titulo_documentos2 {
  font-size: 22px;
  color: #010483;
  padding-top: 60px;
}

.titulo_biblioteca_digital {
  font-size: 22px;
  color: #010483;
  padding-top: 20px;
  margin-left: -4px;
}

#modulo_incentivos {
  margin-top: 0px;
}

.caixa_incentivos {
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.caixa_incentivos a {
  display: block;
}

.img_beneficio_link {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 10px 10px 0 0;
  object-fit: cover;
}

.img_beneficio_link:hover {
  transform: scale(1.1);
  transform-origin: center center;
}

.caixa_incentivos div[data-aos] {
  padding: 15px;
}

.titulo_incentivos {
  font-size: 1.5rem;
  margin-bottom: 10px;
  margin-top: 15px;
  color: #3A5FCD;
  line-height: 20px;
  text-align: center;
}

.texto_incentivos {
  font-size: 1.3rem;
  line-height: 1.4;
  text-align: center;
}

@media(max-width:768px) {
  .container-fluid {
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
    margin-right: auto;
    margin-left: auto;
  }
  #modulo_incentivos {
    margin-top: -20px;
  }
  .caixa_incentivos {
    transition: transform 0.3s ease;
    margin-top: 20px;
  }
  .titulo_noticas_recentes {
    margin-left: 4px;
  }
  .titulo_documentos {
    margin-left: 3px;
  }
  .titulo_biblioteca_digital {
    margin-left: 3px;
    padding: 50px 0 0px 12px;
  }
  .img_beneficio_link {
    width: 100%;
    height: auto;
    margin-top: -8px;
  }
}

#main {
  padding: 1px 0 0px 0;
}

#details {
  padding: 30px 0 30px 0;
}

#team-section .our-team {
  padding-top: 1px;
}

.section-title p {
  padding-top: 6px;
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: inherit;
  font-family: "Oswald", "Poppins", sans-serif;
  color: #010483;
  padding-bottom: 12px;
  line-height: 1.2;
}

.section-title {
  padding-bottom: 10px;
}

.latest-news-outras {
  padding-top: 40px;
  padding-bottom: 20px;
}

.pic2 {
  overflow: hidden;
  border-radius: 4px;
  text-align: center;
}

.pic2 img {
  max-width: 100%;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.pic2:hover img {
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.counts {
}

.team-member:hover .team-objetivos {
  opacity: 1;
  -webkit-animation: bounceIn;
  animation: bounceIn;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
}

.team-member .team-objetivos {
  position: absolute;
  top: 214px;
  width: 90%;
  height: 100%;
  border-radius: 4px;
}

#caixa_enquete {
  margin-top: 20px;
}

#titulo_enquete {
  font-size: 22px;
  color: #010483;
  padding-top: 20px;
}

#caixa_enquete_detalhe {
  margin-top: 20px;
}

#resposta_enquete-group {
  margin-top: 20px;
}

.resp_enquete {
  margin-top: 20px;
}

#lblobs {
  margin-top: 20px;
}

#resposta_erro {
  margin-top: 20px;
}

*/


