:root { 
  /* Espaçamentos */
  --space-xs: 0.25rem; 
  --space-sm: 0.5rem; 
  --space-md: 1rem; 
  --space-lg: 1.5rem; 
  --space-xl: 2rem;
  /* Cores */
  --bordaCinza: #dfdfdf;
  --verde: rgb(15 118 110);
  --backgroundCinza: rgb(250 250 250);
  --textoCinza: rgb(153 151 146);
  --placeholderCinza: rgb(242 242 242)
} 
 
.section { 
  padding: var(--space-lg); 
  margin-bottom: var(--space-xl); 
} 

html{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}