/* INICO DEL LOADER DE PANELLUM */
#panorama {
    /* width: 100%;
    height: 550px; */
    background-color: #111;
    position: relative;
    overflow: hidden;
}

.pnlm-load-box, .pnlm-lbox, .pnlm-lcontainer {
    display: none !important;
}

.loader-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.1);
    display: none;
}

#progress-slider {
    width: 0%;
    height: 100%;
    background: #00d2ff;
    background: linear-gradient(90deg, #00d2ff 0%, #3a7bd5 100%);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.7);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#progress-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 1.5s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
/* FIN DEL LOADER DE PANELLUM */

/* INICIO HOTSPOT INFO */
.pnlm-hotspot-base {
    display: block !important;
}

.pnlm-tooltip span {
    visibility: hidden;
    position: absolute;
    bottom: 100px !important;
    left: 50% !important;
    margin-left: 0 !important;
    transform: translateX(-50%) translateY(15px) scale(0.97) !important;
    width: 320px;
    background: #ffffff !important;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08),
                0 1px 3px rgba(15, 23, 42, 0.03) !important;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: auto;
    padding: 0 !important;
    overflow: hidden;
    z-index: 1000;
    border: 0px solid transparent !important;
    outline: 0 !important;
    box-sizing: border-box;
    border-bottom: 5px solid #0f141a !important;
}

.pnlm-hotspot-base:hover span {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1) !important;
}

.split-header-custom {
    background: #0f141a;
    padding: 18px 22px;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    border-bottom: 3.5px solid #90c3e6;
}

.split-header-custom h4 {
    margin: 0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.split-body-custom {
    padding: 24px 22px;
    background: #ffffff;
    text-align: left;
    box-sizing: border-box;
    width: 100%;
}

.animated-split-content {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.pnlm-hotspot-base:hover .animated-split-content {
    opacity: 1;
    transform: translateY(0);
}

.subtitle-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.subtitle-group img {
    filter: invert(7%) sepia(9%) saturate(1200%) hue-rotate(170deg);
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.subtitle-group h5 {
    margin: 0;
    color: #0f172a; 
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.animated-split-content p {
    margin: 0;
    color: #475569; 
    font-size: 13.5px;
    line-height: 1.6;
    text-align: justify; 
}
/* FIN HOTSPOT INFO */