.links-page {
  min-height: 100vh;
  background: #0f172a;
  color: #0f172a;
}

.links-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 56px 18px;
  position: relative;
  overflow: hidden;
}

.links-backdrop {
  position: absolute;
  inset: -20% -10% -20% -10%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(2px) saturate(1.05);
  opacity: 0;
  transition: opacity 0.9s ease;
  z-index: 0;
  transform: scale(1.02);
}

.links-backdrop.alt {
  z-index: 0;
}

.links-backdrop.is-active {
  opacity: 0.55;
  animation: links-kenburns 16s ease-in-out infinite alternate;
  animation-fill-mode: both;
}

.links-backdrop.overlay {
  background: radial-gradient(circle at top, rgba(248, 249, 252, 0.78) 0%, rgba(230, 233, 244, 0.72) 45%, rgba(230, 233, 244, 0.8) 100%);
  animation: none;
  opacity: 1;
  z-index: 1;
}

.links-card {
  width: min(520px, 100%);
  background: #ffffff;
  border-radius: 28px;
  padding: 32px 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(27, 35, 87, 0.08);
  position: relative;
  z-index: 2;
  text-align: center;
}

.links-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(27, 35, 87, 0.08);
  color: #1b2357;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.links-logo {
  width: 180px;
  height: auto;
  margin: 18px auto 10px;
  display: block;
}

.links-card h1 {
  font-size: 2rem;
  line-height: 1.2;
  color: #1b2357;
  margin: 0 0 10px;
}

.links-subtitle {
  font-size: 0.95rem;
  color: #475569;
  margin: 0 auto 24px;
  max-width: 360px;
}

.links-actions {
  display: grid;
  gap: 12px;
}

.links-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(27, 35, 87, 0.12);
  background: #ffffff;
  color: #1b2357;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.links-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  border-color: rgba(27, 35, 87, 0.25);
}

.links-button.is-primary {
  background: #1b2357;
  color: #ffffff;
  border: none;
  justify-content: space-between;
}

.links-button.is-primary svg {
  width: 18px;
  height: 18px;
}

.links-button.is-whatsapp {
  background: #25d366;
  color: #ffffff;
  border: none;
  justify-content: space-between;
}

.links-button.is-whatsapp svg {
  width: 18px;
  height: 18px;
}

.links-button.is-location {
  background: #f59e0b;
  color: #ffffff;
  border: none;
  justify-content: space-between;
}

.links-button.is-location svg {
  width: 18px;
  height: 18px;
}

.links-button.is-ghost {
  background: transparent;
  border-style: dashed;
}

.links-arrow {
  font-size: 1.1rem;
}

.links-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27, 35, 87, 0.2), transparent);
  margin: 24px 0;
}

.links-social {
  display: grid;
  gap: 12px;
}

.links-social a {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  color: #1b2357;
  font-weight: 600;
  text-decoration: none;
  padding: 10px;
  border-radius: 14px;
  background: rgba(27, 35, 87, 0.06);
  transition: background 0.2s ease;
}

.links-social a:hover {
  background: rgba(27, 35, 87, 0.12);
}

.links-social svg {
  width: 18px;
  height: 18px;
}

.links-footer {
  margin-top: 20px;
  font-size: 0.75rem;
  color: #64748b;
}

@keyframes links-kenburns {
  0% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1.02);
  }
}

@media (max-width: 480px) {
  .links-card {
    padding: 28px 20px;
  }

  .links-card h1 {
    font-size: 1.65rem;
    line-height: 1.15;
  }
}
