.estrutura {
  padding: 60px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.estrutura .titulo {
  font-size: 2em;
  color: #050A30;
  margin-bottom: 10px;
}

.estrutura .descricao {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #050A30;
  line-height: 1.6;
}

.carrosseis {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.carrossel {
  flex: 1 1 400px;
  max-width: 350px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.carousel-images {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-images img {
  width: 100%;
  border-radius: 10px;
}

button.prev,
button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #050A30;
  color: #fff;
  border: none;
  font-size: 12px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

button.prev:hover,
button.next:hover {
  background-color: rgba(0,0,0,0.8);
}

button.prev { left: 10px; }
button.next { right: 10px; }
