/* SETOR 8 — GALERIA DE MODELOS */
.setor8 {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #fff; /* Cor de fundo, pode trocar */
  padding: 10px 0;
}

.conteudo-setor8 {
  width: 100%;
  max-width: 1200px;
  display: flex;
  gap: 40px;
  align-items: center;
}

.texto-setor8 {
  width: 25%;
}

.texto-setor8 h2 {
  font-size: 45px;
  line-height: 1.2;
  color: #727376;
  font-weight: 100;
}

.texto-setor8 h2 span {
  color: #f58634;
  font-weight: 100;
}

.galeria-setor8 {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
}

.imagens-setor8 {
  display: flex;
  gap: 20px;
}

.imagens-setor8 img {
  height: 230px;
  flex-shrink: 0;
  border-radius: 8px;
  transition: transform 0.3s;
  cursor: pointer;
}

.imagens-setor8 img:hover {
  transform: scale(1.05);
}

/* Scroll personalizado */
.galeria-setor8::-webkit-scrollbar {
  height: 8px;
}

.galeria-setor8::-webkit-scrollbar-thumb {
  background: #f58634;
  border-radius: 4px;
}

.galeria-setor8::-webkit-scrollbar-track {
  background: #ddd;
}

/* Tooltip */
.imagens-setor8 img[title] {
  position: relative;
}

.imagens-setor8 img:hover::after {
  content: attr(title);
  position: absolute;
  background-color: rgba(0,0,0,0.8);
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 14px;
  z-index: 10;
}

/* ENVOLTÓRIO COM BOTÕES */
.galeria-setor8-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* BOTÕES DE SETA REDONDOS, PEQUENOS E DISCRETOS */
.seta {
  background: #f58634;
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.seta:hover {
  background: #d46e1e;
}

.seta-esquerda {
  margin-right: 10px;
}

.seta-direita {
  margin-left: 10px;
}
