.setor6 {
  background: #fff;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.wrapper {
  position: relative;
  width: 100%;
  max-width: none; /* removido limite de 1200px */
  height: 300px;
  display: flex;
  overflow: hidden;
  transition: all 200ms ease-in-out;
}

.image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0; /* removido arredondamento */
  cursor: pointer;
  transition: all 200ms ease-in-out;
}

.wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 200ms ease-in-out;
}

.header-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  flex-direction: column;
}

h1 {
  font-family: 'Roboto', sans-serif;
  font-weight: 1000;
  color: #fff;
  font-size: 40px;
  margin: 0;
  text-transform: uppercase;
  position: absolute;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Inicialmente só o primeiro visível */
.titulo-principal {
  opacity: 1;
  transform: scale(1);
}

.titulo-hover {
  opacity: 0;
  transform: scale(0.8);
}

/* Ao passar o mouse na imagem, alterna */
.wrapper:hover .titulo-principal {
  opacity: 0;
  transform: scale(0.8);
}

.wrapper:hover .titulo-hover {
  opacity: 1;
  transform: scale(1);
}

.wrapper:hover img {
  transform: scale(1.3);
}


.preco-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: 'Roboto', sans-serif;
  color: white;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.preco-banner .linha-horizontal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 30px;
  gap: 20px;
  text-transform: uppercase;
}

.preco-banner .linha-esquerda,
.preco-banner .linha-direita {
  font-size: 30px;
  font-weight: 700;
  white-space: nowrap;
}

.preco-banner .preco-central {
  font-size: 150px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -10px;
}

.preco-banner .preco-rodape {
  position: absolute;
  bottom: 20px;
  right: 30px;
  font-size: 10px;
  font-weight: 300;
  opacity: 0.85;
  text-transform: uppercase;
}
