.img-interativa {
    position: relative;
}
.img-interativa-hint {
    border: 2px solid red;
    position:absolute;
    border-radius: 50%;
    cursor: pointer;
}
.img-interativa-hint div {
    display: none;
    position: absolute;
    top: 20px;
    width: 250px;
    /* transform: translate(-1000%, -1000%); */
    -webkit-transition: transform .5s;
    -moz-transition: transform .5s;
    -ms-transition: transform .5s;
    -o-transition: transform .5s;
    transition: transform .5s;
    background-color: white;
    text-align: left;
    z-index: 1000;

    padding: 1em;
    -webkit-border-radius: .25em;
    -moz-border-radius: .25em;
    border-radius: .25em;

    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
    -moz-box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
}

.img-interativa-hint div.actived {
    display: block;
    /* transform: translate(0,0) !important; */
}
.img-interativa-hint .btn-close {
    position: absolute;
    right: 3px;
    top: 3px;
    color: rgba(0,0,0,.8);
    font-size: 1.2rem;
    cursor: pointer;
}

.img-clone {
    width: 730px;
    height: 594px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.hint-mobile.collapsible {
    display: none;
}

.hint-mobile .number {
    padding: .35em .75em;
    background-color: #ccc;
    color: #fff;
    margin: 0 .5em 0 0;
    border-radius: 1.5em;
}

.hint-mobile.collapsible li {
    margin: .5em 0;
    list-style: none !important;
}
.hint-mobile.collapsible .collapsible-body.actived {
    max-height: 600px;
}
.hint-mobile .collapsible-description {
    margin: 1em;
}

.hint-mobile .collapsible-body {
    display: block !important;
    max-height: 0;
    -webkit-transition: max-height .5s;
    -moz-transition: max-height .5s;
    -ms-transition: max-height .5s;
    -o-transition: max-height .5s;
    transition: max-height .5s;
    overflow: hidden;
}

@media screen and (max-width: 425px) {
    .img-clone {
        display: none;
    }
    .hint-mobile.collapsible {
        display: block;
    }
}