:root {
  --bg: #000000;
  --text: #ffffff;
  --text-dim: #b5b5b5;
  --accent: #e63322; /* vermelho Overred — ajuste conforme a identidade */
  --card-radius: 16px;
  --content-width: 620px;
  font-size: 16px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  padding: 4rem 1.5rem 2.5rem;
}

.hero__profile {
  display: block;
  width: min(420px, 100%);
  height: auto;
}

.hero__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.hero__social a {
  display: inline-flex;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero__social a:hover {
  opacity: 0.7;
  transform: translateY(-2px);
}

.hero__social svg {
  width: 26px;
  height: 26px;
}

/* ============================================================
   LINKS
   ============================================================ */
.links {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 1rem 1.25rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.links__title {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.link-card {
  display: block;
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.link-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 32px rgba(230, 51, 34, 0.18);
}

/* Banner do card (proporção 16:6) */
.link-card__banner {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  color: var(--text-dim);
}

.footer strong {
  color: var(--text);
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer__nav a:hover {
  color: var(--text);
  text-decoration: underline;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 640px) {
  .hero {
    padding-top: 3rem;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }
}
