/* Fondo del popup */
.encab {
    position: fixed;
    top: 0;
    z-index: 1000;
}

.popup-overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 5000;
}

/* Caja principal */
.popup-box {
    background: #fff;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: aparecer 0.4s ease;
}

/* Botón cerrar */
.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: #dad6d6;
    cursor: pointer;
}

/* Contenido */
.popup-content {
    display: flex;
    flex-wrap: wrap;
}

/* Imagen */
.popup-image {
    flex: 1 1 5%;
}

.popup-image img {
    width: 100%;
    height: 100%;
}

