main.container {
  gap: 8rem;
  margin: 10rem 0;
}

ul#cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
}

.card {
  width: 100%;
  height: auto;
  transition: all 0.2s;
  position: relative;
}

.card:hover {
  transform: rotate(1deg);
}

section.card-top {
  width: 40%;
  height: auto;
  transition: all 0.2s;
  position: relative;
  margin: 0 auto;
}

section.card-top:hover {
  transform: rotate(1deg);
}

#logo-uninter {
  width: 100%;
  height: 10rem;
  background: var(--primary-color);
  padding: 2rem;
  border-radius: 0.5rem;
  position: relative;
}

#logo-uninter img {
  width: 50%;
}

#logo-uninter .svg {
  width: 15%;
  position: absolute;
  bottom: 1rem;
  right: 0;
}

.card-inner {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 8px;
}

.card__content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.img-container {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  text-align: start;
  gap: 1.25rem;
}

.img-container h3 {
  font-size: medium;
}

li .card__content img {
  width: 100%;
  height: 10rem;
  border-radius: 2rem;
  border: 0.2rem solid var(--secondary-color-opacity);
  box-shadow: 0 0 10px var(--secondary-color);
  object-fit: cover;
}

.card__content a {
  transition: color 0.2s ease;
}

.card__content a:hover {
  color: var(--primary-color);
}

.tools {
  display: flex;
  align-items: center;
  padding: 9px;
}

.circle {
  padding: 0 4px;
}

.box {
  display: inline-block;
  align-items: center;
  width: 10px;
  height: 10px;
  padding: 1px;
  border-radius: 50%;
}

.red {
  background-color: #ff605c;
}

.yellow {
  background-color: #ffbd44;
}

.green {
  background-color: #00ca4e;
}

.circle-animated {
  width: 100px;
  height: 100px;
  background: radial-gradient(var(--primary-color), var(--primary-color));
  border-radius: 50%;
  position: absolute;
  animation: move-up6 2s ease-in infinite alternate-reverse;
}

.circle-animated:nth-child(1) {
  top: -25px;
  left: -25px;
}

.circle-animated:nth-child(2) {
  bottom: -25px;
  right: -25px;
  animation-name: move-down1;
}

@keyframes move-up6 {
  to {
    transform: translateY(-10px);
  }
}

@keyframes move-down1 {
  to {
    transform: translateY(10px);
  }
}

/* Responsividade */
@media (max-width: 1140px) {
  section.card-top {
    width: 90%;
  }

  #logo-uninter img {
    width: 50%;
  }

  #logo-uninter .svg {
    width: 20%;
  }
}
