body {
  background-color: #f7f9fa !important;
}

header, .mobile-menu {
  background-color: #ffffff !important;
}

footer {
  background-color: #ffffff;
}

.home-boxes ul li a span, .post-detail h1, .post-item a, .post-item h4, .jobs-theme-search form div label, .title-page h1, .page-article h1, .post-detail h1, .post-home a:hover h4, .company-detail h1 {
  color: #1e4182 !important;
}

.post-item .button, .post-detail .button, .wpcf7-submit, .jobs-theme-search form button, .box-title h2 span {
  background-color: #1e4182 !important;
}

.box-title h2 {
  border-color: #1e4182 !important;
}

.box-newsletter {
  background: #ffffff !important;
}

#menuSidebar {
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #1e4182 100%);
  background: -webkit-gradient(
    left top,
    left bottom,
    color-stop(0%, #ffffff),
    color-stop(100%, #1e4182)
  );
  background: -webkit-linear-gradient(top, #ffffff 0%, #1e4182 100%);
  background: -o-linear-gradient(top, #ffffff 0%, #1e4182 100%);
  background: -ms-linear-gradient(top, #ffffff 0%, #1e4182 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #1e4182 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#1e4182', GradientType=0 );
}

.box-form h1, header nav a, .mobile-menu-list a, .home-boxes .more a {color: #1e4182 !important; }
.jobs-theme-search form, .jobs-theme-search form input { background-color: #f7f9fa !important; }
.home-boxes > div:nth-child(odd) { background-color: #f7f9fa; }
.home-boxes > div:nth-child(even) { background-color: #ffffff; }

  /* Estilos para a div de loading */
  #loading-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background-color: rgba(255, 255, 255, 1); /* Cor de fundo com transparência */
    z-index: 9999;
  }

  /* Estilos para a animação do ícone de loading */
  .loader {
    border: 16px solid #f3f3f3; /* Cor da borda */
    border-top: 16px solid #db3434; /* Cor da borda superior (para a animação) */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
  }

  /* Animação de rotação */
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
