.arco-home-notice {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;

    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    background: rgba(0, 0, 0, 0.55);
}

.arco-home-notice-message {
    max-width: 720px;
    width: 100%;

    background: #ffffff;
    border-radius: 12px;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);

    padding: 20px 20px 16px;

    text-align: center;
}

.arco-home-notice-message * {
    margin-left: auto;
    margin-right: auto;
}

.arco-home-notice-accept {
    margin-top: 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 18px;
    border-radius: 0px;

    border: 0;
    background: #00c4b4;
    color: #ffffff;

    font-weight: 600;
    font-size: 16px;

    cursor: pointer;

    transition: background-color 160ms ease, transform 160ms ease;
}

.arco-home-notice-accept:hover {
    background: #00c4b4;
    transform: translateY(-1px);
}

.arco-home-notice-accept:active {
    transform: translateY(0);
}

/* Se o block da mensagem tiver links/botões, garante contraste */
.arco-home-notice a {
    color: #0b5cab;
}

