/* 
    Variáveis
*/
:root {
  --branco-conforto: rgb(255, 253, 242);
  --destaque-negrito: rgb(139, 106, 21);
  --svg-navbar-contato: rgb(170, 145, 0);
}

/* --------------------------------------------------- */

/* 
    Responsividade
*/

@media only screen and (max-width: 2310px) {
  .container-cards {
    width: 1200px !important;
  }
}

@media only screen and (max-width: 1415px) {
  .container-cards {
    width: 800px !important;
  }
}

@media only screen and (max-width: 980px) {
  #nome {
    font-size: 50px !important;
  }

  #cargo {
    font-size: 26px !important;
  }

  #descricao {
    font-size: 20px !important;
  }
}

@media only screen and (max-width: 950px) {
  .container-cards {
    width: 100% !important;
  }
}

@media only screen and (max-width: 905px) {
  .container-cards {
    flex-direction: column;
  }

  .container-custom {
    margin: auto !important;
  }

  .card {
    max-width: 100% !important;
  }

  .card-maior {
    align-self: center !important;
  }

  .grid-2-col-1-lin {
    grid-template-columns: 1fr !important;
    grid-template-rows: 1fr 1fr !important;
    row-gap: 3em;
  }

  .grid-2-col-1-lin.com-img {
    grid-template-columns: 1fr !important;
    grid-template-rows: unset !important;
  }

  .grid-2-col-1-lin.com-img > .container-custom {
    max-width: 450px !important;
  }

  .container-cta {
    margin: auto;
  }
}

@media only screen and (max-width: 760px) {
  #nome {
    font-size: 42px !important;
  }

  #cargo {
    font-size: 22px !important;
  }

  #descricao {
    font-size: 16px !important;
  }
}

@media only screen and (max-width: 660px) {
  .grid-2-col-1-lin.com-img > .container-custom {
    max-width: 400px !important;
  }
}

@media only screen and (max-width: 575px) {
  #nome {
    font-size: 36px !important;
  }

  #cargo {
    font-size: 18px !important;
  }

  .dropdown-menu {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .static-header-grid-2-col-1-lin {
    display: none !important;
  }

  .sociais-mobile {
    display: block !important;
  }
}

@media only screen and (max-width: 551px) {
  .container-fluid {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }

  .caixa-texto-esq {
    width: auto !important;
  }

  .caixa-texto-esq > h2 {
    text-align: center;
  }

  p,
  .card-membro > p,
  .card-maior > ul,
  .footer-1 > .container > span {
    font-size: 15px !important;
  }

  .titulo-identidade {
    font-size: 35px !important;
  }

  .card > h3 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 490px) {
  .ajuste-fonte {
    font-size: 24px !important;
  }
}

@media only screen and (max-width: 435px) {
  .card-maior > ul {
    font-size: 12.8px !important;
    font-weight: 500;
  }

  .card-maior > svg {
    width: 30px;
    height: 30px;
  }

  .card-maior > span {
    font-size: medium;
  }
}

@media only screen and (max-width: 380px) {
  .card > h3 {
    font-size: medium !important;
  }
}

/* ------------------------------------- */

/*
    Animações
*/
@keyframes quicar {
  0% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(-20px);
  }

  40% {
    transform: translateY(0);
  }

  60% {
    transform: translateY(-20px);
  }

  80%,
  100% {
    transform: translateY(0);
  }
}

@keyframes loop {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ----------------------------------------- */

a {
  text-decoration: none !important;
}

b {
  color: var(--destaque-negrito);
}

#cargo {
  font-weight: bold;
  color: var(--destaque-negrito);
}

#destaque {
  font-size: 18px;
}

.card-membro > #cargo {
  font-size: 16px;
}

main {
  margin-top: 4em;
}

html {
  overflow-x: hidden !important;
  width: 100%;
}

