/* Photo */

.photo {
  position: relative;
  width: 100%;
  max-height: 100%;
  aspect-ratio: 1 / 1.5;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}

@media (min-width: 576px) {
  .photo {
    aspect-ratio: 1 / 1.15;
  }
}

@media (min-width: 768px) {
  .photo {
    aspect-ratio: 1 / 1.15;
  }
}

.photo.horizontal {
  aspect-ratio: 1 / .6;
}

.photo .main-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.photo .hihlights {
  position: absolute;
  width: 70%;
  height: auto;
  min-height: 15%;
  background-image: var(--gradient-abacc);
  padding: 24px 32px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.photo .hihlights.top {
  left: -18px;
  top: 10%;
}

.photo .hihlights.bottom {
  width: 70%;
  right: 30px;
  bottom: -30px;
}

@media (min-width: 992px) {
  .photo .hihlights.bottom {
    width: 60%;
    right: 40px;
    bottom: -40px;
  }
}

@media (min-width: 1400px) {
  .photo .hihlights.bottom {
    right: 50px;
    bottom: -40px;
  }
}

@media (min-width: 576px) {
  .photo .hihlights {
    width: 60%;
  }
}

@media (min-width: 576px) {
  .photo .hihlights.top {
    width: 70%;
    left: -20px;
    top: 20%;
  }
}

@media (min-width: 1200px) {
  .photo .hihlights.top {
    width: 70%;
    left: -30px;
    top: 20%;
  }
}

.photo .hihlights span {
  font-size: .8rem;
  color: var(--branco);
}

@media (min-width: 576px) {
  .photo .hihlights span {
    font-size: 1rem;
  }
}

.photo .secondary {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 50%;
  height: 40%;
  object-fit: cover;
  border-radius: 24px;
  outline: 10px solid var(--cinza);
}

@media (min-width: 576px) {
  .photo .secondary {
    width: 40%;
    bottom: -30px;
    outline: 20px solid var(--cinza);
  }
}

/* Title */

.title {
  display: inline-flex;
  flex-direction: column;
  font-size: 2.7rem;
  font-weight: bold;
  text-transform: uppercase;
  background-image: var(--gradient-abacc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 3.5rem;
  margin-bottom: 24px;
}

.title strong {
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: .2rem;
  font-weight: bold;
  color: var(--verde-dark);
  margin-bottom: 0px;
}

/* Subtitle */

.subtitle {
  display: inline-flex;
  flex-direction: column;
  font-size: 1.1rem;
  letter-spacing: .2rem;
  font-weight: bold;
  text-transform: uppercase;
  background-image: var(--gradient-abacc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 2rem;
  margin-bottom: 16px;
}

/* Paragraph */

.paragraph {
  font-size: 1rem;
  color: var(--preto);
  line-height: 1.4rem;
  margin: 0;
  white-space: pre-wrap;
}

@media (min-width: 576px) {
  .paragraph {
    font-size: 1.1rem;
    line-height: 2rem;
    margin: 0;
  }
}

/* Title Msg Erro */
.titleMsgErro {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  color: var(--verde);
}

/* Subtitle Msg Erro */
.subtitleMsgErro {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: var(--azul);
}

/* HR */

hr {
  width: 100%;
  height: 1px;
  background-color: var(--preto);
  margin: 24px 0;
}

/* Btn-gradient */

.btn-gradient {
  font-size: .8rem;
  color: var(--branco);
  text-align: center;
  background-image: var(--gradient-abacc);
  padding: 8px 32px;
  border: none;
  box-shadow: none;
  border-radius: 28px;
  transition: all .3s ease-in-out;
}

.btn-gradient i {
  margin-left: 8px;
}

.btn-gradient i.rotate {
  transform: rotate(-45deg);
}

.btn-gradient:hover {
  color: var(--branco);
  background-image: var(--gradient-abacc-invert);
}

@media (max-width: 768px) {
  .btn-small {
    padding: 8px 20px !important;
  }
}

/* Btn-verde */

.btn-verde {
  font-size: .8rem;
  color: var(--branco);
  text-align: center;
  background-color: var(--verde);
  padding: 8px 32px;
  border: none;
  box-shadow: none;
  border-radius: 28px;
  transition: all .3s ease-in-out;
}

.btn-verde:hover {
  color: var(--verde-claro);
  background-color: var(--verde-escuro);
}

/* Btn-azul */

.btn-azul {
  font-size: .8rem;
  color: var(--branco);
  text-align: center;
  background-color: var(--azul);
  padding: 8px 32px;
  border: none;
  box-shadow: none;
  border-radius: 28px;
  transition: all .3s ease-in-out;
}

.btn-azul:hover {
  color: var(--azul-claro);
  background-color: var(--azul-escuro);
}

/* Btn-azul */

.btn-verde-dark {
  font-size: .8rem;
  color: var(--branco);
  text-align: center;
  background-color: var(--verde-dark);
  padding: 8px 32px;
  border: none;
  box-shadow: none;
  border-radius: 28px;
  transition: all .3s ease-in-out;
}

.btn-verde-dark:hover {
  color: var(--branco);
  background-color: var(--verde-escuro);
}

.btn-full {
  width: 100%;
}

/* Video */

.video-thumb {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.2s;
  padding: 32px;
}

.video-thumb:hover {
  /*transform: scale(1.02);*/
}

.video-thumb:before {
  content: "";
  position: absolute;
  background: url("../../assets/img/bot_play.svg") no-repeat center center;
  background-size: 6%;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.4));
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: 0.2s;
}

.video-thumb:hover:before {
  opacity: 1;
}

.video-thumb img {
  width: 100%;
  height: 40dvh;
  object-fit: cover;
  border-radius: 18px;
}

@media (min-width: 768px) {
  .video-thumb img {
    height: 80dvh;
  }
}

/* Mapa */

#mapa-brasil-argentina {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-height: 600px;
}

