@charset "UTF-8";
/*
 * Acervo IHGSC
 * Arquivo principal que reuni (importa / usa) todas as folhas de estilos a ser compilados pelo Sass
 */
/*
 * Padrões de estilo globais do projeto Acervo IHGSC
 * global
 */
#aihgsc {
  /* Sobrescreve padrões do Tainacan Interface */
}
#aihgsc .tainacan-title-page {
  border-bottom: none !important;
}
#aihgsc .tainacan-title .tainacan-title-page .title-page h1 {
  font-size: 2.5rem !important;
}
#aihgsc div.btn-group.ml-auto a {
  display: none;
}
#aihgsc section.tainacan-content.margin-two-column {
  margin: 0;
}
#aihgsc {
  /* Banners dos acervos */
}
#aihgsc #aihgsc .t-bg-collection {
  background-color: #004a8e !important;
}
#aihgsc #aihgsc .t-bg-collection h2 {
  columns: #ffffff;
}
#aihgsc {
  /* Limita a largura do conteúdo */
}
#aihgsc .container {
  width: 100%;
  max-width: 1400px !important;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px !important;
  padding-right: 15px !important;
  height: 100%;
}
#aihgsc {
  /* Definindo fontes para cabeçalhos e corpo */
}
#aihgsc h1, #aihgsc h2, #aihgsc h3, #aihgsc h4, #aihgsc h5, #aihgsc h6 {
  font-family: "Roboto", "Open Sans", sans-serif !important;
  font-weight: 600; /* Peso de fonte mais pesado para os títulos */
  line-height: 1.3;
}
#aihgsc p, #aihgsc li, #aihgsc .content-text {
  font-family: "Roboto", "Open Sans", sans-serif;
  color: #333; /* Cor neutra para parágrafos */
  line-height: 1.6;
}
#aihgsc {
  /* Tamanho de fonte com flexibilidade */
}
#aihgsc h1 {
  font-size: 2.5rem;
}
#aihgsc h2 {
  font-size: 2rem;
}
#aihgsc h3 {
  font-size: 1.5rem;
}
#aihgsc h4, #aihgsc h5, #aihgsc h6 {
  font-size: 1.25rem;
}
#aihgsc {
  /* Controla o espaçamento entre as linhas */
}
#aihgsc .row {
  margin-bottom: 60px;
}
#aihgsc {
  /* Espaçamento entre os títulos e outros elementos */
}
#aihgsc h1, #aihgsc h2, #aihgsc h3, #aihgsc h4, #aihgsc h5, #aihgsc h6 {
  margin-top: 20px;
  margin-bottom: 15px;
}
#aihgsc p, #aihgsc .content-text {
  margin-bottom: 15px;
}
#aihgsc {
  /* Cores principais de texto */
}
#aihgsc body {
  color: #333; /* Cor padrão para o corpo */
  font-family: "Roboto", "Open Sans", sans-serif;
}
#aihgsc {
  /* Garantindo a cor padrão para os títulos sem o uso de !important */
}
#aihgsc h1, #aihgsc h2 {
  color: #004a8e;
}
#aihgsc {
  /* Semântica e controle de cores mais preciso */
}
#aihgsc .has-text-color {
  color: inherit;
}
#aihgsc {
  /* Links e Botões */
}
#aihgsc a {
  color: #004a8e;
  text-decoration: none !important;
  transition: color 0.3s ease;
}
#aihgsc a:hover, #aihgsc a:focus {
  color: #005cbf;
  text-decoration: underline;
}
#aihgsc {
  /* Botões */
  /* Responsividade para telas menores */
}
@media (max-width: 1200px) {
  #aihgsc .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  #aihgsc h1 {
    font-size: 2rem;
  }
  #aihgsc h2 {
    font-size: 1.75rem;
  }
}
@media (max-width: 768px) {
  #aihgsc .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  #aihgsc h1 {
    font-size: 1.5rem;
  }
  #aihgsc h2 {
    font-size: 1.3rem;
  }
  #aihgsc .row {
    margin-bottom: 40px;
  }
}
#aihgsc {
  /* Remove o conteúdo do ::after para títulos dentro do accordion */
}
#aihgsc h1::after,
#aihgsc h2::after,
#aihgsc h3::after,
#aihgsc h4::after,
#aihgsc h5::after,
#aihgsc h6::after {
  content: none;
  display: none;
}

/*
 * Acervo IHGSC
 * Estilo do formulário da página Home (template home.php)
 */
#aihgsc #home {
  /* BANNER */
}
#aihgsc #home #row-banner {
  width: 100%;
  min-height: 100vh;
  position: relative;
  margin: 0;
  padding: 0;
}
#aihgsc #home .banner {
  position: relative;
  width: 100%;
  min-height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
