/* ---------------------  Adaptado para o SIV --------------------*/
/* Alterada a tela de apresentação dos projetos                   */
/* Roberto - 06/02/2025                                           */
/* Alterações no estilo do cabeçalho                              */
/* Alterações no logo                                             */
/* Alterações no título                                           */
/* Alterações no menu de navegação                                */
/* Alterações nas imagens dentro da página inicial                */
/* Nova classe adicionada .ajuda                                  */
/*----------------------------------------------------------------*/
body {
  margin: 0;
  font-size: 1em;
  font-family: century gothic, arial, sans serif;
  padding-top: 75px;
  padding-bottom: 50px;
  background: #efefef;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: normal !important;
}

#header {
  height: 75px;
  position: fixed;
  right: 0px;
  left: 0px;
  top: 0px;
  z-index: 1030;
  margin-bottom: 0px;
  overflow: visible;
  background-color: #2b2b2b;
  background-image: url(img/header-background-medium.jpg);
  background-repeat: repeat;
  color: #fbfbfb;
  font-size: 0.8em;
  box-shadow: 8px 8px 16px #aaaaaa;
}
#logo {
  float: left;
  height: 65px;
  min-width: 250px;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 20px;
  margin-right: 20px;
  background: url("img/logo.png") no-repeat;
  background-size: contain;
  background-position: center center;
}
#logo h1 {
  margin-left: 85px;
  font-size: 2.5em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#title {
  position: relative;
  max-width: 85%;
  height: auto;
  margin-top: 20px;
  padding-right: 10px;
  text-align: left;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  background: inherit;
}
#title h1 {
  position: relative;
  display: none;
  color: black;
  font-size: 2em;
  line-height: 1em;
}
#title h2 {
  position: relative;
  display: inline;
  color: black;
  font-size: 1em;
  line-height: 0.5em;
  margin-top: 2em;
  margin-left: 0.5em;
}
#title h2 a {
  color: inherit;
  text-decoration: none;
}

#headermenu {
  position: fixed;
  right: 0px;
  left: 0px;
  top: 45px;
  z-index: 1030;
  margin-bottom: 0px;
  overflow: visible;
  font-size: inherit;
  background: transparent;
}

#auth {
  background: transparent;
}

.navbar-fixed-top .navbar-inner,
.navbar-fixed-bottom .navbar-inner {
  padding: 0px 0px;
  box-shadow: none;
}

.navbar-inner {
  min-height: 30px;
  padding: 0px 10px;
}

.navbar .nav li {
  line-height: 28px;
}

.navbar .nav > li > a {
  padding: 0px 10px;
  text-shadow: none;
}
.navbar .nav .active > a,
.navbar .nav > li > a:focus,
.navbar .nav > li > a:hover {
  background-color: #ef3826;
  text-decoration: none;
  text-shadow: none;
}
.navbar .nav li.dropdown.open > .dropdown-toggle,
.navbar .nav li.dropdown.active > .dropdown-toggle,
.navbar .nav li.dropdown.open.active > .dropdown-toggle {
  color: #ef3826;
  background-color: #08c;
  text-shadow: none;
}
.navbar .nav > li > .dropdown-menu:after {
  border-bottom: 6px solid #f5f5f5;
}
.dropdown-menu {
  background-color: #f5f5f5;
}
.navbar .navbar-inner .icon {
  display: inline-block;
  vertical-align: middle;
  background-image: url("images/sprite_20_tools.png");
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}
.navbar .navbar-inner .caret {
  display: inline-block;
  vertical-align: text-top;
}
.navbar .navbar-inner .text {
  display: inline-block;
  vertical-align: middle;
}
.navbar .nav .login .icon {
  background-position: -225px 0px;
}
.navbar .nav .login a:hover .icon,
.navbar .nav .login.active a .icon {
  background-position: -200px 0px;
}
.navbar .nav .registered .icon {
  background-position: -825px 0px;
}
.navbar .nav .registered a:hover .icon,
.navbar .nav .registered.active a .icon {
  background-position: -800px 0px;
}
.navbar .nav .user .icon {
  background-position: -575px 0px;
}
.navbar .nav .user a:hover .icon,
.navbar .nav .user.active a .icon,
.navbar .nav .user.open a .icon {
  background-position: -550px 0px;
}
.navbar .nav .home .icon {
  background-position: -25px 0px;
}
.navbar .nav .home a:hover .icon,
.navbar .nav .home.active a .icon {
  background-position: 0px 0px;
}
#content {
  padding-top: 40px;
}

div.form-horizontal .controls .jforms-value {
  font-size: 14px;
  padding-top: 5px;
  display: inline-block;
}
div.form-horizontal .control-label {
  font-weight: bold;
}

.alert-danger,
.alert-error {
  color: #f00;
  border: 1px solid #f00;
}

#landingPageContent .image-style-align-left,
#landingPageContent .image-style-align-center,
#landingPageContent .image-style-align-right {
  max-width: 50%;
}

#landingPageContent .image-style-align-left {
  float: left;
  margin-right: 1.5em;
}

#landingPageContent .image-style-align-center {
  margin-left: auto;
  margin-right: auto;
  display: table;
  clear: both;
}

#landingPageContent .image-style-align-right {
  float: right;
  margin-left: 1.5em;
}

/* spinner */
.spinner::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 4px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spinner 1s linear infinite;
}
.ajuda {
  display: none;
}

@keyframes spinner {
  from {
    transform: rotate(0turn);
  }

  to {
    transform: rotate(1turn);
  }
}

/* === Corrige layout do container geral === */
#content.container {
  display: flex !important; /* força usar flex */
  flex-wrap: wrap !important; /* permite quebra de linha */
  justify-content: center !important; /* centraliza os UL no meio */
  align-items: flex-start !important;
  gap: 40px !important; /* espaço entre cards */
  width: 100% !important;
  max-width: 100% !important;
  margin: 40px auto !important;
  box-sizing: border-box;
}

/* === Cada UL é um card === */
.liz-repository-project-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 320px !important; /* largura fixa */
  flex: 0 0 auto !important; /* não estica */
}
