/* Baratotal — página de bio (Linktree-style)
   Mobile-first · acessada principalmente via Instagram */

:root {
  --bg: #0a0e14;
  --surface: #131922;
  --surface-2: #1a212d;
  --border: #2a3340;
  --text: #ffffff;
  --text-muted: #a8b3c7;
  --accent: #f97316;
  --accent-2: #fbbf24;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
}

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

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  min-height: 100vh;
}

body {
  background:
    radial-gradient(circle at 20% 0%, rgba(249, 115, 22, 0.15), transparent 40%),
    radial-gradient(circle at 80% 100%, rgba(251, 191, 36, 0.1), transparent 50%),
    var(--bg);
  background-attachment: fixed;
}

.bio {
  max-width: 480px;
  margin: 0 auto;
  padding: 32px 20px 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bio-header {
  text-align: center;
  margin-bottom: 16px;
}

.logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface);
  border: 3px solid var(--accent);
  margin: 0 auto 16px;
  display: block;
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.3);
}

.bio-header h1 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.bio-header .tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.bio-header .tagline strong {
  color: var(--accent-2);
  font-weight: 700;
}

.bio-header .location {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn:active { transform: scale(0.98); }
.btn:hover {
  border-color: var(--accent);
  background: var(--surface-2);
}

.btn-icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border-radius: 10px;
  flex-shrink: 0;
  font-weight: 700;
}

.btn-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.btn-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.btn-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.btn-primary {
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
  border-color: var(--whatsapp);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--whatsapp-dark) 100%);
  border-color: var(--whatsapp);
  filter: brightness(1.1);
}
.btn-primary .btn-icon { background: rgba(255, 255, 255, 0.18); }
.btn-primary .btn-title { font-size: 17px; font-weight: 700; }
.btn-primary .btn-sub { color: rgba(255, 255, 255, 0.85); font-weight: 500; }

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  margin-top: 12px;
  text-align: center;
}

.info-card h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 700;
}

.info-card p {
  font-size: 14px;
  margin-bottom: 4px;
}

.info-card .muted {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

footer {
  text-align: center;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.5px;
}
