body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #fdfbf9;
  color: #111;
}

.hero {
  background-color: #111;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .slogan + p {
  margin-top: 40px;
}


/* Espaçamento equilibrado entre os elementos do hero */
.hero > * + * {
  margin-top: 24px;
}

.hero img {
  max-width: 240px;
}

.slogan {
  font-size: 36px;
  font-weight: 800;
  color: #f7931e;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  margin: 0;
}

.hero p {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin: 0;
}

.cta-btn {
  background-color: #f44316;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin: 0;
}

section {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
}

h2 {
  color: #111;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.column {
  flex: 1;
  min-width: 260px;
}

.step,
.benefit {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.step-icon {
  font-weight: bold;
  color: #f44316;
  margin-right: 10px;
}

.benefit-icon {
  color: green;
  margin-right: 10px;
}

.highlight {
  background-color: #fff7f2;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin-top: 40px;
}

.highlight h3 {
  color: #f44316;
}

footer {
  background-color: #111;
  color: #fff;
  padding: 20px;
  text-align: center;
  font-size: 14px;
}

footer a {
  color: #fff;
  margin: 0 8px;
  text-decoration: none;
}