#aihgsc #home .banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(230, 179, 143, 0.5);
  z-index: 1;
}
#aihgsc #home .banner .banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
#aihgsc #home .banner .banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#aihgsc #home .banner .container-content {
  position: relative;
  z-index: 2;
  background: #004a8e;
  padding: 60px;
  color: #fff;
  max-width: 520px;
}
#aihgsc #home .banner .container-content h1, #aihgsc #home .banner .container-content p {
  color: #fff;
  text-align: center;
  margin-bottom: 6vh;
  font-weight: 600;
}
#aihgsc #home .banner .container-content p {
  font-size: 20px;
}
#aihgsc #home .banner .container-content h1 {
  font-size: 40px;
}
@media (min-width: 992px) {
  #aihgsc #home .banner .container-content h1 {
    font-size: 64px;
  }
}
#aihgsc #home .banner {
  /* TABLET */
}
@media (max-width: 991px) {
  #aihgsc #home .banner .container-content {
    padding: 50px 40px;
  }
}
#aihgsc #home .banner {
  /* MOBILE */
}
@media (max-width: 767px) {
  #aihgsc #home .banner .banner {
    align-items: flex-end;
  }
  #aihgsc #home .banner .container-content {
    width: 100%;
    padding: 35px 25px;
  }
  #aihgsc #home .banner .container-content h1 {
    font-size: 28px;
  }
  #aihgsc #home .banner .container-content p {
    font-size: 16px;
  }
}
#aihgsc #home {
  /* SERVIÇOS (sempre branco) */
}
#aihgsc #home .servicos-home article.card {
  background: #fff;
  color: #000;
}
#aihgsc #home .servicos-home article.card h1, #aihgsc #home .servicos-home article.card h2, #aihgsc #home .servicos-home article.card h3, #aihgsc #home .servicos-home article.card h4, #aihgsc #home .servicos-home article.card h5, #aihgsc #home .servicos-home article.card h6, #aihgsc #home .servicos-home article.card p, #aihgsc #home .servicos-home article.card a {
  color: #000;
}

/* PROJETOS (xadrez base) */
#aihgsc #home .cards-home .card-col article.card {
  background: #fff;
  color: #000;
}

/* 1 coluna (mobile) */
@media (max-width: 767px) {
  #aihgsc #home .cards-home .card-col:nth-child(odd) article.card {
    background: #004a8e;
    color: #fff;
  }
  #aihgsc #home .cards-home .card-col:nth-child(odd) article.card .card-title {
    color: #fff;
  }
}
/* 2 colunas (tablet) */
@media (min-width: 768px) and (max-width: 991px) {
  #aihgsc #home .cards-home .card-col:nth-child(4n+1) article.card,
  #aihgsc #home .cards-home .card-col:nth-child(4n+4) article.card {
    background: #004a8e;
    color: #fff;
  }
  #aihgsc #home .cards-home .card-col:nth-child(4n+1) article.card .card-title,
  #aihgsc #home .cards-home .card-col:nth-child(4n+4) article.card .card-title {
    color: #fff;
  }
}
/* 3 colunas (desktop) */
@media (min-width: 992px) {
  #aihgsc #home .cards-home .card-col:nth-child(odd) article.card {
    background: #004a8e;
    color: #fff;
  }
  #aihgsc #home .cards-home .card-col:nth-child(odd) article.card .card-title {
    color: #fff;
  }
}
body#aihgsc img.size-full {
  max-width: 100%;
}

/*
 * Acervo IHGSC
 * Estilo dos cartões da página Home (template Home.php)
 */
#aihgsc .card-item {
  border: 0;
  border-radius: 0;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 40px;
  padding-bottom: 40px;
  font-weight: 400;
  text-align: justify;
}
#aihgsc .card-item .card-title {
  text-align: center;
}
#aihgsc .card-item img {
  height: 200px;
  width: 200px;
  object-fit: cover;
}
#aihgsc article.card {
  height: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  #aihgsc .card-col {
    padding: 0 !important;
  }
}
#aihgsc .cards-home .card-col {
  padding: 0 !important;
}
#aihgsc .servicos-home .card-col {
  padding: 0 !important;
}

/*
 * Acervo IHGSC
 * Estilo do cabeçalho padrão para todas as páginas
 */
#aihgsc {
  /* Ajuste do tamanho da logo no Tainacan Interface */
}
#aihgsc #header .tainacan-logo .logo {
  max-height: auto !important;
  max-width: 400px !important;
}
#aihgsc #header .row {
  align-items: center;
  padding: 40px 0;
  margin-bottom: auto;
}
#aihgsc #header img {
  vertical-align: middle;
  border-style: none;
  width: 300px;
  height: auto;
}
#aihgsc #header .navbar-box nav.menu-belowheader #menubelowHeader > ul > li.menu-item a {
  font-size: 20px;
}

/*
 * Acervo IHGSC
 * Estilo do formulário da página Projetos
 */
#aihgsc #projetos .raphael {
  width: 100%;
}
#aihgsc #projetos hr {
  height: 100px;
  color: black;
  width: 100px;
  background-color: black;
}
#aihgsc #projetos .attachment-post-thumbnail.size-post-thumbnail.wp-post-image {
  width: 100%;
}

