:root {
  --t-blue: #054375;
  --t-cyan: #05BDFB;
  --t-green: #8CD133;
  --t-yellow: #F3CB3F;
  --t-white: #FFFFFF;
  --t-gray-900: #414144;
  --t-gray-300: #8E8E93;
  --t-gray-200: #E0E0E0;
  --t-gray-100: #F7F7F7;
  --t-horizontal-gradient: linear-gradient(90deg, rgba(51,209,51,1) 0%, rgba(5,189,251,1) 100%);
  --t-vertical-gradient: linear-gradient(180deg, rgba(51,209,51,1) 0%, rgba(5,189,251,1) 100%);
  --t-animation-gradient-1: linear-gradient(180deg, rgb(5,184,246) 0%, #054476 100%), linear-gradient(180deg, #054476 0%, rgb(5,184,246) 100%);
  --t-dark-grandient: linear-gradient(0deg, rgba(0,0,0,0.9556197478991597) 5%, rgba(0,0,0,0) 76%);
  --t-dark-grandient-2: linear-gradient(0deg, rgba(5,67,117,0.9023984593837535) 5%, rgba(5,67,117,0) 76%);
}

body {
  font-family: 'Red Hat Display';
}

.h1-title {
  font-size: 50px;
  line-height: 1;
  font-weight: 900;
}

.h5-title-bold {
  font-size: 25px;
  line-height: 1;
  font-weight: bold;
}

.h5-title-regular {
  font-size: 25px;
  line-height: 1;
}

.p1-semibold {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.text-gradient-vertical {
  background: var(--t-vertical-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
  color: transparent;
}

.t-breadcrumbs {
  display: flex;
  align-items: center;
  color: var(--t-blue);
  font-size: 16px;
}

.t-breadcrumbs a {
  color: var(--t-blue);
  text-decoration: none;
  margin: 0;
}

.t-breadcrumbs a:hover {
  text-decoration: underline;
}

.t-breadcrumbs span {
  font-weight: 400;
  display: inline-block;
  margin: 0 6px 0 2px;
}

.t-card-type-1 {
  width: 218px;
  height: 180px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  border: 1px solid var(--t-blue);
  border-radius: 8px;
  box-shadow: 1px 1px 5px 0 rgba(65,65,68,0.31);
  overflow: hidden;
  position: relative;
  transition: transform 0.5s ease;
}

.t-card-type-1:hover {
  text-decoration: none;
  background: var(--t-vertical-gradient);
  border: none;
  transform: translateY(-5px);
}

.t-card-type-1::after {
  display: block;
  content: '';
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  transform: scale(0.98);
}

.t-card-type-1:hover::after {
  background: var(--t-blue);
}

.t-card-type-1:hover h5 {
  color: var(--t-white);
}

.t-card-type-1:hover img {
  filter: brightness(1.5) grayscale(1);
}

.t-card-type-1 h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--t-blue);
  margin: 0;
  padding: 20px 0;
  position: relative;
  z-index: 2;
}

.t-card-type-1 img {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

html {
  scroll-padding-top: 2rem;
}

body {
  scroll-behavior: smooth;
}

.t-card-type-2 {
  border-radius: 15px;
  border: 1px solid var(--t-gray-200);
  display: flex;
  overflow: hidden;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.11);
}

.t-card-type-2__description {
  padding: 24px 40px 24px 24px;
  width: calc(100% - 20px);
}

.t-card-type-2__gradient {
  display: block;
  width: 10px;
  height: 100%;
  background: var(--t-vertical-gradient);
  transition: all 0.5s ease;
}

.t-card-type-2__description h3 {
  font-weight: bold;
  color: var(--t-blue);
  margin: 12px 0;
}

.t-card-type-2__description p {
  color: var(--t-gray-300);
  margin: 0;
}

@keyframes changeGrandient {
  0% {
    background-position-y: 350px, 0;
  }
  50% {
    background-position-y: 150px, -180px;
  }
  100% {
    background-position-y: 0px, -350px;
  }
}

.t-card-type-2:hover .t-card-type-2__gradient {
  width: 25px;
  transition: all 0.5s ease;
  animation-name: changeGrandient;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-direction: alternate;
  animation-delay: 0.5s;
  background: var(--t-animation-gradient-1);
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 100%;
  background-position-y: 350px, 0;
}

.h2-title {
  font-size: 30px;
  font-weight: 400;
}

.h5-title {
  font-size: 42px;
  font-weight: 900;
}

.t-card-type-3 {
  width: 160px;
  height: 160px;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.11);
  transition: all 0.5s ease;
}

.t-card-type-3:hover {
  background: var(--t-blue);
  color: var(--t-white);
  transition: all 0.5s ease;
}

.t-card-type-3 img {
  margin-bottom: 14px;
}

.t-card-type-3 p {
  font-weight: bold;
  font-size: 15px;
}

.t-post-card-1 {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--t-white);
}

