:root {
  --primary-color: #1354ed;
  --secondary-color: #0d3eb2;
  --text-color: #333;
  --light-text: #666;
  --white: #fff;
  --light-bg: #f5f7fa;
  --dark-bg: #1a1a1a;
  --border-radius: 8px;
  --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.2);
  --transition-normal: all 0.3s ease;
  --font-main: 'Poppins', sans-serif;
}

/* Utilitários de espaçamento */
.mb-sm { margin-bottom: 10px; }
.mb-md { margin-bottom: 20px; }
.mb-lg { margin-bottom: 40px; }
.mb-xl { margin-bottom: 60px; }

.mt-sm { margin-top: 10px; }
.mt-md { margin-top: 20px; }
.mt-lg { margin-top: 40px; }
.mt-xl { margin-top: 60px; }

/* Utilitários de texto */
.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.text-light { color: var(--light-text); }
.text-white { color: var(--white); }

/* Container padrão */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
} 