body {
    font-family: Arial, sans-serif;
}

.popup {
    display: none; /* Oculto por defecto */
    position: fixed; 
    left: 0;
    top: 38px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    justify-content: center;
    align-items: center;
    z-index: 1;

}

.popup-content {
    position: relative;
    background-color: white;
    padding: 5px;
    border-radius: 5px;
    width: 80%;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
   
    overflow-y: auto; /* Permitir desplazamiento dentro del contenido */
    max-height: 80%; /* Limitar la altura máxima para evitar que se salga de la pantalla */
    z-index: 1;
}

.popup-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

.ver-mas {
    background-color: #970000; /* Verde */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 5px;
}

.ver-mas:hover {
    background-color: #282e28;
}

.titulo1{
    font-weight: bold;
}


