* {
  font-family: "Poppins", sans-serif;
}
body {
  height: 100%;
}
main{
  height: 140vh;
}
.wizard-step {
  display: none;
}
.wizard-step.active {
  display: block;
}
.brand-image {
  max-width: 150px;
  margin: -40px auto 20px;
  display: block;
}
/* Linha do tempo */
.wizard-timeline {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.wizard-timeline li {
  flex: 1;
  text-align: center;
  position: relative;
  font-weight: bold;
  color: #6c757d;
}
.wizard-timeline li::before {
  content: attr(data-step);
  display: block;
  margin: 0 auto 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #6c757d;
  line-height: 30px;
  color: white;
}
.wizard-timeline li.active::before,
.wizard-timeline li.completed::before {
  background: #28a745;
}
.wizard-timeline li::after {
  content: "";
  position: absolute;
  top: 15px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: #6c757d;
  z-index: -1;
}
.wizard-timeline li:last-child::after {
  display: none;
}
.wizard-timeline li.completed::after {
  background: #28a745;
}
.form-container {
  background: linear-gradient(42deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.075) 50%, rgba(209,209,209,0.15) 100%);
  padding: 20px 50px 40px;
  border-radius: 10px;
}
/* Grupo de vendedor */
.vendedorGroup {
  border: 1px solid #444;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 15px;
  position: relative;
  display: none;
}
/* A opacidade será aplicada apenas na área de conteúdo dos campos */
.vendedorContent {
  transition: opacity 0.3s;
}
/* Botões de ação fora do contêiner de conteúdo permanecem com opacidade normal */
.vendedorGroup .actionButtons {
  text-align: right;
  margin-top: 10px;
}
.vendedorGroup .actionButtons button {
  margin-left: 5px;
}
.fr{
  float: right;
}
.body-form{
  height: 50vh;
}
footer{
    position: fixed;
    width: 100%;
    bottom: 0;
}
.form-container{
  padding-bottom: 70px;
}