:root {
  --verde-escuro: #1a5c2a;
  --verde-medio: #2e8b4a;
  --verde-claro: #5cb85c;
  --verde-suave: #e8f5e9;
  --terra: #7d5a3c;
  --terra-claro: #f5efe6;
  --amarelo: #f9c825;
  --texto: #2c2c2c;
  --branco: #ffffff;
  --cinza-leve: #f4f4f4;
  --sombra: rgba(0, 0, 0, 0.1);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--texto);
  background: var(--branco);
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: var(--verde-escuro);
  margin-bottom: 12px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: var(--verde-claro);
  border-radius: 2px;
  margin: 12px auto 0;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 48px;
  font-size: 1.05rem;
}
