

.options {
    cursor: pointer;
    font-size: 22px;
    padding: 0 5px;
}


/* Overlay de fundo */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 90;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Mostrar overlay */
.overlay.show {
    display: block;
    opacity: 1;
}

/* Popup já existente */
.popup {
    display: none;
    opacity: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    color: black;
    width: 90%;
    max-width: 350px;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    z-index: 100;
    text-align: center;
    transition: opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup.show {
    display: block;
    opacity: 1;

    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}



.popup img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 20px;
    cursor: pointer;
}

.popup-btn {
    background: #000;
    color: white;
    padding: 10px;
    border: none;
    margin-top: 10px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
}

.popup-btn.secondary {
    background: #ddd;
    color: black;
    margin-top: 5px;
}
.paragrafo {
    margin-top: 30px;
    margin-bottom: 20px;
}