body {
  overflow-x: hidden !important;
  margin: 0;
  background-position: center;
  background-repeat: no-repeat;
  background: linear-gradient(25deg, #000000, rgb(1, 39, 1), rgb(2, 69, 2));
  background-size: cover;
  background-attachment: fixed;
  height: max-content;
  z-index: 0;
}

.fundo-imagem {
  display: flex;
  position: fixed;
  align-items: center;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.fundo-imagem > img {
  width: 100%;
  max-width: 582.5px;
  margin: auto;
  transition: all 0.5s ease-in-out;
}

.banner-noticia {
  position: relative;
  width: auto;
  height: 300px;
  margin: -25px;
}

.destaque-noticia {
  position: relative;
  width: 200px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.103);
}

img.destaque-noticia {
  max-height: 100%;
  object-fit: contain;
}

.noticia-1 {
  background: url("../img/destaque-noticia1.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.rolar-baixo {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -100em;
  transition: bottom 2s ease-in-out;
  overflow: hidden;
}

.rolar-baixo.subir {
  bottom: 8em;
}

.logo-navbar {
  width: 130px;
  height: 130px;
  background-image: url("../img/logo-rework.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  filter: brightness(120%);
  margin: 0;
  cursor: pointer;
  z-index: 1030;
}

/* 
    Ícones e interativos
*/

.carregando {
  position: fixed;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 100px 100px;
  width: 100%;
  height: 100%;
  margin: auto;
  color: white;
  background-color: black;
  align-content: center;
  z-index: 5000;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.carregando > svg {
  align-self: center;
  justify-self: center;
  animation: linear 1s infinite loop;
}

.carregando.oculto {
  opacity: 0;
}

body.sem-scroll {
  overflow: hidden !important;
}

/* --------------------------------- */

/* 
    Botões
*/

.btn-cta {
  width: fit-content;
  height: 64px;
  position: relative;
  background-color: rgb(139, 106, 21);
  color: white;
  font-weight: 400;
  z-index: 10;
  transition: all 0.2s ease-in-out;
  border: 2px solid gold;
  align-content: center;
  padding-left: 1em;
  padding-right: 1em;
  cursor: pointer;
}

.contato-header {
  display: flex;
  height: 50px;
  width: 50px;
  padding: unset;
  border-radius: 15px;
  align-content: unset;
}

.contato-header:hover {
  border-radius: 15px;
}

.contato-header > svg {
  margin: auto;
}

.btn-cta:hover {
  background-color: gold;
  color: black;
}

.btn-cta > span {
  margin-left: 10px;
}

.btn-cta:hover img {
  height: 75px;
}

.btn-fechar-card {
  width: fit-content;
  padding: 10px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 15;
}

.btn-fechar-card:hover {
  background-color: rgba(218, 165, 32, 0.4);
}

.btn-fechar-card > svg {
  transition: all 0.3s ease-in-out;
  color: var(--destaque-negrito);
}

/* --------------------------------------------- */

/* 
    Cards e Grids
*/
.grid-2-col-1-lin {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  width: 100%;
}

.static-header-grid-2-col-1-lin {
  position: relative;
  display: grid;
  column-gap: 1em;
  grid-template-columns: 50px 50px;
  grid-template-rows: 1fr;
  width: fit-content;
  right: 1em;
}

.sociais-mobile {
  display: none;
}

.card-membro {
  position: static;
  background-color: var(--branco-conforto);
  border-radius: 20px;
  width: 80%;
  height: 260px;
  margin: auto;
  text-align: center;
  align-content: center;
  cursor: pointer;
}

.card-membro:hover > .indicador-clique {
  display: block !important;
}

.fundo-membro {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  z-index: 12;
  display: none;
}

.fundo-membro.visivel {
  display: block;
}

.card-membro.expand {
  background-color: var(--branco-conforto);
  position: fixed;
  width: 80%;
  height: 68%;
  min-height: 400px;
  max-width: 1200px;
  min-width: 350px;
  top: 55%;
  left: 50%;
  padding: 2em;
  padding-top: 4em;
  transform: translate(-50%, -50%);
  cursor: unset;
  z-index: 15;
  overflow-y: auto;
}

.card-membro.expand > p {
  text-align: justify !important;
}

.card-membro.expand > h3 {
  text-align: center;
}

.foto-membro {
  height: 100px;
  width: 100px;
  border-radius: 100%;
  background-color: rgb(0, 65, 0);
  margin-left: auto;
  margin-right: auto;
  margin-top: 1em;
  align-content: center;
}

.foto-membro > img {
  height: 100%;
  border-radius: 100%;
}

.grid-localizacao {
  display: grid;
  width: 80%;
  max-width: 1200px;
  margin: auto;
}

.localizacao {
  color: var(--branco-conforto);
  padding: 2em;
  border: 1px solid var(--branco-conforto);
  backdrop-filter: blur(20px);
  box-shadow: 8px 8px 3px 1px goldenrod;
}

.localizacao > span {
  font-size: 18px;
}

.new-contato-navbar {
  width: fit-content;
  height: fit-content;
  background-color: var(--branco-conforto) !important;
  border: 2px solid var(--svg-navbar-contato) !important;
}

.new-contato-navbar > svg {
  color: var(--svg-navbar-contato);
}

.container-cards {
  position: relative;
  margin-top: 3em;
  width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: fit-content;
  margin: auto;
  margin-top: 3em;
  gap: 2em;
}

.card {
  background-color: var(--branco-conforto) !important;
  width: fit-content;
  max-height: 290px;
  max-width: 350px;
  border-radius: 5px;
  text-align: justify;
  padding: 1.5em;
}

.card-maior {
  background-color: var(--branco-conforto) !important;
  width: fit-content;
  height: 255px;
  max-width: 460px;
  border: 1px solid black;
  text-align: left;
  align-self: flex-start;
  padding: 1.5em;
}

.card-maior > svg {
  color: rgb(133, 100, 18);
  margin-bottom: 5px;
}

.card-maior > span {
  font-size: larger;
  font-weight: bold;
}

.card > p {
  overflow-y: scroll;
  padding-right: 20px;
}

.card > h3 {
  font-size: 20px;
  font-style: italic;
  color: rgb(97, 82, 0);
  font-weight: bolder;
}

.card > svg {
  position: absolute !important;
  bottom: 1.5em;
  color: rgb(133, 100, 18);
}

.card-hyperlink {
  text-decoration: none;
  color: rgb(133, 100, 18);
  text-align: right;
  font-weight: 500;
}

.card-hyperlink:hover {
  color: goldenrod;
}

.card > ::-webkit-scrollbar {
  width: 3px;
  background-color: #0000001a;
}

.card > ::-webkit-scrollbar-thumb {
  background-color: rgb(139, 106, 21);
}

.card-conteudo {
  width: 100%;
  height: 100%;
  position: relative;
  margin: auto;
}

.indicador-clique {
  position: absolute;
  top: 0;
  background-color: rgb(0, 0, 0, 0.6);
  width: 80%;
  height: 100%;
  text-align: center;
  border-radius: 20px;
  color: white;
  display: none;
}

.indicador-clique > span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* ------------------------------------- */

/* 
    Áreas de texto
*/
.ajuste-fonte {
  font-size: 34px;
}

.footer-1 {
  width: 100%;
  text-align: center;
  padding: 1em;
}

.textarea-branco {
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: var(--branco-conforto);
  height: fit-content;
  padding: 1.5em;
}

.textarea-preto {
  position: relative;
  overflow: hidden;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.842);
  height: fit-content;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}

.intro {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
  color: white;
  overflow: hidden;
}

.caixa-texto-esq {
  min-height: 50vh;
  height: fit-content;
  width: 100%;
  max-width: 1500px;
  text-align: justify;
  padding-top: 1em;
}

.titulo-identidade {
  font-size: 50px;
  color: rgb(200, 173, 23);
}

.caixa-texto-centro {
  min-height: 50vh;
  width: 90vw;
  padding: 2em;
  margin: auto;
  text-align: center;
}

/*
    Customizações visuais
*/

.bg-img-carousel {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 550px;
  width: 100%;
}

.img-text {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  opacity: 0.9;
  backdrop-filter: blur(5px);
}

.dark {
  color: black;
}

.col-md-4 > img {
  width: 100%;
  margin: auto !important;
}

.col-md-8 {
  max-width: 1130px !important;
}

.row {
  margin-left: unset !important;
  margin-right: unset !important;
  margin-bottom: 2em;
}

.fixado-topo {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 1030;
}

.list-unstyled {
  max-height: 100%;
}

.container-custom {
  position: relative;
  width: fit-content;
  margin: auto;
}

.container-custom > img {
  width: 100%;
  max-height: 500px;
}

.container-custom.retrato > img {
  width: 100%;
  max-height: 800px;
}

.centro {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.flex-column > li {
  color: white !important;
}

.bg-black-blur {
  background-color: rgba(0, 0, 0, 0.863);
  backdrop-filter: blur(3px);
}

.bg-green-blur {
  background-color: rgba(1, 39, 1, 0.863);
  backdrop-filter: blur(3px);
}

.bg-white-50 {
  background-color: rgba(255, 255, 255, 0.158);
}

.text-center {
  text-align: center !important;
}

.container > span {
  color: rgba(255, 255, 255, 0.788);
}

.nav-link:hover {
  color: rgb(199, 169, 0) !important;
}

.nav-item {
  height: fit-content;
  align-content: center;
  transition: background-color 0.1s ease-in-out;
}

.nav-item:hover {
  background-color: rgba(255, 255, 255, 0.226);
}

.nav-item.ativo > a {
  color: rgb(199, 169, 0) !important;
  font-weight: bold;
  text-decoration: underline !important;
  text-underline-offset: 5px;
}

/* ---------------------------------------------------- */

