* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: #fff;
  overflow-x: hidden;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* LOGO */
.container img {
  width: 180px;
  height: auto;
  display: block;
  margin-bottom: 16px;
}

/* TEXTO */
.container p {
  margin-bottom: 24px;
  color: #cbd5f5;
}

/* CARDS WRAPPER */
.cards {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* CARD (LINK) */
.card {
  text-decoration: none;
  color: inherit;

  background: #1e293b;
  border-radius: 12px;
  padding: 20px;

  width: 280px;
  max-width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  transition: all 0.2s ease;
  border: 1px solid transparent;
}

/* HOVER */
.card:hover {
  transform: translateY(-5px);
  border: 1px solid #38bdf8;
  background: #0f172a;
}

/* TITULO */
.card h2 {
  margin-bottom: 10px;
  font-size: 20px;
}

/* DESCRIÇÃO */
.card p {
  font-size: 14px;
  color: #94a3b8;
}

/* RESPONSIVO */
@media (max-width: 600px) {
  .card {
    width: 100%;
  }
}
