/* ============================================
   MOBILE FORM BUTTON - ThinkAgile HX
   ============================================ */

#thinkagile-hx .mobile-form-button {
  display: none;
}

@media screen and (max-width: 1100px) {
  #thinkagile-hx .mobile-form-button {
    display: block;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 1.5rem);
    max-width: 42rem;
    background-color: var(--color-cta-red);
    color: var(--color-white);
    font-family: var(--font-gotham-bold);
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    padding: 18px 20px;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 9998;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 6px 6px 0 0;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }

  #thinkagile-hx .mobile-form-button:hover,
  #thinkagile-hx .mobile-form-button:active {
    background-color: #c00d04;
    box-shadow: 0 -6px 14px rgba(0, 0, 0, 0.25);
  }

  /* Ajustar padding do container quando o botão está visível */
  #thinkagile-hx {
    padding-bottom: 60px;
  }
}

