/* Pop-up do aviso (página inicial) */
.lv-aviso-greve {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    background: rgba(17, 17, 17, 0.55);
}
.lv-aviso-greve[hidden] {
    display: none;
}
html.lv-aviso-greve-aberto {
    overflow: hidden;
}
.lv-aviso-greve__caixa {
    box-sizing: border-box;
    width: 100%;
    max-width: 520px;
    max-height: calc(100vh - 32px);
    overflow: auto;
    background: #fff;
    color: #222;
    border-radius: 10px;
    border-top: 6px solid #d97706;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    padding: 24px 28px 22px;
    font-family: inherit;
    text-align: left;
}
.lv-aviso-greve__titulo {
    margin: 0 0 12px;
    font-size: 1.25rem;
    line-height: 1.3;
    color: #222;
}
.lv-aviso-greve__texto {
    font-size: 1rem;
    line-height: 1.55;
}
.lv-aviso-greve__texto a {
    color: #0a58ca;
    text-decoration: underline;
}
.lv-aviso-greve__ok {
    display: inline-block;
    margin-top: 18px;
    min-width: 96px;
    padding: 10px 22px;
    border: 0;
    border-radius: 6px;
    background: #1d4ed8;
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}
.lv-aviso-greve__ok:hover {
    background: #1e40af;
}
.lv-aviso-greve__ok:focus-visible {
    outline: 3px solid #f59e0b;
    outline-offset: 2px;
}

/* Faixa de aviso (checkout) */
.lv-aviso-greve-checkout,
.woocommerce .lv-aviso-greve-checkout.woocommerce-info {
    margin: 0 0 20px;
    padding: 14px 18px 14px 16px;
    border: 1px solid #f3c78b;
    border-left: 5px solid #d97706;
    border-radius: 6px;
    background: #fff4e5;
    color: #5a3a00;
    line-height: 1.5;
}
.woocommerce .lv-aviso-greve-checkout.woocommerce-info::before {
    display: none;
}
