
:root {
  /* Cores */
  --primary-color: #3C6E71; /* Azul esverdeado profundo */
  --secondary-color: #D98324; /* Laranja terroso */
  --accent-color: #A4C480; /* Verde claro acentuado */
  --text-color: #333333; /* Cinza escuro para texto principal */
  --light-text-color: #666666; /* Cinza médio para texto secundário */
  --background-color: #F8F8F8; /* Off-white para fundos */
  --light-background-color: #FFFFFF; /* Branco puro para elementos em destaque */
  --border-color: #E0E0E0; /* Cinza claro para bordas */

  /* Tipografia */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  /* Espaçamento */
  --spacing-unit: 1rem; /* 16px */
  --spacing-small: calc(var(--spacing-unit) / 2); /* 8px */
  --spacing-medium: var(--spacing-unit); /* 16px */
  --spacing-large: calc(var(--spacing-unit) * 2); /* 32px */
  --spacing-xl: calc(var(--spacing-unit) * 4); /* 64px */

  /* Outros */
  --border-radius: 4px;
  --transition-speed: 0.3s;
}

body {
  font-family: var(--font-body);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.button {
  display: inline-block;
  padding: 0.8em 1.5em;
  background-color: var(--secondary-color);
  color: var(--light-background-color);
  border-radius: var(--border-radius);
  transition: background-color var(--transition-speed) ease;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.button:hover {
  background-color: #C27620; /* Um pouco mais escuro */
  text-decoration: none;
}
