/* INÍICO BOTÕES DO MENU */
.Btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: .3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
}

/* plus sign */
.sign {
  width: 100%;
  transition-duration: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign svg {
  width: 17px;
}

.sign svg path {
  fill: white;
}

/* text */
.text {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1.2em;
  font-weight: 600;
  transition-duration: .3s;
}

/* hover effect on button width */
.Btn:hover {
  width: 125px;
  border-radius: 40px;
  transition-duration: .3s;
}

.Btn:hover .sign {
  width: 30%;
  transition-duration: .3s;
  padding-left: 20px;
}

/* hover effect button's text */
.Btn:hover .text {
  opacity: 1;
  width: 70%;
  transition-duration: .3s;
  padding-right: 10px;
}

/* button click effect*/
.Btn:active {
  transform: translate(2px, 2px);
}

/* FIM BOTÕES DO MENU */

/* BOTOES DE ACAO */
.btn-acao {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  padding: 0px 20px;
  background-color: #f3f7fe;
  color: #000;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  height: 45px;
  transition: var(--tran-03);
  font-weight: 700;
  font-size: 1em;
  width: auto;
  z-index: 1;
}

.btn-acao:hover {
  background-color: #3b82f6;
  box-shadow: 0 0 0 5px #3b83f65f;
  color: #fff;
}

/* FIM DOS BOTOES DE ACAO */
.btn-ouro {
  font-size: 1.1em;
  cursor: pointer;
  bottom: 20px;
  padding: 5px 60px;
  border-radius: 40px;
  background: linear-gradient(to right, #F1D89C, #C2872F);
  background-size: 200%;
  background-position: left;
  transition: background-position 0.5s ease, transform 0.3s ease;
}

.btn-ouro:hover {
  background-position: right;
  transform: scale(1.1); /* Aumenta o botão em 5% */
}

.btn-limpar {
  background-color: #09F9FF;
  color: #FFF;
}

.btn-limpar:hover {
  background-color: #67fcff;
  box-shadow: 0 0 0 6px #09F9FF5f;
  color: #000;
}

.btn-enviar {
  background-color: #3b82f6;
  color: #FFF;
}

.btn-enviar:hover {
  background-color: #3ba5f6;
  box-shadow: 0 0 0 6px #3b82f65f;
  color: #000;
}

.btn-novo {
  background-color: #EF8203;
  color: #FFF;
}

.btn-novo:hover {
  background-color: #ff9e2f;
  box-shadow: 0 0 0 6px #ff9e2f5f;
  color: #000;
}

.btn-conectar {
  background-color: #01B459;
  color: #FFF;
}

.btn-conectar:hover {
  background-color: #01B459;
  box-shadow: 0 0 0 6px #01B4595f;
  color: #000;
}

.btn-excluir {
  background-color: #FF0000;
  color: #FFF;
}

.btn-excluir:hover {
  background-color: #ff5a5a;
  box-shadow: 0 0 0 6px #FF00005f;
  color: #000;
}

.btn-alterar-senha {
  background-color: #44ff73;
  color: #FFF;
}

.btn-alterar-senha:hover {
  background-color: #71fd94;
  box-shadow: 0 0 0 8px #44ff735f;
  color: #000;
}

.botoes-sweet-alert {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto;
  margin-bottom: -5px;
}

.btn-sweet-alert {
  color: #FFF;
  font-size: 0.92em;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}

.btn-confirmar-sweet {
  background-color: #28a745;
}

.btn-confirmar-sweet:hover {
  background-color: #24963E;
}

.btn-cancelar-sweet {
  background-color: #007bff;
}

.btn-cancelar-sweet:hover {
  background-color: #006EE5;
}

.btn-fechar-sweet {
  background-color: #6c757d;
}

.btn-fechar-sweet:hover {
  background-color: #616970;
}

/* ICONES COM CLOUD ICON */

.icon-x {
  color: #FF4141;
}

.icon-x:hover {
  color: #e93838;
}

.icon-v {
  color: #01B459;
}

.icon-v:hover {
  color: #02a350;
}