.lt-scanner-container {
    position: relative;
    max-width: 600px;
    margin: 20px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    font-family: sans-serif;
}

.lt-scanner-wrapper {
    position: relative;
    width: 100%;
    line-height: 0;
    cursor: none;
}

.lt-img-antes {
    width: 100%;
    height: auto;
}

.lt-scanner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 0.1s ease-out;
}

.lt-img-depois {
    width: 100%;
    height: auto;
}

.lt-scanner-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border: 3px solid #fff;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(255,255,255,0.5);
    display: none;
}

.lt-scanner-info {
    background: #f8f9fa;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    color: #333;
}

/* Popup Styles */
.lt-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lt-popup-content {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    animation: lt-pop-in 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes lt-pop-in {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lt-btn-whatsapp {
    display: block;
    background: #25d366;
    color: #fff;
    padding: 15px;
    text-decoration: none;
    border-radius: 10px;
    margin: 20px 0 10px;
    font-weight: bold;
}

.lt-close-popup {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    text-decoration: underline;
}
