/* Estilos base para páginas QR No Existe y QR Expirado */
.duc-reset-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    min-height: 80vh;
    padding: 20px;
    background: #fafafa;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.duc-reset-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 40px 50px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
    text-align: center;
}

.duc-reset-box h1 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #222;
    font-weight: 700;
}

.duc-reset-box > div.message {
    margin-bottom: 30px;
    font-size: 20px;
    color: #444;
    line-height: 1.6;
}

.duc-reset-box .btn-duc {
    display: inline-block;
    padding: 15px 32px;
    background-color: #FF5722;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.35);
    transition: background-color 0.25s ease;
}

.duc-reset-box .btn-duc:hover {
    background-color: #e64a19;
    box-shadow: 0 6px 15px rgba(230, 74, 25, 0.5);
}

.duc-reset-box .no-btn-msg {
    font-size: 16px;
    color: #888;
    font-style: italic;
    margin-top: 25px;
}

.duc-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) {
    .duc-reset-box {
        padding: 30px 20px;
    }

    .duc-reset-box h1 {
        font-size: 26px;
    }

    .duc-reset-box > div.message {
        font-size: 16px;
    }

    .duc-reset-box .no-btn-msg {
        font-size: 14px;
    }

    .duc-reset-box .btn-duc {
        font-size: 16px;
        padding: 13px 25px;
    }
}