

.whats-form:not(.show) {
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

.whats-form {
    position: fixed;
    z-index: 999;
    bottom: 0;
    left: 0;
    background-color: #F6F5F3;
    border-radius: 16px;
    overflow: hidden;
    transition: opacity 0.3s;
}

.whats-form-header {
    background-color: #65D072;
    display: flex;
    justify-content: space-between;
    padding: 14px 22px;
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    align-items: center;
}

.whats-form-header p {
    margin-bottom: 0;
}

.whats-form-header span {
    font-size: 14px;
    color: #53885A;
}

.whats-form-user {
    display: flex;
    gap: 12px;
}

.whats-form-close {
    background-color: transparent;
    border: 0;
    outline: none;
    color: #fff;
}

.whats-form-body {
    padding: 24px;
}

.whats-form-body .btn {
    width: 100%;
    color: #fff;
    background-color: #1BAF52;
}

.whats-form-title {
    color: #0B0A09;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: normal;
}

@media (min-width: 992px) {
  .whats-form {
      bottom: 102px;
      right: 30px;
      left: auto;
  }
}