#mapa-brasil-argentina svg {
  align-items: center;
}

#bot_map_brasil {
  transform: scale(1);
  transition: all .5s ease-in-out;
  cursor: pointer;
}

#bot_map_brasil:hover {}

#bot_map_brasil.selected {
  transform: scale(1.005);
  filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.4));
}

#bot_map_argentina {
  transform: scale(1);
  transition: all .5s ease-in-out;
  cursor: pointer;
}

#bot_map_argentina:hover {}

#bot_map_argentina.selected {
  transform: scale(1.005);
  filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.4));
  cursor: pointer;
}

.svg-indisponivel {
  filter: grayscale(1) brightness(1.2) opacity(0.8);
  /*cursor: not-allowed;*/
  /*pointer-events: none;*/
}

.btn-selected {
  transform: scale(1.005);
  filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.4));
}

/* Instalações */

.painel-instalacoes {
  /*   border: .5px solid var(--grafite);
  border-radius: 24px;
  padding: 32px; */
  padding: 8px 0;
  min-height: 43px;
}

.indicador {
  width: 100%;
  height: auto;
  min-height: 64px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.indicador:not(:last-child) {
  border-bottom: 1px solid var(--cinza-escuro);
}

.indicador .number {
  width: auto;
  min-width: 64px;
  font-size: 2.3rem;
  text-align: center;
  font-weight: bold;
  color: transparent;
}

.indicador .legend {
  font-size: 1rem;
  color: var(--preto);
}

/* Card Notícias */

.card-noticias {
	background-color: var(--branco);
	  border-radius: 16px;
	padding: 16px;
}

.card-noticias img {
  width: 100%;
  aspect-ratio: 1 / .7;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 8px;
}

.card-noticias header {
  width: 100%;
  min-height: initial;
}

@media (min-width: 768px) {
  .card-noticias header {
    width: 100%;
    min-height: 230px;
  }
}

.card-noticias header .data-publicacao {
  display: block;
  font-size: .75rem;
  font-weight: bold;
  color: var(--grafite);
  margin-bottom: 8px;
}

.card-noticias header h3 {
  font-size: 1.1rem;
  color: var(--preto);
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.card-noticias p {
  font-size: .8rem;
  color: var(--preto);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  dwhite-space: pre-wrap;
}

/* Box-address */

.box-address {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  height: 100%;
  border: .5px solid var(--grafite);
  padding: 32px 24px;
  border-radius: 24px;
}

.box-address h4 {
  font-size: 1.3rem;
  font-weight: bold;
  display: inline;
}

.box-address .address-text {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--grafite);
}

.box-address .address-text a {
  text-decoration: none;
  color: var(--grafite);
}

.box-address .address-text a:hover {
  text-decoration: underline;
}

/* Box Form Contato */

.box-form-contato {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 24px;
  border: none;
  border-radius: 24px;
  background-color: var(--branco);
}

.box-form-contato h4 {
  font-size: 1.3rem;
  font-weight: bold;
  display: inline;
  color: var(--preto);
}

.box-form-contato form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  gap: 8px;
  width: 100%;
  height: 100%;
}

