.test_btn {
  position: fixed;
  display: flex;
  flex-direction: column;
  bottom: 32px;
  right: 32px;
  width: 110px;
  height: 104px;
  transform: rotate(8deg);
  scale: 1;
  background-image: url('../assets/images/teste.svg');
  filter: drop-shadow(8px 8px 4px rgba(0, 0, 0, 0.25));
  transition: scale 0.08s, transform 0.12s;
  padding: 16px;
  line-height: 19.5px !important;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  gap: 2px;
  color: #FFFFFF;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: background-color 0.2s;
}
.test_btn img{
  filter: invert(1);
}
.test_btn:hover{
  scale: 1.10;
  transform: rotate(5deg);
  transition: scale 0.08s, transform 0.12s, filter 0.08s;
  filter: drop-shadow(12px 12px 6px rgba(0, 0, 0, 0.25));
}
.test_btn:active{
  scale: 0.96;
  filter: drop-shadow(4px 4px 2px rgba(0, 0, 0, 0.25));
}
.title{
  flex-direction: column !important;
}
internal{
  flex-direction: column;
  background-image: url('../assets/images/contato_fundo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
body.darkmode internal{
  background-image: url('../assets/images/contato_fundo_dark.png');
}
options{
  display: flex;
  flex-direction: row;
  justify-content: center;
  grid-column: 1 / span 2;
  gap: 16px;
}
#form_contact{
  position: relative;
}
#form_contact .details{
  position: absolute;
  content: '';
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  bottom: 0px;
}
#form_contact .details.detail1{
  height: 200px;
  width: 135px;
  bottom: 0px;
  left: -86px;
  background-image: url('../assets/images/contato.planta.svg');
}
#form_contact .details.detail2{
  height: 547px;
  width: 200px;
  right: -164px;
  background-image: url('../assets/images/contato.mulher.svg');
}
#box_contato .form-textarea .editor{
  padding-left: 64px !important;
}
#box_contato form{
  width: 100%;
  max-width: 720px;
  margin-top: 44px;
}
#cnpj_row{
  display: none;
}
@media only all and (max-width: 1000px) {
  #form_contact .details{
    display: none;
  }
}
@media only all and (max-width: 820px){
  .test_btn{
    width: 100px;
    height: 95px;
    font-size: 18px;
    background-size: contain;
    right: 15px;
    bottom: 15px;
  }
}
@media only all and (max-width: 600px) {
  options{
    width: 100%;
    flex-direction: column;
  }
  options button{
    width: 100% !important;
  }
}