/* MODAL DE COMPARTILHAR ARTIGO  */

.share-icon > .share-modal {
    display: none;
    position: absolute;
    bottom: 10px;
    right: 65px;
    border-radius: 10px;
    background-color: #015b32;
    align-items: center;
    border: 1px solid #009640;
    gap: 10px;
    padding: 10px;
    box-shadow: 0px 10px 10px #0000001A;
    z-index: 999;
  }
  .share-icon > .share-modal > a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .share-icon > .share-modal > a:nth-child(1) {
    background-color: #28A745;
  }
  .share-icon > .share-modal > a:nth-child(2) {
    background-color: #4165AF;
  }
  .share-icon > .share-modal > a:nth-child(3) {
    background-color: #000000;
  }
  .share-icon > .share-modal > a:nth-child(4) {
    background-color: #3321A8;
  }
  .share-icon > .share-modal.active {
    display: flex;
  }
  .modal-promocao-container {
    backdrop-filter: blur(3px);
    background-color: #00000060;
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    z-index: 999999;
}
.modal-promocao-container.active {
    display: flex;
}
.modal-promocao-container > div {
    box-shadow: 0px 30px 60px #00000066;
    border-radius: 30px;
    max-width: 730px;
    width: 100%;
    background-color: #012A17;
    display: flex;
    flex-direction: column;
    gap: 38px;
    padding: 30px;
    position: relative;
}
.modal-promocao-container > div > h2 {
    font-family: 'RedHatDisplay-Regular', sans-serif;
    font-size: 40px;
    line-height: 42px;
    color: #fff;
}
.modal-promocao-container > div > form {
    display: flex;
    flex-direction: column;
    gap: 26px;
    width: 100%;
}
.modal-promocao-container > div > form > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.modal-promocao-container > div > form > div > label {
    font-family: 'RedHatDisplay-Bold', sans-serif;
    font-size: 18px;
    line-height: 22px;
    color: #fff;
}
.modal-promocao-container > div > form > div > input {
    background-color: #00140B;
    border-radius: 26px;
    padding: 14px 18px;
    font-family: 'RedHatDisplay-Regular', sans-serif;
    font-size: 18px;
    line-height: 22px;
    color: #fff;
    opacity: 0.8;
}
.modal-promocao-container > div > form > div > input::placeholder {
    font-family: 'RedHatDisplay-Regular', sans-serif;
    font-size: 18px;
    line-height: 22px;
    color: #fff;
    opacity: 0.8;
}
.modal-promocao-container > div > form > button {
    border-radius: 43px;
    background-color: #009640;
    padding: 15px 0;
    font-family: 'RedHatDisplay-Bold', sans-serif;
    font-size: 16px;
    line-height: 18px;
    color: #012A17;
    cursor: pointer;
}
.modal-promocao-container > div > .close-button {
    position: absolute;
    right: 30px;
    top: 30px;
    width: 54px;
    height: 54px;
    background-color: #016537;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
}
.modal-promocao-container > div > form > .status-form {
    display: none;
    font-family: 'RedHatDisplay-Bold', sans-serif;
    font-size: 20px;
    line-height: 22px;
    color: #fff;
    text-align: center;
}
.modal-promocao-container > div > form > .status-form.active {
    display: block;
}
.modal-promocao-container > div > form > .status-form.error {
    color: #cd0000;
}
@media (max-width: 768px) {
  .share-icon > .share-modal {
    right: 50px;
  }
  .modal-promocao-container > div {
    padding: 20px;
  }
  .modal-promocao-container > div > h2 {
    font-size: 22px;
    line-height: 26px;
  }
  .modal-promocao-container > div > .close-button {
    right: 20px;
    top: 20px;
    width: 40px;
    height: 40px;
    font-size: 40px;
  }
}