.box-form-contato form input[type=text],
.box-form-contato form input[type=email],
.box-form-contato form textarea {
  border: none;
  font-size: .8rem;
  color: var(--grafite);
  border-bottom: 1px solid var(--grafite);
  border-radius: 0;
  resize: none;
  box-shadow: none;
}

.wpcf7 p {
  width: 100%;
}

.wpcf7-not-valid-tip {
  font-size: .8rem;
  color: orange;
}

.wpcf7-response-output {
  width: 100%;
  font-size: .8rem;
  color: var(--branco);
  text-align: center;
  background-color: orange;
  border: none !important;
  border-radius: 16px;
  margin: 0 !important;
}

/* Slider Timeline */

#slider-timeline {
  padding: 64px 0px;
}

@media (min-width: 768px) {
  #slider-timeline {
    padding: 64px 72px;
  }
}

.timeline-row {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  overflow-y: hidden;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.timeline-row::-webkit-scrollbar {
  display: none;
  scrollbar-width: none;
}

.timeline-row>[class*="col-"] {
  padding: 0;
  margin: 0;
  flex-shrink: 0;
}

.card-timeline {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1.8;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 14px;
  padding: 8px;
  overflow: hidden;
  scroll-snap-align: start;
}

@media (min-width: 576px) {
  .card-timeline {
    aspect-ratio: 1 / 1.15;
  }
}

@media (min-width: 768px) {
  .card-timeline {
    aspect-ratio: 1 / 2.1;
  }
}

@media (min-width: 992px) {
  .card-timeline {
    aspect-ratio: 1/2.2;
  }
}

@media (min-width: 1200px) {
  .card-timeline {
    aspect-ratio: 1/1.7;
  }
}

@media (min-width: 1400px) {
  .card-timeline {
    aspect-ratio: 1/1.2;
  }
}

.card-timeline .periodo {
  min-width: 80px;
  display: block;
  background-image: var(--gradient-abacc);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: bold;
  color: var(--branco);
  text-align: center;
}

.card-timeline .box {
  width: 100%;
  max-height: 100%;
  overflow: hidden;
  flex: 1;
  background-color: var(--branco);
  border-radius: 16px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.card-timeline .box img {
  width: 100%;
  max-height: 53%;
  flex: 0 0 53%;
  object-fit: cover;
  object-position: top;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.card-timeline .box .content {
  width: 100%;
  max-height: 47%;
  flex: 0 0 47%;
  padding: 24px;
  overflow-y: hidden;
}

.card-timeline .box .content p {
  font-size: .8rem;
  color: var(--preto);
  line-height: 1.3rem;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
  white-space: pre-wrap;
}

.btn-timeline {
  width: 54px;
  height: 54px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  border: none;
  box-shadow: none;
}

.btn-timeline-prev {
  background-image: url("../../assets/img/btn-timeline-back.svg");
  transition: all .3s ease-in-out;
}

.btn-timeline-prev:hover {
  background-image: url("../../assets/img/btn-timeline-back-hover.svg");
}

.btn-timeline-next {
  background-image: url("../../assets/img/btn-timeline-next.svg");
  transition: all .3s ease-in-out;
}

.btn-timeline-next:hover {
  background-image: url("../../assets/img/btn-timeline-next-hover.svg");
}

/* Estrutura ABACC */

#estrutura-abacc-mobile {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.box-estrutura-abacc {
  cursor: pointer;
  transform: scale(1);
  transition: all .3s ease-in-out;
}

.box-estrutura-abacc:hover {
  transform: translateX(-2px) scale(1.007);
  filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.2));
}

/* Modal Estrutura */

#modal-estrutura-abacc {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

#modal-estrutura-abacc.active {
  display: flex;
}

.box-modal-estrutura-abacc {
  position: relative;
  width: 75vw;
  max-width: 700px;
  height: auto;
  max-height: 90vh;
  background: var(--bege);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.2);
}

@media (min-width: 992px) {
  .box-modal-estrutura-abacc {
    width: 50vw;
    max-width: 700px;
    max-height: 500px;
    padding: 72px 96px;
  }
}

#modal-estrutura-abacc.active .box-modal-estrutura-abacc {
  -webkit-animation: fade-in .5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: fade-in .5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.box-modal-estrutura-abacc h3 {
  display: block;
  width: 100%;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  color: var(--cor-branca);
  padding-bottom: 16px;
}