/*
 * Acervo IHGSC
 * Estilo do rodapé padrão para todas as páginas
 */
#footer hr.tainacan-footer-area-separator {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top-width: 0px;
  border-top-style: none;
  border-top-color: currentcolor;
  border-top: 2px solid rgba(0, 73, 142, 0.4392156863);
}
#footer .row {
  margin-bottom: auto;
}
#footer .tainacan-footer-info .col p {
  line-height: 1;
  margin-bottom: 0;
  color: #fff;
}
#footer .top {
  color: #004a8e;
  margin-top: 3rem;
}
#footer .customize-unpreviewable .tainacan-footer .tainacan-footer-info .tainacan-footer-info--logo {
  width: 300px !important;
}
#footer .tainacan-footer ul li {
  display: flex;
  justify-content: end; /* centraliza horizontalmente */
  text-align: end;
  list-style: none;
  padding: 0;
}
#footer .base {
  background-color: #004a8e !important;
  color: #fff;
}
#footer .base .tainacan-powered {
  color: #fff;
}
#footer .base .tainacan-powered .ganesha {
  align-items: end;
  color: #fff;
  height: 100%;
}
#footer .base ul li.widget {
  text-align: right !important;
}
#footer .base ul li.widget ul {
  padding-left: 0;
}

/*
 * Acervo IHGSC
 * Estilo do formulário da página Pós-Doutorado
 */
#aihgsc #biblioteca #biblioteca-banner {
  padding-bottom: 3rem !important;
  height: 620px !important;
  width: 100%;
}

/*
 * Acervo IHGSC
 * Estilo dos cartões da página Projetos
 */
#aihgsc #card-projetos .card-img-top {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}
#aihgsc #card-projetos a:hover {
  text-decoration: none;
}

/*
 * Acervo IHGSC
 * Estilo da página Contato
 */
#contato html, #contato body {
  height: 100%;
  margin: 0;
}
#contato h1 {
  text-align: center;
}
#contato .content {
  margin-bottom: 40px;
}
#contato svg.leaflet-attribution-flag {
  display: none !important;
}
#contato .markup {
  width: 300px !important;
  height: 120px;
}
#contato .leaflet-container {
  height: 400px;
  width: 600px;
  max-width: 100%;
  max-height: 100%;
}

/*
 * Acervo IHGSC
 * Estilo do formulário da página Contato
 */
.wpcf7 {
  padding: 20px;
  border: #004a8e solid 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
}

label {
  width: 100%;
}

/* placeholder do input */
.wpcf7 input,
.wpcf7 textarea {
  color: #004a8e;
  opacity: 1 !important;
  width: 100%;
  padding: 5px;
  margin-bottom: 10px;
  border: 2px solid rgba(0, 73, 142, 0.6705882353);
  border-radius: 10px;
}

/* compatibilidade do placeholder do input com o Firefox */
.wpcf7 input::-moz-placeholder,
.wpcf7 textarea::-moz-placeholder {
  color: #004a8e;
  opacity: 1;
}

/* compatibilidade do placeholder do input com o chromium */
.wpcf7 input::-webkit-input-placeholder,
.wpcf7 textarea::-webkit-input-placeholder {
  color: #004a8e;
  opacity: 1;
}

.wpcf7 input[type=submit] {
  width: 50%;
  background-color: #004a8e;
  color: #fff;
  padding: 5px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: block;
  margin-left: auto;
}

.wpcf7 input[type=submit]:hover {
  background-color: #004a8e;
}

/* Ajusta a altura do campo "Mensagem" */
.wpcf7-textarea {
  height: 100px; /* Ajuste conforme a necessidade */
}

#aihgsc #publicacoes .card-publicacao {
  padding: 15px;
}
#aihgsc #publicacoes .card-publicacao .row {
  margin-bottom: 0;
  padding: 0 15px;
}
#aihgsc #publicacoes .card-publicacao .col-lg-7,
#aihgsc #publicacoes .card-publicacao .col-lg-5 {
  background-color: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
@media (max-width: 991.98px) {
  #aihgsc #publicacoes .card-publicacao .col-lg-7 {
    border-bottom: none;
  }
  #aihgsc #publicacoes .card-publicacao .col-lg-5 {
    border-top: none;
  }
}
@media (min-width: 992px) {
  #aihgsc #publicacoes .card-publicacao .col-lg-7 {
    border-right: none;
  }
  #aihgsc #publicacoes .card-publicacao .col-lg-5 {
    border-left: none;
  }
}
#aihgsc #publicacoes .card-publicacao img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

#aihgsc #portarias .card-texto {
  padding: 15px;
}
#aihgsc #portarias .card-texto .row {
  background-color: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

#aihgsc #convenios .card-texto {
  padding: 15px;
}
#aihgsc #convenios .card-texto .row {
  background-color: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

/*# sourceMappingURL=aihgsc.css.map */
