.cta {
  position: fixed;
  bottom: 0;
  justify-content: center;
  justify-content: center;
  border-top: 1px solid;
  border-color: var(--Grey-Light);
  background-color: RGBA(250,250,250,0.7);
  backdrop-filter: blur(4px);
}
.cta .conteudo {
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  font-weight: 700;
  color: var(--Orange);
  padding: 16px 80px;
}
@media (max-width: 991px) {
  .cta .conteudo {
    gap: 40px;
    padding: 16px 40px;
  }
}
@media (max-width: 479px) {
  .cta .conteudo {
    flex-direction: column;
    text-align: center;
    padding: 16px 24px;
  }
  .cta .conteudo div{
    display: none;
  }
  .cta .conteudo button{
    width: 100%;
  }
}


  form table:nth-of-type(2),
  form table:nth-of-type(3),
  form table:nth-of-type(4),
  form table:nth-of-type(5) {
      flex-grow: 1;
      min-width: 40% !important;
      width: max-content;
  }
  
  @media (max-width: 479px) {
    form table:nth-of-type(2),
  form table:nth-of-type(3),
  form table:nth-of-type(4),
  form table:nth-of-type(5) {
      width: 100%;
    }
  }