.fab_effect {
  display: block;
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  z-index: 1;
  object-position: center;
  transform: scale(1);
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.item:focus .fab_effect,
.item:hover .fab_effect {
  transform: scale(100);
}

.fab_effect.vermelho {
  background-color: #ad363a !important;
}

.fab_effect.laranja {
  background-color: #df6250 !important;
}

.fab_effect.verde {
  background-color: #58a992 !important;
}

.fab_effect.cyano {
  background-color: #3b75c7 !important;
}

.fab_effect.marinho {
  background-color: #2e4874 !important;
}

.fab_effect.amarelo {
  background-color: #e9a746 !important;
}

.cronologia {
  display: flex;
  flex-direction: row;
  width: 100%;
  overflow: auto;
  margin-bottom: 16px;
  gap: 16px;
}

.cronologia .item {
  display: block;
  position: relative;
  background-color: white;
  border-radius: 32px !important;
  padding: 16px 16px;
  overflow: hidden;
  min-height: 200px;
  overflow: hidden;
}

.cronologia .item .content {
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6em;
  font-weight: bold;
}

@media (max-width: 768px) {
  .cronologia .item {
    height: 300px;
  }
}

@media (min-width: 769px) and (max-width: 1366px) {
  .cronologia .item {
    height: 400px;
  }
}

@media (min-width: 1367px) and (max-width: 1600px) {
  .cronologia .item {
    height: 300px;
  }
}

.cronologia .item p {
  display: block;
  position: relative;
  z-index: 2;
  color: rgba(0, 0, 0, 0.4);
  transition: all 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  height: 100%;
}

.cronologia .item:focus p,
.cronologia .item:hover p {
  color: white;
  transition: all 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/* Missão */

.card {
  margin-bottom: 16px !important;
}

.proposito .card {
  padding: 10vh 0vw;
}

.proposito .titulo {
  text-align: left;
  width: 100%;
  padding: 30px 0px;
}

.proposito .conteudo {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white !important;
}

.container-about {
  min-height: calc(100dvh - 64px);
  display: flex;
  justify-content: center;
  align-items: center;
}


