:root {
  /* Color system */
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-200: #bfdbfe;
  --primary-300: #93c5fd;
  --primary-400: #60a5fa;
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --primary-700: #1d4ed8;
  --primary-800: #1e40af;
  --primary-900: #1e3a8a;
  
  --accent-50: #fff7ed;
  --accent-100: #ffedd5;
  --accent-200: #fed7aa;
  --accent-300: #fdba74;
  --accent-400: #fb923c;
  --accent-500: #f97316;
  --accent-600: #ea580c;
  --accent-700: #c2410c;
  --accent-800: #9a3412;
  --accent-900: #7c2d12;
  
  --gold-50: #fefce8;
  --gold-100: #fef9c3;
  --gold-200: #fef08a;
  --gold-300: #fde047;
  --gold-400: #facc15;
  --gold-500: #eab308;
  --gold-600: #ca8a04;
  --gold-700: #a16207;
  --gold-800: #854d0e;
  --gold-900: #713f12;
  
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  
  /* Typography */
  --font-family: 'Poppins', sans-serif;
  
  /* Spacing */
  --spacing-2: 2px;
  --spacing-4: 4px;
  --spacing-8: 8px;
  --spacing-12: 12px;
  --spacing-16: 16px;
  --spacing-24: 24px;
  --spacing-32: 32px;
  --spacing-40: 40px;
  --spacing-48: 48px;
  --spacing-64: 64px;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
  font-family: var(--font-family);
  background-color: var(--neutral-50);
  color: var(--neutral-800);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--spacing-16);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header Styles */
header {
  margin-bottom: var(--spacing-32);
}

.profile-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profile-image-container {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: var(--spacing-16);
}

.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-full);
  border: 3px solid var(--primary-500);
  box-shadow: var(--shadow-md);
}

.headline {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-800);
  margin-bottom: var(--spacing-8);
}

.description {
  font-size: 1rem;
  color: var(--neutral-700);
  max-width: 500px;
  margin-bottom: var(--spacing-24);
  line-height: 1.6;
}

/* Main Content Styles */
main {
  flex: 1;
}

.links-container {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-16);
}

.link-button {
  display: block;
  text-decoration: none;
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-button:hover, .link-button:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.link-button:active {
  transform: translateY(0);
}

.button-content {
  display: flex;
  align-items: center;
  padding: var(--spacing-16);
  position: relative;
  overflow: hidden;
}

.location-icon {
  margin-right: var(--spacing-16);
  color: white;
  background-color: var(--primary-600);
  border-radius: var(--radius-full);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-info {
  flex: 1;
}

.location-name {
  display: block;
  font-weight: 500;
  color: var(--neutral-800);
  margin-bottom: var(--spacing-2);
}

.location-details {
  display: block;
  font-size: 0.875rem;
  color: var(--neutral-500);
}

.arrow-icon {
  color: var(--neutral-400);
  margin-left: var(--spacing-8);
}

/* Button variations */
.link-button.capim-dourado .location-icon {
  background-color: var(--primary-600);
}

.link-button.jk .location-icon {
  background-color: var(--accent-600);
}

.link-button.teo .location-icon {
  background-color: var(--gold-600);
}

.link-button.taquaralto .location-icon {
  background-color: var(--primary-800);
}

/* Footer Styles */
footer {
  margin-top: var(--spacing-48);
  text-align: center;
}

.social-container {
  display: flex;
  justify-content: center;
  gap: var(--spacing-16);
  margin-bottom: var(--spacing-24);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-600);
  color: white;
  border-radius: var(--radius-full);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-link:hover, .social-link:focus {
  transform: scale(1.1);
  background-color: var(--primary-700);
}

.legal-links {
  margin-bottom: var(--spacing-16);
}

.legal-link {
  color: var(--neutral-600);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.legal-link:hover, .legal-link:focus {
  color: var(--primary-600);
  text-decoration: underline;
}

.divider {
  margin: 0 var(--spacing-8);
  color: var(--neutral-400);
}

.copyright {
  font-size: 0.75rem;
  color: var(--neutral-500);
}