:root {
  /* Marca / Cores */
  --color-primary: #773758;
  --color-primary-dark: #5A2A44;
  --color-secondary: #111827; /* Dark almost black */
  --color-accent: #F59E0B; /* Gold for urgency */
  
  --color-text-main: #1F2937;
  --color-text-body: #4B5563;
  --color-background: #FFFFFF;
  --color-background-alt: #F9FAFB;
  --color-border: #E5E7EB;

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Outfit', sans-serif;

  /* Spacing */
  --container-width: 1200px;
  --spacing-section: 6rem;
}

/* Reset Moderno */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-background);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-secondary);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* Utilities */
.text-primary { color: var(--color-primary); }
.text-uppercase { text-transform: uppercase; }
.font-bold { font-weight: 700; }