.box-modal-estrutura-abacc p {
  font-size: 1.1rem;
  color: var(--cor-branca);
  text-align: center;
  padding-bottom: 4px;
}

.btn-close-modal {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 18px;
  height: 18px;
  padding: 12px;
  background-image: url("../../assets/img/btn_close_modal.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
  box-shadow: none;
}

/* Card-atividade */

.card-atividade {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  background-image: var(--gradient-abacc);
  border-radius: 16px;
}

@media (min-width: 576px) {
  .card-atividade {
    aspect-ratio: 1 / 1.15;
  }
}

@media (min-width: 768px) {
  .card-atividade {
    aspect-ratio: 1 / 1;
  }
}

@media (min-width: 992px) {
  .card-atividade {
    aspect-ratio: 1 / 1.6;
  }
}

@media (min-width: 1200px) {
  .card-atividade {
    aspect-ratio: 1 / 1.1;
  }
}

@media (min-width: 1400px) {
  .card-atividade {
    aspect-ratio: 1 / .9;
  }
}

.card-atividade .content {
  width: 100%;
  height: 95%;
  max-height: 95%;
  background-color: var(--branco);
  border-radius: 16px 16px 0 0;
  padding: 20px;
  overflow-y: hidden;
}

.card-atividade .content .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-image: var(--gradient-abacc);
  margin-bottom: 16px;
}

.card-atividade .content .icon img {
  max-width: 30px;
  max-height: 30px;
}

.card-atividade .content p {
  font-size: .8rem;
}

.card-atividade .content p:last-child {
  margin-bottom: 0;
}

/* Card Instituições */

