* {
    box-sizing: border-box;
}

.hotspotsInteractivo1 {
    --colorMarca1: #016d38;
    --colorMarca2: #ffdc5d;
    --colorMarca3: #e5e5e5;
    --colorTexto: #333333;

    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
}

.hotspotsInteractivo1 .lg-container {
    position: relative;
}

.hotspotsInteractivo1 .lg-image {
    display: block;
    height: 100%;
    width: 700px;
    max-width: 100%;
}

.hotspotsInteractivo1 .lg-hotspot {
    position: absolute;
    margin: 0;
    padding: 0;
    transform: translate(-50%, -50%);
    z-index: 0;
    width: 8%;
}

@media (max-width: 576px) {
    .hotspotsInteractivo1 .lg-hotspot {
        width: 10%;
    }
}

.hotspotsInteractivo1 .lg-hotspot.visto {
    position: absolute;
}

.hotspotsInteractivo1 .lg-hotspot.visto::after {
    content: '✓';
    position: absolute;
    top: -5px;
    right: -5px;
    background: green;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.hotspotsInteractivo1 .lg-hotspot--selected {
    z-index: 2;
}

.hotspotsInteractivo1 .lg-hotspot--selected .lg-hotspot__label {
    display: flex;
}

.hotspotsInteractivo1 .lg-hotspot__close {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--colorMarca1);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    transform: scale(1);
    transition: transform 0.3s;
}

.hotspotsInteractivo1 .lg-hotspot__close:hover {
    transform: scale(1.05);
}

.hotspotsInteractivo1 .lg-hotspot__button {
    position: relative;
}

.hotspotsInteractivo1 .lg-hotspot__button img {
    width: 100%;
    z-index: 1;
    cursor: pointer;
    transform: scale(1);
    animation: pulse1 1.5s ease-in-out infinite;
    border-radius: 50%;
    box-shadow: 0 0 2px 0 var(--colorMarca2);
    transition: transform .3s;
}

.hotspotsInteractivo1 .lg-hotspot:hover .lg-hotspot__button img,
.hotspotsInteractivo1 .lg-hotspot:active .lg-hotspot__button img {
    transform: scale(1.05);
}

.hotspotsInteractivo1 .hotspots-item.visto .lg-hotspot__button img {
    box-shadow: 0 0 0 2px var(--colorMarca1);
    animation: none;
}

.hotspotsInteractivo1 .hotspots-item.visto .lg-hotspot__button img::before {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    animation: none;
}

.hotspotsInteractivo1 .lg-hotspot__label {
    position: absolute;
    width: 250px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-size: 20px;
    line-height: 1.2;
    z-index: -1;
    border-radius: 5px;
    user-select: none;
    display: none;
    flex-flow: column;
    transition: all 0.1s linear;
}

@media (max-width: 576px) {
    .hotspotsInteractivo1 .lg-hotspot__label {
        width: 200px;
    }
}

.hotspotsInteractivo1 .lg-hotspot__label.left {
    right: calc(100% - 50px);
    transform: translateX(-10px);
}

.hotspotsInteractivo1 .lg-hotspot__label.right {
    left: calc(100% - 50px);
    transform: translateX(10px);
}

.hotspotsInteractivo1 .lg-hotspot__label.top {
    bottom: 100%;
    transform: translateY(-10px);
}

.hotspotsInteractivo1 .lg-hotspot__label.bottom {
    top: 100%;
    transform: translateY(10px);
}

.hotspotsInteractivo1 .lg-hotspot__label .lg-hotspot__title {
    margin: 0;
    padding: 10px 20px 10px 10px;
    background-color: var(--colorMarca2);
    font-size: 24px;
    font-weight: normal;
    color: white;
    border-radius: 5px 5px 0 0;
    border-bottom: 3px solid var(--colorMarca1);
    text-align: center;
    font-weight: bold;
}

.hotspotsInteractivo1 .lg-hotspot__label p {
    margin: 0;
    padding: 15px;
    color: var(--colorTexto);
}

.hotspotsInteractivo1 .lg-item1 {
    top: 6%;
    left: 6%;
}

.hotspotsInteractivo1 .lg-item2 {
    top: 21%;
    left: 6%;
}

.hotspotsInteractivo1 .lg-item3 {
    top: 35%;
    left: 6%;
}

.hotspotsInteractivo1 .lg-item4 {
    top: 50%;
    left: 6%;
}

.hotspotsInteractivo1 .lg-item5 {
    top: 65%;
    left: 6%;
}

.hotspotsInteractivo1 .lg-item6 {
    top: 12%;
    left: 95%;
}

.hotspotsInteractivo1 .lg-item7 {
    top: 31%;
    left: 95%;
}

.hotspotsInteractivo1 .lg-item8 {
    top: 50%;
    left: 95%;
}

.hotspotsInteractivo1 .lg-item9 {
    top: 67%;
    left: 95%;
}

.hotspotsInteractivo1 .lg-item10 {
    top: 85%;
    left: 95%;
}

@keyframes pulse1 {
    0% {
        transform: scale(1);
        box-shadow: 0 0 2px 0 var(--colorMarca2);
    }

    40% {
        transform: scale(1.1);
        box-shadow: 0 0 0 3px var(--colorMarca2);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 2px 0 var(--colorMarca2);
    }
}