.containerFlex{
  margin-bottom: 23rem;
}

option{
  font-weight: 300;
}

@media (max-width: 460px){
  .containerFlex{
    margin-bottom: 16rem;
  }
}

.colorText{
    color: #222;
}

.containerInputMargin {
    margin-bottom: 20px !important;
}

.containerInputMargin2 {
  margin-bottom: 0px !important;
}

.containerFlex {
  display: flex;
  justify-content: center;
  width: 100%;
}

.containerEncomendar {
  width: 100%;
  background: #fff;
  max-width: 44.563rem;
  padding: 3.125rem;
  margin: 4.375rem 0;
  border-radius: 4px;
  box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, .04);
}

.titleEncomendar {
  margin-bottom: 1.6rem;
  font-size: 1.75rem;
}

.subTitle {
  font-size: 1.313rem;
  margin-bottom: 1rem;
  font-weight: normal;
}

.containerInputs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1.25rem;
}

.inputBox {
  width: 100%;
  max-width: 18.75rem;
}

.input {
  width: 100%;
  outline: none;
  border: 1px solid #dce0e0;
  border-radius: 4px;
  padding: 0.375rem 0.75rem;
  height: 2.625rem;
  font-size: 0.938rem;
  font-weight: 300;
}

.input1:focus {
    border-color: #FFE501;
  }

  .input2:focus {
      border-color: #1467AB;
    }

    .input3:focus {
      border-color: #003366;
    }

    .input4:focus {
      border-color: #3b3b3b;
    }

    .input5:focus {
      border-color: #25292E;
    }

    .input6:focus {
      border-color: #FF8000;
    }

    .input7:focus {
      border-color: #482882;
    }

    .input8:focus {
      border-color: #000000;
    }

    .input9:focus {
      border-color: #F80032;
    }

    .input10:focus {
      border-color: #D5006C;
    }

    .input11:focus {
      border-color: #a3d712;
    }

    .input12:focus {
      border-color: #126E51;
    }

    .input13:focus {
      border-color: #EC0918;
    }

    .input14:focus {
      border-color: #8E2157;
    }


.inputMargin {
  margin-right: 1.25rem;
}

.label {
  display: block;
  font-size: 0.938rem;
  margin-bottom: 0.375rem;
}

.label::after {
  content: "*";
  color: #ff0000;
  padding-left: 0.2em;
}

.textareaBox {
  max-width: 100%;
}

.textarea {
  resize: none;
  padding: 0.75rem;
  height: 9.375rem;
}

.btnEnviar {
  height: 40px;
  width: 100%;
  border: none;
  color: #fff;
  padding: 0 1.875rem;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 5px;
  transition: transform 0.5s ease;
  transform-style: preserve-3d;
  position: relative;
}

.btnEnviar:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

@media (max-width: 580px){
    .containerEncomendar {
        padding: 2.125rem;
    }
    .containerInputs {
        flex-direction: column;
    }
    .inputBox {
        max-width: 100%;
    }
    .inputMargin{
        margin-right: 0px;
    }
    #whatsapp .whatsapp {
        bottom: 2.188rem !important;
        right: 2.5rem !important;
        width: 3.125rem !important;
        height: 3.125rem !important;
        line-height: 3.125rem !important;
    }
}

@media (max-width: 470px){
    .titleEncomendar {
        font-size: 1.5rem;
    }
    .subTitle {
        font-size: 1.2rem;
    }
    .containerEncomendar {
        padding: 2rem;
    }
}

#whatsapp .whatsapp {
    position: fixed;
    transition: all 0.5s ease;
    background-color: #25d366;
    display: block;
    text-align: center;
    box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    border-right: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.875rem;
    bottom: 2.813rem;
    right: 3.75rem;
    border: 0;
    z-index: 99999;
    width: 3.75rem;
    height: 3.75rem;
    line-height: 3.75rem;
}

#whatsapp .whatsapp:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 3.75rem;
    height: 3.75rem;
    background-color: #25d366;
    border-radius: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}

#whatsapp .whatsapp:focus {
    border: none;
    outline: none;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.inputErro {
  border: 2px solid red;
}

/* --------------------------------------------------------------------------------- TAREFA 12.328 */

.sendMsg-container {
  perspective: 1000px;
  display: inline-block;
}

.sendMsg-3d {
  position: relative;
  width: 100%;
  height: 40px;
  transition: transform 0.5s ease;
  transform-style: preserve-3d;
}

.sendMsg-front, .sendMsg-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding: 0 1.875rem;
  box-sizing: border-box;
  border: none;
}

.sendMsg-back {
  background-color: #4CAF50;
  color: white;
  transform: rotateX(-180deg);
}

.sendMsg-flipped {
  transform: rotateX(-180deg);
}

.sendMsg-scaled {
  transform: scale(1.05) rotateX(0deg);
}

.sendMsg-flipped.sendMsg-scaled {
  transform: scale(1.05) rotateX(-180deg);
}

.bottom {
  margin-bottom: 20px;
}

#encomendaForm {
  display: flex;
  flex-direction: column;
}

#formularioCadastroImovel {
  display: flex;
  flex-direction: column;
}