.t-post-card-1 .t-post-card-1__image {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.t-post-card-1__description {
  width: 100%;
  height: 80%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  padding: 40px 60px;
  background: var(--t-dark-grandient);
  display: flex;
  flex-direction: column;
  justify-content: end;
  transition: all 0.5s ease;
}

.t-post-card-1__description img {
  align-self: start;
  margin-bottom: 12px;
}

.t-post-card-1__description h4 {
  font-weight: bold;
  color: var(--t-white);
  margin: 0;
}

.t-post-card-1:hover .t-post-card-1__description {
  background: var(--t-dark-grandient-2);
  transition: all 0.5s ease;
}

.t-post-card-1:hover .t-post-card-1__image {
  transform: scale(1.1);
  transition: all 1.5s ease;
}

select.t-select-field {
  border-radius: 0;
  height: 60px;
  padding: 0 20px;
  appearance: none;
  background: url("../../assets/img/icon_caret-down.svg");
  background-repeat: no-repeat;
  background-position: 97% center;
  background-size: 20px;
  border: 1px solid var(--t-blue);
  color: var(--t-blue);
  font-weight: 500;
  font-size: 14px;
}

.t-card-type-4 {
  background: var(--t-blue);
  color: var(--t-white);
  padding: 20px;
}

.t-card-type-4__year {
  font-size: 40px;
  font-weight: bold;
  margin: 0;
  line-height: 1;
}

.t-card-type-4__title {
  font-size: 25px;
  line-height: 28px;
}

.btn-white {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 11px 32px;
  width: 100%;
  height: 62px;
  background: var(--t-white);
  border: 2px solid var(--t-blue);
  box-sizing: border-box;
  border-radius: 4px;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: var(--t-blue);
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 5px 5px 11px -7px rgb(0 0 0 / 79%);
  transition: all 0.5s ease;
}

.btn-white:hover {
  color: var(--t-white);
  background: var(--t-green);
  transition: all 0.5s ease;
}

.hidden-filter {
  display: none;
}

@media (max-width: 576px) {
  .t-select-field {
    width: 100% !important;
  }
}

@media (max-width: 370px) {
  .t-breadcrumbs {
    display: block;
    font-size: 14px;
  }
}

@media (max-width: 370px) {
  .block-01 .t-breadcrumbs {
    margin-bottom: 19px;
  }
}

.block-02.block-invert .t-select-field option {
  color: var(--t-blue);
}

.owl-relatorios {
  margin-top: 40px;
  position: relative;
}

div.owl-relatorios .owl-nav button.owl-next,
div.owl-relatorios .owl-nav button.owl-prev {
  position: absolute;
  font-size: 50px;
  top: 80px;
  color: var(--t-blue);
}

div.owl-relatorios .owl-nav [class*='owl-']:hover {
  background: none;
  color: var(--t-green);
  text-decoration: none;
}

.owl-relatorios .owl-nav button.owl-next{
  right: -30px;
}

.owl-relatorios .owl-nav button.owl-prev{
  left: -30px;
}

div.block-07__grid-item .btn.btn-white {
  width: 100%;
}

.wp-block-file{
  margin: 0 !important;
}

div.wp-block-file a.wp-block-file__button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
  width: 100%;
  height: 62px;
  background: var(--t-white) !important;
  border: 2px solid var(--t-blue) !important;
  box-sizing: border-box;
  border-radius: 6px;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: var(--t-blue);
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 5px 5px 11px -7px rgb(0 0 0 / 79%);
  transition: all 0.5s ease;
}

div.wp-block-file a.wp-block-file__button:hover {
  color: var(--t-white) !important;
  background: var(--t-green) !important;
  transition: all 0.5s ease;
}

.t-card-type-6 {
  border-radius: 15px;
  border: 1px solid var(--t-gray-200);
  display: flex;
  overflow: hidden;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.11);
  background: var(--t-white);
  text-decoration: none;
}

.t-card-type-6__description {
  padding: 16px;
  width: calc(100% - 20px);
}

.t-card-type-6__gradient {
  display: block;
  width: 10px;
  height: 100%;
  background: var(--t-vertical-gradient);
  transition: all 0.5s ease;
}

.t-card-type-6__description h3 {
  font-weight: bold;
  color: var(--t-blue);
  margin: 12px 0;
  font-size: 16px;
}

.t-card-type-6__description p {
  color: var(--t-gray-300);
  margin: 0;
  font-size: 14px;
}

.t-card-type-6__description .button-link {
  font-size: 12px;
  color: var(--t-blue);
  font-weight: bold;
  margin-top: 24px;
  display: flex;
  align-items: center;
}

.t-card-type-6__description .button-link img {
  margin-left: 16px;
  transition: all 0.5s ease;
}

.t-card-type-6__description .button-link:hover img {
  transform: translateX(6px);
  transition: all 0.5s ease;
}

.t-card-type-6__description {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: center;
}

@keyframes changeGrandient {
  0% {
    background-position-y: 350px, 0;
  }
  50% {
    background-position-y: 0, -10px;
  }
  100% {
    background-position-y: 0px, -350px;
  }
}

.t-card-type-6:hover .t-card-type-6__gradient {
  width: 15px;
  transition: all 0.5s ease;
  animation-name: changeGrandient;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-direction: alternate;
  animation-delay: 0.5s;
  background: var(--t-animation-gradient-1);
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 100%;
  background-position-y: 350px, 0;
}
