@charset "UTF-8";
h4 {
  font-weight: 800;
  font-size: 30px;
  line-height: 64px;
}

.titulo-etapa {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

/* MULTI-STEP */
fieldset:not(:first-of-type) {
  display: none;
}

#etapa {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  border: 0;
  padding-left: calc(100px - 15%);
  position: relative;
}

#etapa::before {
  position: absolute;
  content: " ";
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  top: calc(50% - 1px);
}

@media (max-width: 768px) {
  #etapa {
    justify-content: space-around;
  }
}
#etapa .nav-item {
  width: 100px;
}

#etapa .nav-item .nav-link,
#etapa .nav-item .nav-link.active,
#etapa .nav-item:first-child {
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  position: relative;
  background-color: transparent;
}

#etapa .nav-item .nav-link img {
  width: 50px;
  height: 50px;
  background: var(--lilas-claro);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px;
  z-index: 99;
  transition: 0.3s ease;
}

#etapa .nav-item .nav-link.active img,
#etapa .nav-item:first-child .nav-link img {
  background-color: var(--primary);
}

/* /MULTI-STEP */
/* Formulario */
.form-control {
  border-radius: 50px !important;
  border-color: #CABBE3;
  padding: 0.75rem 1.5rem;
}

.form-label {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
}

a.docfile {
  display: block;
  color: #3C0396;
  font-size: 15px;
  font-weight: 800;
  line-height: 25px;
}

input[type=file] {
  display: none;
}

label.file {
  padding: 20px 10px;
  width: 200px;
  background-color: #333;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  display: block;
  margin-top: 10px;
  cursor: pointer;
}

#fileList {
  display: flex;
  gap: 10px;
}

#fileList div,
#fileList a {
  width: 250px;
  overflow: hidden;
  height: 30px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  white-space: nowrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 10px;
  border-radius: 50px;
  text-decoration: none;
}

#fileList div span,
#fileList a span {
  width: calc(100% - 35px);
  overflow: hidden;
}

#fileList div i,
#fileList a i {
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.4);
}

.btn-proxima-etapa {
  width: 100%;
  height: 42px;
  color: #FFF;
  font-weight: 600;
  font-size: 18px;
  background: #C4C4C4;
  box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.25);
  border-radius: 32px;
  border: none;
  position: relative; /* Para posicionamento do pseudo-elemento */
  overflow: hidden; /* Para esconder a parte da animação que sai do botão */
}

.btn-proxima-etapa::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #3C0396;
  border-radius: 32px;
  transition: left 0.8s; /* Adiciona uma transição apenas para a propriedade 'left' */
  z-index: -1; /* Coloca o pseudo-elemento atrás do conteúdo do botão */
}

.btn-proxima-etapa:hover::before {
  left: 0; /* Move o fundo da esquerda para a direita */
}

.btn-proxima-etapa:hover {
  background: transparent; /* Define o botão como transparente quando o mouse passa por cima */
  transition: 0.8s;
}

.btn-voltar-etapa {
  width: 100%;
  height: 24px;
  text-align: start;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #3C0396;
  background-color: transparent;
  border: none;
}
