:root {
    --primary-color: #016FEC;
    --secondary-color: #FDA332;
}

#profile.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 100px;
}

#profile .content>div {
    align-items: start;
    flex-direction: column;
    gap: 20px;
    display: none;
}

#profile .content>div.active {
    display: flex;
}

#profile .content h3 {
    font-size: 38px;
    font-weight: 600;
    font-weight: bold;
    margin: 0;
}

#profile .items {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

#profile .items .item {
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 50px;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid #999999;
    padding: 15px 50px;
    cursor: pointer;
}

#profile .items .item .heading {
    display: flex;
    flex-direction: row;
    justify-content: start;
    gap: 20px;
    align-items: center;
}

#profile .items .item img {
    width: 73px;
    height: 73px;
    border: 5px solid var(--primary-color);
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

#profile .items .item.active img {
    border: 5px solid var(--secondary-color);
}

#profile .items .item h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
}

#profile .item div.mobile {
    display: none;
    font-weight: 400;
}

@media(max-width:768px) {
    #profile.grid {
        display: block;
    }

    #profile .items .item .heading {
        width: 100%;
    }

    #profile .item.active div.mobile {
        display: block;
    }

    #profile .items .item {
        flex-direction: column;
        gap: 20px;
    }

    #profile .content {
        display: none;
    }

    #profile .items .item {
        padding: 20px;
    }

}

/* Image Map Hotspots */
.elementor-image-map-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.elementor-image-map-wrapper img {
    display: block;
    max-width: 100%;
    height: auto;
}

.elementor-image-map-hotspot {
    position: absolute;
    z-index: 10;
}

.image-map-hotspot-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Efecto Pulse */
.image-map-hotspot-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    z-index: -1;
    background-color: inherit;
    animation: hotspot-pulse 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes hotspot-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.image-map-hotspot-icon:hover {
    transform: scale(1.1);
    background-color: var(--secondary-color);
}

.image-map-hotspot-icon i,
.image-map-hotspot-icon svg {
    pointer-events: none;
}

.image-map-tooltip-content {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    pointer-events: none;
    z-index: 100;
}

.image-map-tooltip-content::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.elementor-image-map-hotspot:hover .image-map-tooltip-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}