/* Mata Sede — hub de links (bio Instagram) */

.links-page {
  --links-bg: #001a26;
  --links-bg-mid: #003244;
  --links-surface: rgba(255, 255, 255, 0.08);
  --links-surface-hover: rgba(255, 255, 255, 0.14);
  --links-border: rgba(255, 255, 255, 0.18);
  --links-text: #ffffff;
  --links-text-muted: rgba(255, 255, 255, 0.78);
  min-height: 100dvh;
  margin: 0;
  color: var(--links-text);
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(130, 177, 85, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 100% 100%, rgba(249, 157, 28, 0.12), transparent 50%),
    linear-gradient(180deg, var(--links-bg-mid) 0%, var(--links-bg) 100%);
}

.links-hub {
  width: min(100%, 28rem);
  margin: 0 auto;
  padding: clamp(1.75rem, 5vw, 2.5rem) 1.25rem calc(2.5rem + env(safe-area-inset-bottom, 0px));
}

.links-hub__brand {
  text-align: center;
  margin-bottom: 2rem;
}

.links-hub__mascot {
  display: block;
  width: min(72vw, 14rem);
  height: auto;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
}

.links-hub__logo {
  display: block;
  width: min(58vw, 10.5rem);
  height: auto;
  margin: 0 auto 0.85rem;
}

.links-hub__tagline {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--links-text-muted);
  font-weight: 500;
}

.links-hub__nav {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.links-hub__link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid var(--links-border);
  background: var(--links-surface);
  color: var(--links-text);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.links-hub__link:hover,
.links-hub__link:focus-visible {
  transform: translateY(-1px);
  background: var(--links-surface-hover);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  outline: none;
}

.links-hub__link:active {
  transform: translateY(0);
}

.links-hub__link-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
}

.links-hub__link-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.links-hub__link-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.links-hub__link-label {
  font-size: 0.9375rem;
  font-weight: 700;
}

.links-hub__link-desc {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--links-text-muted);
  line-height: 1.35;
}

.links-hub__link-arrow {
  flex-shrink: 0;
  margin-left: auto;
  opacity: 0.55;
}

.links-hub__link-arrow svg {
  width: 1rem;
  height: 1rem;
}

.links-hub__link--shop {
  border-color: rgba(249, 157, 28, 0.45);
  background: linear-gradient(135deg, rgba(249, 157, 28, 0.22), rgba(249, 157, 28, 0.08));
}

.links-hub__link--shop .links-hub__link-icon {
  background: rgba(249, 157, 28, 0.28);
  color: #ffd08a;
}

.links-hub__link--shop:hover,
.links-hub__link--shop:focus-visible {
  border-color: rgba(249, 157, 28, 0.65);
  background: linear-gradient(135deg, rgba(249, 157, 28, 0.3), rgba(249, 157, 28, 0.12));
}

.links-hub__link--revenda .links-hub__link-icon {
  color: #b8e08a;
}

.links-hub__link--nutri .links-hub__link-icon {
  color: #8fd4e8;
}

.links-hub__link--ugc .links-hub__link-icon {
  color: #ffc98a;
}

.links-hub__footer {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.links-hub__footer a {
  color: var(--links-text-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
}

.links-hub__footer a:hover,
.links-hub__footer a:focus-visible {
  color: #fff;
  outline: none;
}

.links-hub__social {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.links-hub__social svg {
  width: 1rem;
  height: 1rem;
}
