.texto-ciano {
  color: #004f55;
}

.bg-ciano-light {
  background: #e6fcfe;
}

.badge {
  display: flex;
  height: 38px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 9999px;
}

.badge.badge--ciano {
  background: #005068;
  color: #ffffff;
}

.badge.badge--cinza {
  background: rgba(0, 79, 85, 0.2);
  color: #001e27;
}

.badge.badge--azul,
.badge.badge--roxo,
.badge.badge--ciano-light,
.badge.badge--outline {
  background: #b0e7f8;
  color: currentColor;
  font-size: 12px;
  font-weight: 500;
}

.badge.badge--roxo {
  background: #e7dcff;
}

.badge.badge--ciano-light {
  background: #b0f6fc;
}

.badge.badge--outline {
  background: transparent;
  border: 1px solid #00666e;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.search-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.search-container input {
  padding: 0.5rem 0.8rem;
  flex: 1;
  height: -webkit-fill-available;
  border-radius: 1rem;
  border: 1px solid #b0b9bc;
  background: #fff;
}

.search-container button {
  display: flex;
  padding: 0.4rem;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #00e2f4;
  box-shadow:
    0 10px 15px -3px rgba(0, 228, 245, 0.25),
    0 4px 6px -4px rgba(0, 228, 245, 0.25);
}

.card {
  display: flex;
  flex-direction: column;
  padding: 40px;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px;
  background: #fff;
  box-shadow:
    0 4px 6px -4px rgba(203, 203, 203, 0.25),
    0 10px 15px -3px rgba(203, 203, 203, 0.25);
}

.card .card-content {
  flex: 1;
  justify-items: flex-start;
}

.owl-carousel .owl-dots {
  display: flex;
  justify-content: center;
}

button.owl-dot.active {
  border-radius: 9999px;
  background: #00e4f5 !important;
  width: 32px;
  height: 8px;
  align-self: flex-end;
}

.owl-carousel button.owl-dot:not(.active) {
  border-radius: 9999px;
  border: 1px solid rgba(0, 30, 39, 0.2);
  background: transparent !important;
  width: 32px;
  height: 8px;
  align-self: flex-end;
}

.bg-gradiente-azul {
  background: radial-gradient(
    300.29% 39.23% at 47.77% 55.87%,
    #006c8d 0%,
    #001e27 100%
  );
}

.grid-cards,
.grid-cards--lib {
  display: grid;
  grid-template-columns: repeat(auto-fit, 100%);
  gap: 2rem;
}

.grid-cards .card-items:last-child .content {
  flex: 1;
}

.card-items {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.card-items:hover {
  transform: scale(1.02);
}

@media (min-width: 768px) {
  .grid-cards {
    grid-template-columns: repeat(auto-fit, minmax(324px, 1fr));
  }

  .grid-cards--lib {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .card {
    flex-direction: row;
  }
}
