:root {
  --blue: #0b3c78;
  --red: #c21f2b;
  --bg: #f6f8fb;
  --card-bg: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e5e7eb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Sora", sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #0b3c78 0%, #0a2f5a 55%, #c21f2b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.container {
  width: 100%;
  max-width: 1100px;
  padding: 56px 24px;
}

header {
  text-align: center;
  margin-bottom: 56px;
  color: #fff;
}

header h1 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 12px;
}

header p {
  font-size: 1.05rem;
  opacity: 0.9;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 32px;
  text-decoration: none;
  color: var(--text);
  transition: 
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  position: relative;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(11,60,120,.08),
    transparent
  );
  opacity: 0;
  transition: opacity .4s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--blue);
  box-shadow: 0 20px 45px rgba(0,0,0,.18);
}

.card:hover::after {
  opacity: 1;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.badge {
  width: fit-content;
  font-size: .7rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: .3px;
  background: rgba(11,60,120,.1);
  color: var(--blue);
}

.card.hv .badge {
  background: rgba(194,31,43,.1);
  color: var(--red);
}

.card.ead .badge {
  background: rgba(15,23,42,.08);
  color: #0f172a;
}

.content h2 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
}

footer {
  margin-top: 56px;
  text-align: center;
  font-size: .85rem;
  color: #e5e7eb;
  opacity: .9;
}

/* Responsivo */
@media (max-width: 480px) {
  header h1 {
    font-size: 2rem;
  }

  .card {
    padding: 28px 24px;
  }
}
