#box-help {
    /* Centralização com Flexbox */
    display: none;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center;     /* Centraliza verticalmente */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1000;
}

#box-help > div {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: rgb(255, 247, 174);
    max-width: 500px;
    width: fit-content;
    min-height: 100px;
    border-radius: 15px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

#box-help > div > p:nth-child(1) {
    font-size: 12px;
    color: #000;
    text-align: right;
    cursor: pointer;
}

#box-help > div > p:nth-child(2) {
    font-size: 14px;
    color: #000;
    text-align: left;
    font-weight: bold;
    margin: 5px 0 15px 0;
}

#box-help > div > p:nth-child(3) {
    font-size: 14px;
    color: #000;
    text-align: left;
    font-weight: normal;
    margin: 0;
}