/* Baratalândia — link hub
   Palette: yellow #FFD100 · black #0a0a0a · white #fff */

:root {
  --yellow: #ffd100;
  --yellow-deep: #f5c400;
  --black: #0a0a0a;
  --ink: #111;
  --white: #ffffff;
  --muted: #3a3a3a;
  --card: #ffffff;
  --shadow: 0 8px 0 #0a0a0a;
  --radius: 18px;
  --max: 440px;
  --font-display: "Oswald", Impact, "Arial Black", sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--yellow);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.sunburst {
  position: fixed;
  inset: -20% -20% 40% -20%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 30%, #ffe566 0%, transparent 55%),
    repeating-conic-gradient(
      from 0deg at 50% 28%,
      rgba(255, 255, 255, 0.35) 0deg 6deg,
      transparent 6deg 12deg
    );
  opacity: 0.55;
  mask-image: linear-gradient(to bottom, #000 40%, transparent 95%);
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

/* —— Brand —— */
.brand {
  text-align: center;
  margin-bottom: 1.25rem;
}

.logo-seal {
  width: min(260px, 62vw);
  height: min(260px, 62vw);
  aspect-ratio: 1 / 1;
  margin: 0 auto 1.1rem;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.28));
}

.logo-seal img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 0; /* already a circular asset */
  image-rendering: auto;
  transform: none;
}

.title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 7vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  text-shadow: 3px 3px 0 #fff, 5px 5px 0 rgba(0, 0, 0, 0.15);
}

.tagline {
  margin: 0.45rem 0 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--black);
}

.tagline strong {
  background: var(--black);
  color: var(--yellow);
  padding: 0.1em 0.4em;
  border-radius: 6px;
}

.sub {
  margin: 0.55rem 0 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
}

/* —— Trust strip —— */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  margin: 1.25rem 0 1.5rem;
  background: var(--black);
  color: var(--white);
  border-radius: 14px;
  padding: 0.75rem 0.5rem;
  box-shadow: var(--shadow);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #f0f0f0;
}

.trust-item .ti {
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 900;
}

/* —— Link cards —— */
.links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.link-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1.1rem;
  background: var(--card);
  color: var(--black);
  text-decoration: none;
  border: 3px solid var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
  animation: rise 0.5s ease both;
}

.link-card:nth-child(1) { animation-delay: 0.05s; }
.link-card:nth-child(2) { animation-delay: 0.12s; }
.link-card:nth-child(3) { animation-delay: 0.19s; }
.link-card:nth-child(4) { animation-delay: 0.26s; }

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 11px 0 var(--black);
  background: #fffef5;
  outline: none;
}

.link-card:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 var(--black);
}

.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--black);
  color: var(--yellow);
  flex-shrink: 0;
}

.icon.ig { background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af); color: #fff; }
.icon.fb { background: #1877f2; color: #fff; }
.icon.x  { background: #0a0a0a; color: #fff; }

.meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.1;
}

.handle {
  font-size: 0.82rem;
  font-weight: 700;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.arrow {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--black);
  transition: transform 0.15s ease;
}

.link-card:hover .arrow {
  transform: translateX(4px);
}

/* —— Partners —— */
.partners {
  margin-top: 1.75rem;
  text-align: center;
}

.partners-label {
  margin: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.partner-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.pill {
  background: var(--black);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* —— Footer —— */
.foot {
  margin-top: 2rem;
  text-align: center;
  padding-top: 1.25rem;
  border-top: 3px dashed rgba(0, 0, 0, 0.2);
}

.slogan-foot {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--black);
}

.copy {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
}

.copy a {
  color: var(--black);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid var(--black);
}

.copy a:hover {
  color: #333;
}

/* —— Motion —— */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (min-width: 480px) {
  .trust-item {
    font-size: 0.68rem;
  }
}
