/*PRÉ-LOADER******************************************************************************************************/
body {
  overflow: hidden; 
}

#preloader {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:#68B4C2; /* cor do background que vai ocupar o body */
    z-index:9999; /* z-index para jogar para frente e sobrepor tudo */
}
#preloader .inner {
    position: absolute;
    top: 50%; /* centralizar a parte interna do preload (onde fica a animaÃ§Ã£o)*/
    left: 50%;
    transform: translate(-50%, -50%);  
}
.bolas > div {
  display: inline-block;
  background-color: #fff;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  margin: 3px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: animarBola;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  
}
.bolas > div:nth-child(1) {
    animation-duration:0.75s ;
    animation-delay: 0;
}
.bolas > div:nth-child(2) {
    animation-duration: 0.75s ;
    animation-delay: 0.12s;
}
.bolas > div:nth-child(3) {
    animation-duration: 0.75s  ;
    animation-delay: 0.24s;
}

@keyframes animarBola {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  16% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.7;
  }
  33% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; 
  } 
}
/*FIM PRÉ-LOADER**************************************************************************************************/


/*CSS GERAIS******************************************************************************************************/
::-moz-selection { 
  background-color: #68b6c3;
  color: #fff;}

::selection { 
  background-color: #68b6c3;
  color: #fff;}  

.active{
  color: #fff;}

/*section{
  padding-top: 100px !important;
  padding-bottom: 100px !important; }
*/


  #rodape {
  background: #333333;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
}

#rodape .rodape-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1dc8cd;
}

#rodape .rodape-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #888;
}

#rodape .social-links {
  padding-bottom: 20px;
}

#rodape .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #1dc8cd;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #1dc8cd;
}

#rodape .social-links a:hover {
  background: #1dc8cd;
  color: #fff;
}

#rodape .info {
  color: #333333;
}

#rodape .info i {
  font-size: 32px;
  color: #1dc8cd;
  float: left;
  line-height: 1;
}

#rodape .info p {
  padding: 0 0 10px 42px;
  line-height: 28px;
  font-size: 14px;
}

#rodape .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

#rodape .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#rodape .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#rodape .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#rodape .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#rodape .php-email-form input, #rodape .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#rodape .php-email-form input::focus, #rodape .php-email-form textarea::focus {
  background-color: #1dc8cd;
}

#rodape .php-email-form button[type="submit"] {
  background: linear-gradient(45deg, #1de099, #1dc8cd);
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
}

#rodape .php-email-form button[type="submit"]:hover {
  cursor: pointer;
}

.btn-submit {
  background: #1dc8cd; 
  border: 0;
  border-radius: 20px;
  padding: 8px 30px;
  color: #fff;
}

.btn-submit:hover {
  cursor: pointer;
  background: #68b6c3;
  color: #fff;
}

.link-rodape{
  color: #fff !important;
}

.link-rodape:hover{
  color: #1dc8cd !important;
}

/*FIM CSS GERAIS**************************************************************************************************/


/* Responsive Utilities */
@media (max-width: 1600px) {
}

@media (max-width: 1200px) {
}

@media (max-width: 1024px) {
}

@media (max-width: 992px) {
}

@media (max-width: 768px) {
}

@media (max-width: 640px) {
}

@media (max-width: 500px) {
}

@media (max-width: 479px) {
}

@media (max-width: 400px) {
}

@media (max-width: 360px) {
}