.card-instituicoes {
  width: 100%;
  height: 100%;
  padding: 24px 12px;
  border: 1px solid var(--verde-dark);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.card-instituicoes h3 {
  font-size: 1rem;
  font-weight: bold;
  color: var(--verde-dark);
  text-align: center;
}

.card-instituicoes i {
  font-size: 1.1rem;
  margin-bottom: 6PX;
}

.card-instituicoes a {
  width: 100%;
  text-decoration: none;
  border-bottom: .5px solid var(--cinza-escuro);
  padding: 4px;
  transition: all .3s ease-in-out;
}

.card-instituicoes a:hover {
  background-color: var(--cinza-hover);
}

.card-instituicoes a span {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background-image: var(--gradient-abacc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 auto;
}

.card-instituicoes a:last-child {
  border: none;
}

/* Form Busca Notícias */

.element-search-field {
  position: relative;
}

.element-search-field::before {
  content: '';
  background-image: url("../../assets/img/icon_busca.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 12px;
  left: 10px;
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.element-search-field input[type="text"] {
  width: 100%;
  padding-left: 36px;
  font-size: .9rem;
  line-height: 1.6rem;
  color: var(--preto);
  box-shadow: none !important;
  border-radius: 12px;
}

.element-drop-down {
  width: 100%;
  font-size: .9rem;
  line-height: 1.6rem;
  color: var(--preto) !important;
  box-shadow: none !important;
  border-radius: 12px;
}

.element-checkbox {}

.element-checkbox input[type="checkbox"] {}

.form-check-input:checked {
  background-color: var(--verde-escuro);
}

.element-checkbox label {
  font-size: .9rem;
  line-height: 1.4rem;
  color: var(--preto) !important;
  /*text-transform: uppercase;*/
}

/* Card Capacitação */

.card-capacitacao {
  width: 100%;
  height: 100%;
  padding: 0 0 16px 0;
  cursor: help;
}

.card-capacitacao header {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / .7;
  background-image: var(--gradient-abacc);
  border: none;
  border-radius: 12px;
}

.card-capacitacao header img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 95%;
  object-fit: cover;
  border: none;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.card-capacitacao header .content {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 95%;
  background-color: var(--cinza-hover);
  border: none;
  border-radius: 12px 12px 0 0;
  padding: 16px;
  overflow-y: hidden;
  transition: all .5s ease-in-out;
  opacity: 0;
}

.card-capacitacao:hover header .content {
  opacity: 1;
}

.card-capacitacao header .content p {
  font-size: .8rem;
  text-align: center;
  color: var(--preto);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 11;
  overflow: hidden;
}

.card-capacitacao h4 {
  font-size: .9rem;
  font-weight: bold;
  margin-top: 16px;
  line-height: 1.3rem;
  /*min-height: 80px;*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

@media (min-width: 768px) {
  .card-capacitacao h4 {
    min-height: 80px;
  }
}

.card-capacitacao h4::before {
  content: '';
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--cinza-escuro);
  margin-top: 6px;
  margin-bottom: 12px;
}

/* Card Notícias Resultados */

.card-noticias-result {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  height: auto;
  max-height: initial;
  padding: 12px;
  background-color: var(--branco);
  border-radius: 16px;
  overflow-y: hidden;
}

@media (min-width: 768px) {
  .card-noticias-result {
    flex-direction: column;
    gap: 20px;
/*     height: 300px; */
    max-height: 300px;
    /*     padding: 16px; */
  }
}

.card-noticias-result img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / .6;
  object-fit: cover;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .card-noticias-result img {
    width: 40%;
    aspect-ratio: initial;
  }
}

.card-noticias-result .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .card-noticias-result .content {
/*     width: 60%; */
    height: 100%;
  }
}

/* Categorias */

.categories {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

/* .category {
  display: inline-block;
  padding: 6px 12px 3px;
  background-image: var(--gradient-abacc);
  border-radius: 20px;
  font-size: .65rem;
  color: var(--branco);
  text-decoration: none;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
}
 */

.category {
  display: inline-block;
  padding: 6px 12px 3px;
  background-color: var(--verde-dark);
  border-radius: 20px;
  font-size: .65rem;
  color: var(--branco);
  text-decoration: none;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
}

/* .category:hover {
  background-image: var(--gradient-abacc-invert);
} */

.card-noticias-result .content .title {
  font-size: 1rem;
  color: var(--preto);
  line-height: 1.3rem;
  text-transform: initial;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  margin: 16px 0 12px 0;
}

@media (min-width: 768px) {
  .card-noticias-result .content .title {
    font-size: 1.1rem;
    line-height: 1.5rem;
    -webkit-line-clamp: 3;
    margin: 0 0 12px 0;
  }
}

.card-noticias-result .content .excerpt p {
  font-size: .7rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 10;
  margin-bottom: 0;
  white-space: pre-wrap;
}

@media (min-width: 768px) {
  .card-noticias-result .content .excerpt p {
    font-size: .8rem;
    -webkit-line-clamp: 5;
  }
}

.card-noticias-result .content footer {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.card-noticias-result .content footer .data {
  font-size: .7rem;
  color: var(--grafite);
}

@media (min-width: 768px) {
  .card-noticias-result .content footer .data {
    font-size: .8rem;
  }
}

/* Btn Leia mais */

/* .btn-leia-mais {
  font-size: .8rem;
  font-weight: bold;
  color: var(--preto);
  padding: 3px 12px;
  border-radius: 16px;
  transition: all .3s ease-in-out;
}

.btn-leia-mais:hover {
  color: var(--branco);
  background-color: var(--preto);
}

.btn-leia-mais i {
  margin-left: 4px;
  transform: rotate(-45deg);
}
 */
.btn-leia-mais {
  font-size: .8rem;
  color: var(--branco);
  text-align: center;
  background-image: var(--gradient-abacc);
  padding: 3px 12px;
  border: none;
  box-shadow: none;
  border-radius: 16px;
  transition: all .3s ease-in-out;
}

.btn-leia-mais i {
  margin-left: 4px;
  transform: rotate(-45deg);
}

.btn-leia-mais:hover {
  color: var(--branco);
  background-image: var(--gradient-abacc-invert);
}


/* Destaques e Mais Lidas */

.box-branco {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 20px;
  width: 100%;
  height: auto;
  padding: 20px 16px;
  background-color: var(--branco);
  border-radius: 8px;
  margin-bottom: 24px;
}

.box-branco .subtitle {
  margin: 0;
  margin-bottom: -16px;
}

.box-branco hr {
  margin: 0;
}

.card-noticias-destaque-mais-lidas {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  border: none;
  box-shadow: none;
}

.card-noticias-destaque-mais-lidas .excerpt {
/*   width: 65%; */
  height: auto;
}

.card-noticias-destaque-mais-lidas .excerpt h3 {
  font-size: .85rem;
  font-weight: bold;
  color: var(--preto);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 0;
}

.card-noticias-destaque-mais-lidas:hover .excerpt h3 {
  color: var(--azul);
}

.card-noticias-destaque-mais-lidas .excerpt p {
  font-size: .8rem;
  color: var(--preto);
  transition: all .3s ease-in-out;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  margin: 0;
  white-space: pre-wrap;
}

.card-noticias-destaque-mais-lidas:hover .excerpt p {
  color: var(--azul);
}

.card-noticias-destaque-mais-lidas img {
  width: 35%;
  height: 100%;
  overflow-y: hidden;
  object-fit: cover;
  border-radius: 12px;
  transition: all .3s ease-in-out;
}

.card-noticias-destaque-mais-lidas:hover img {
  filter: brightness(150%);
}

/* Notícia */

.noticia {
  width: 100%;
  height: auto;
  background-color: var(--branco);
  border-radius: 16px;
  padding: 12px;
}

@media (min-width: 768px) {
  .noticia {
    padding: 32px 24px;
  }
}

.noticia header img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / .7;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 32px;
}

.noticia header .categories {
  margin-bottom: 16px;
}

.noticia header .title {
  display: block;
  font-size: 1.1rem;
  line-height: 1.5rem;
  color: var(--preto);
  text-transform: initial;
  margin: 0;
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .noticia header .title {
    font-size: 2.6rem;
    line-height: 3rem;
    margin-bottom: 8px;
  }
}

.noticia header .data-publicacao {
  font-size: .7rem;
  color: var(--grafite);
}

.noticia section p {
  font-size: .9rem;
  color: var(--preto);
  line-height: 1.6rem;
  white-space: pre-wrap;
}

.noticia section p img.alignright {
    float: right;
    margin: 0 0 1em 1em;
}

.noticia section p img.alignleft {
    float: left;
    margin: 0 1em 1em 0;
}

@media (min-width: 768px) {
	.noticia section p img.alignright {
		width: 25%
	}	
}

@media (min-width: 768px) {
	.noticia section p img.alignleft {
		width: 25%
	}
}

@media (min-width: 1200px) {
	.noticia section p img.alignright {
		width: 35%
	}	
}

@media (min-width: 1200px) {
	.noticia section p img.alignleft {
		width: 35%
	}
}

.noticia footer {
  font-size: .8rem;
  color: var(--preto);
}

.noticia footer .share-links {
  color: var(--preto);
  text-decoration: none;
  padding: 6px;
  transition: all .3s ease-in-out;
}

.noticia footer .share-links:hover {
  color: var(--azul-escuro);
}

/* Card Biblioteca */

.card-biblioteca {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: auto;
  background-color: var(--branco);
  border-radius: 16px;
  aspect-ratio: 1 / 1;
  padding: 12px;
}

@media (min-width: 576px) {
  .card-biblioteca {
    aspect-ratio: 1 / .6;
  }
}

@media (min-width: 768px) {
  .card-biblioteca {
    aspect-ratio: 1 / .9;
  }
}

@media (min-width: 992px) {
  .card-biblioteca {
    aspect-ratio: 1 / 1.1;
  }
}

@media (min-width: 1400px) {
  .card-biblioteca {
    aspect-ratio: 1 / .75;
  }
}

.card-biblioteca header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-biblioteca header .categories {
  margin: 0;
  margin-bottom: 6px;
}

.card-biblioteca h3 {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--preto);
  line-height: 1.3rem;
  text-transform: initial;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  margin-bottom: -8px;
}

.card-biblioteca .data {
  /*display: block;*/
  font-size: .8rem;
  color: var(--grafite);
  margin-right: 2px;
}

.card-biblioteca .event {
  font-size: .7rem;
  color: var(--branco);
  color: var(--cinza-escuro);
  font-weight: bold;
  border: 1px solid var(--cinza-escuro);
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0px 12px;
  border-radius: 12px;
}

.card-biblioteca .autores {
  display: flex;
  flex-direction: column;
  font-size: .8rem;
  color: var(--grafite);
}

.card-biblioteca footer {
  width: 100%;
}

/* Formulário Busca Biblioteca */

.busca-biblioteca {
  width: 100%;
  height: auto;
  border: 1px solid var(--grafite);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
}

.busca-biblioteca h3 {
  font-size: 1rem;
  font-weight: bold;
  /* text-transform: uppercase; */
  text-align: left;
  margin-bottom: 4px;
}

/* Loader Busca */
.loader {
  border: 4px solid #eee;
  border-top: 4px solid #0073aa;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 30px auto;
}

.loader.small {
  width: 25px;
  height: 25px;
  border-width: 3px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}