.modal {
	color:red;
    display:none;
    position:fixed;
    top:0; left:0;
    width:100%; height:100%;
    background:rgba(0,0,0,0.6);
    backdrop-filter:blur(3px);
}
.modal-content {
    background:#fff;
    width:90%;
    max-width:350px;
    margin:80px auto;
    padding:20px;
    border-radius:12px;
    text-align:center;
    font-family:Arial;
}
.modal-foto {
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
}
.modal-nome {
    font-size:20px;
    font-weight:bold;
    margin-bottom:10px;
}
.modal-frase {
    font-size:14px;
    color:#555;
    margin-bottom:20px;
}
.modal-option {
    padding:12px;
    margin-bottom:10px;
    background:#f2f2f2;
    border-radius:6px;
    cursor:pointer;
}
.modal-option:hover {
    background:#e6e6e6;
}
.modal-close {
    padding:10px;
    cursor:pointer;
    color:#666;
}