:root {
  --verde-principal: #005f3c;
  --cinza-claro: #f9f9f9;
  --texto: #222;
  --max-width: 900px;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: var(--cinza-claro);
  color: var(--texto);
}
a {
    color: var(--verde-principal);
    text-decoration: none;
    font-weight: bold;
}

header {
  background-color: var(--verde-principal);
  color: white;
  padding: 1rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
}

main {
  max-width: var(--max-width);
  margin: 2rem auto;
  padding: 0 1rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.breadcrumb {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 1rem;
}

h1 {
  color: var(--verde-principal);
}

.carousel {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.slides {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

.slides img {
  width: 100%;
  flex-shrink: 0;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  user-select: none;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

@media screen and (max-width: 600px) {
  header {
    font-size: 1.4rem;
  }

  h1 {
    font-size: 1.4rem;
  }
}