.oscuro {
    color: #000
}

.image-container {
    position: relative;
    width: 80%;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    text-align: center
}

#imagen-interactiva {
    width: 100%;
    height: auto
}

.active-area {
    position: absolute;
    border: 2px solid rgba(255, 0, 0, 0.5);
    cursor: pointer;
    background: rgba(255, 0, 0, 0.335);
    border-radius: 10%
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 80px;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / .5);
    justify-content: center;
    align-items: center;
    z-index: 99
}

.modal-content {
    position: relative;
    background-color: #fff;
    padding: 10px;
    max-width: 80%;
    max-height: 90%;
    overflow: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 50px
}

.modal-content img {
    width: auto;
    max-width: 90%;
    height: auto;
    margin: 10px 0;
    padding: 20px;
    border-radius: 40px
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: #fc0404;
    cursor: pointer
}