:root {
  --bg: #F5F3F0;
  --bg-alt: #E5D4C6;
  --accent: #A2503A;
  --text: #5C3A2D;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(160deg, var(--bg-alt) 0%, var(--bg) 60%);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

img {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

.links-card {
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.links-card .logo {
  width: 96px;
  margin: 0 auto 24px;
}

.links-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.links-card .script {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  color: var(--accent);
  display: block;
  margin-bottom: 4px;
}

.links-subtitle.script {
  font-size: 20px;
  margin-bottom: 24px;
}

.links-card h1 {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-bottom: 36px;
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-btn {
  display: block;
  width: 100%;
  padding: 18px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--accent);
  background: #fff;
  color: var(--accent);
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.link-btn:hover {
  transform: translateY(-2px);
}

.link-btn.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.link-btn.primary:hover {
  background: #8a4230;
}


.link-btn.mercadolivre:hover {
  background: #ecd073;
}

.link-btn.disabled {
  background: var(--bg-alt);
  color: var(--text);
  border-color: var(--bg-alt);
  opacity: 0.7;
  cursor: default;
  pointer-events: none;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.social-links a {
  display: inline-flex;
  color: var(--text);
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: var(--accent);
}

.social-links .icon {
  width: 22px;
  height: 22px;
}

footer.links-footer {
  margin-top: 40px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--text);
  opacity: 0.7;
}
