body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fefcf9;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #4e342e;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

.subtitle {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  font-style: italic;
}

main {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

h2 {
  color: #6d4c41;
}

a {
  color: #6d4c41;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.story, .contact {
  margin-top: 2rem;
}

/* Carrossel */
.carousel {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel img.active {
  opacity: 1;
}

footer {
  background-color: #eee;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}
