/* Estilos base para páginas QR No Existe y QR Expirado */
.pc-reset-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    min-height: 80vh;
    padding: 20px;
    background: #f2f5f9;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pc-reset-box {
    background: #ffffff;
    border: 1px solid #d1d9e6;
    border-radius: 12px;
    padding: 40px 50px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.pc-reset-box h1 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1f3a60;
    font-weight: 700;
}

.pc-reset-box > div.message {
    margin-bottom: 30px;
    font-size: 20px;
    color: #3a4b65;
    line-height: 1.6;
}

.pc-reset-box .btn-pc {
    display: inline-block;
    padding: 15px 32px;
    background-color: #2b67b1;
    color: #ffffff;
    font-weight: 700;
    font-size: 17px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(43, 103, 177, 0.3);
    transition: background-color 0.25s ease;
}

.pc-reset-box .btn-pc:hover {
    background-color: #1d4f8f;
    box-shadow: 0 6px 15px rgba(29, 79, 143, 0.5);
}

.pc-reset-box .no-btn-msg {
    font-size: 16px;
    color: #77829b;
    font-style: italic;
    margin-top: 25px;
}

.pc-reset-box .img-qr {
    max-width: 800px;
    margin: 0 auto 25px auto;
}

.nv-page-title-wrap,
.nv-post-cover .nv-title-meta-wrap,
.nv-page-title-wrap .nv-page-title {
    display: none;
}

/* Responsive para móviles */
@media screen and (max-width: 480px) {
    .pc-reset-box {
        padding: 30px 20px;
    }

    .pc-reset-box h1 {
        font-size: 26px;
    }

    .pc-reset-box > div.message {
        font-size: 16px;
    }

    .pc-reset-box .no-btn-msg {
        font-size: 14px;
    }

    .pc-reset-box .btn-pc {
        font-size: 16px;
        padding: 13px 25px;
    }
}