@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #e8f5e9;
  color: #2e7d32;
  line-height: 1.6;
}

header {
  background-color: #66bb6a;
  color: white;
  padding: 20px;
  text-align: center;
}

main {
  padding: 20px;
}

section {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #ffffff;
  border-left: 5px solid #43a047;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2 {
  color: #1b5e20;
  margin-bottom: 10px;
}

ul, ol {
  padding-left: 20px;
}

footer {
  text-align: center;
  padding: 15px;
  background-color: #388e3c;
  color: white;
  position: relative;
  bottom: 0;
  width: 100%;
}
.destaque {
  background-color: #c8e6c9;
  border: 2px dashed #2e7d32;
  text-align: center;
  font-weight: bold;
  font-size: 1.3em;
  color: #1b5e20;
  padding: 30px;
}

.destaque h2 {
  font-size: 1.8em;
  color: #1b5e20;
  margin-bottom: 15px;
}
