﻿/* Preview normal */
.interface-preview {
    width: 420px;
    max-width: 100%;
    margin: 10px 0 20px 25px;
    border-radius: 8px;
    cursor: zoom-in;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

/* Modal */
.image-zoom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0,0,0,.85);
    align-items: center;
    justify-content: center;
}

    /* Imagem ampliada */
    .image-zoom-modal img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 10px;
        box-shadow: 0 10px 40px rgba(0,0,0,.6);
    }

/* Botão fechar */
.zoom-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* Mobile */
@media (max-width: 767px) {
    .interface-preview {
        width: 100%;
        margin-left: 0;
    }
}
