/* FORM */

.box_form_all {
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.form_contato {
    width: 100%;
    height: max-content;
    padding: 20rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--second-color);
    position: relative;
  }
    
  .text_bg_contato {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .text_bg_contato p:nth-child(1) {
    font-size: 2.5rem;
    color: var(--apoio-color);
  }
  
  .text_bg_contato h2 {
    color: var(--text-color);
    text-align: center;
    font-weight: 700;
    font-size: 6rem;
    width: 100%;
  }
  
  .text_bg_contato p {
    color: var(--text-color);
    text-align: center;
    font-weight: 500;
    max-width: 60%;
    line-height: 2rem;
  }
    
  .option_table {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
    height: max-content;
    padding: 2rem 0rem 8rem 0rem;
    background-color: var(--primary-color);
  }
   
  .container_form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: var(--bg-white);
    border-radius: 2rem;
    padding: 3rem;
    margin-top: -11rem;
    width: 100%;
    max-width: 55rem;
    z-index: 20;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .questions_form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    width: 95%;
    padding: 1rem;
  }
  
  .questions_form button {
    width: 100%;
    background-color: var(--apoio-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 3rem;
    transition: 0.3s;
    border: none;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: .7s ease-out;
  }
  
  .questions_form button:hover {
    background-color: var(--second-color);
    color: var(--text-color);
  }

  .questions_form button::after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--second-color);
    transition: .3s ease-in-out;
  }

  .questions_form button:hover::after {
    width: 100%;
    color: var(--text-color);
    opacity: 0;
  }
  
  .text_asterisco {
    font-size: 1.2rem;
  }
  
  .asterisco {
    color: red;
  }
  
  .questions_form select,
  .pers,
  .questions_form textarea {
    border: solid 0.01rem;
    padding: 1rem 2rem;
    border-radius: 3rem;
    width: 100%;
    border-color: rgba(33, 33, 33, 0.3);
  }

  .questions_form select.noSelected {
    color: rgba(0,0,0,.6);
  }

  .questions_form textarea {
    border-radius: 1rem !important;
    height: 15rem;
    resize: none;
  }
  
  .required_email.invalid_email::placeholder {
    color: red;
  }
  
  .required_phone.invalid_phone::placeholder {
    color: red;
  }
  
  .required.vazio::placeholder {
    color: red;
  }
  
  #indicator {
    color: #009118;
    font-size: 1.4rem;
  }
  
  #sendingCheck {
    display: none;
    color: red;
    font-size: 1.2rem;
    text-align: center;
  }
  
  .checkbox_container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    gap: 1rem;
    width: 90%;
  }
  
  .checkbox_container label {
    font-size: 1.2rem;
    color: var(--primary-color);
  }

  .checkbox_container label a {
    color: var(--primary-color);
    font-weight: 700;
  }