* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2d7a3e;
  --secondary-color: #4caf50;
  --accent-color: #ff9800;
  --text-dark: #333;
  --text-light: #666;
  --bg-light: #f5f5f5;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-hover: rgba(0, 0, 0, 0.15);
}

/* Modo Escuro */
body.dark-mode {
  --primary-color: #4caf50;
  --secondary-color: #66bb6a;
  --accent-color: #ffa726;
  --text-dark: #e0e0e0;
  --text-light: #b0b0b0;
  --bg-light: #1a1a1a;
  --white: #2d2d2d;
  --shadow: rgba(255, 255, 255, 0.05);
  --shadow-hover: rgba(255, 255, 255, 0.1);
}

body.dark-mode {
  background-color: #121212;
  color: #e0e0e0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}