/* ============================================
   RIGHT-CLICK MODAL — Anti-descarga de imágenes
   ============================================ */
.rc-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}
.rc-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.rc-modal {
    background: #FFF8E7;
    border-radius: 16px;
    padding: 40px 36px 32px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.rc-modal-overlay.active .rc-modal {
    transform: translateY(0) scale(1);
}
.rc-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color 0.2s;
}
.rc-modal-close:hover {
    color: #333;
}
.rc-modal-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    display: block;
}
.rc-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #5D2906;
    margin-bottom: 12px;
    line-height: 1.3;
}
.rc-modal-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 24px;
}
.rc-modal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #8B4513;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    width: 100%;
}
.rc-modal-btn:hover {
    background: #5D2906;
    transform: translateY(-1px);
}
.rc-modal-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}
.rc-modal-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}
.rc-modal-social svg {
    width: 22px;
    height: 22px;
}
.rc-modal-social:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}
.rc-modal-facebook {
    background: #1877F2;
}
.rc-modal-instagram {
    background: #E4405F;
}
.rc-modal-tiktok {
    background: #000;
}
