.contact-us {
    position: fixed;
    bottom: 20px;
    right: 20px;
    border-radius: 31px 26px 0px 31px;
    width: 250px;
    height: 59px;
    z-index: 4;
}

.contact-us-button {
    padding: 6px 10px;
    background: var(--background-color-secondary-light);
    border-radius: 31px 26px 0px 31px;
    position: fixed;
    z-index: 4;
    bottom: 20px;
    right: 20px;
    border: 4px solid #fff;
    width: 250px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-us::after {
    content: "";
    position: absolute;
    border-radius: 31px 26px 0px 31px;
    z-index: 1;
    background: linear-gradient(90deg,rgba(219, 232, 254, 1) 0%, rgba(37, 112, 235, 1) 100%);
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
}

.contact-us-button .button-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 0;
}

.contact-us-button .button-link .img-container {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.img-container::before,
.img-container::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}

.img-container::before {
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 4px solid var(--background-color-secondary-light); /* azul claro */
  z-index: 2;
}

.img-container::after {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: conic-gradient(
        #93BBFD 0deg 140deg,
        transparent 140deg 150deg,
        #93BBFD 150deg 320deg,
        transparent 320deg 330deg,
        #93BBFD 330deg 360deg
    );
    z-index: 1;
  }

.contact-us-button .button-link img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    z-index: 2;
}

.contact-us-button .button-link p {
    color: #214072;
    font-family: "inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    margin-right: 5px;
}

.contact-us-button .button-link p span {
    font-family: "inter-bold";
    font-weight: 600;
}

.contact-us .button-link svg {
    width: 17px;
    height: 17px;
    color: #214072;
}

@media screen and (max-width: 992px) {
    .contact-us {
        display: none;
    }
}
