
p{
   margin-bottom: 25px;
   font-family: Georgia;
   font-size: 20px;
   color: #222222;
   font-weight: 400;
   line-height: 1.5;
}

.topo-0{
   padding: 40px 0;
   background-image: url(../images/topo.png);
   background-size: cover;
   background-position: center;
}

.texto-topo-0{
   font-size: 14px;
   line-height: 1.3em;
   text-align: center;
   margin-top: 0;
   margin-bottom: 30px;
   color: #b2b2be;
   font-weight: 400;
}

.titulo-topo-0{
   font-size: 60px;
   line-height: 1.3em;
   text-align: left;
   margin-bottom: 0;
   color: #000;
   font-weight: 700;
}

.topo-1{
   padding: 40px 0;
   background-color: #fff;
}

.img-max{
   width: 100%;
   height: auto;
   margin: 25px auto;
}

.botao{
   display: block;
   width: 90%;
   color: #fff;
   background-color: #257a11;  
   font-size: 22px;
   font-weight: 700;
   line-height: 1; 
   padding: 15px;
   border-radius: 8px; 
   margin: 10px auto;
   text-align: center;
}

.botao:hover{
   color: #fff;
}  

.rodape{
   padding: 40px 0 20px 0;
   background-color: #25253d;
} 

.texto-rodape{
   font-size: 15px;
   text-align: center;
   line-height: 1.2;
   color: #fff;
}

.texto-rodape a{
   color: #fff;
} 

.texto-rodape a:hover{
   color: #fff;
}   

@media screen and (max-width: 600px) {

   p{
      font-size: 18px;
   }

   .titulo-topo-0{
      font-size: 32px;
      line-height: 1.6em;
   }

   .texto-topo-0{
      font-size: 12px;
   }

}


.pulse {
  animation: pulse 0.7s infinite;
  margin: 0 auto;
  margin-top: 10px;
  animation-direction: alternate;
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -webkit-filter: brightness(100%);
  }
  100% {
    -webkit-transform: scale(1.1);
    -webkit-filter: brightness(100%);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    filter: brightness(100%);
  }
  100% {
    transform: scale(1.1);
    filter: brightness(100%);
  }
}