#mapa-interactivo {
    position: relative;
}

#mapa-interactivo area {
    cursor: pointer;
}

#info-ejecutivos {
    margin-top: 20px;
    padding: 10px;
    background-color: #f0f0f0;
}

#info-ejecutivos h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

#info-ejecutivos p {
    font-size: 16px;
    margin: 5px 0;
}

/* Ajuste de z-index para el mapa */
#mapa {
    width: 100%;
    height: 600px;
    border: 1px solid #ccc;
    border-radius: 5px;
    position: relative;
    z-index: 1; /* Asegura que esté por debajo del header */
}

/* ...estilos existentes... */
    cursor: pointer;

#mapa-interactivo .zona {
    cursor: pointer;
}

/* Debido a limitaciones con las etiquetas <area>, es posible que necesitemos una solución alternativa para mostrar el hover */

/* Si las áreas no responden al hover, considerar usar una imagen SVG del mapa para poder aplicar estilos directamente */


    transition: fill 0.3s;
}

#mapa-interactivo svg .zona:hover {
    fill: #ff0000;
}

/* Estilos corporativos para popups */
.info-region {
    padding: 20px;
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.info-region h3 {
    margin: 0 0 15px 0;
    color: #0474b4;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 2px solid #94c43c;
    padding-bottom: 8px;
}

.info-region p {
    margin: 12px 0;
    color: #333;
    font-size: 15px;
    line-height: 1.4;
}

.info-region p strong {
    color: #0474b4;
    display: block;
    margin-bottom: 4px;
}

/* Personalización del popup de Leaflet con colores corporativos */
.leaflet-popup-content-wrapper {
    padding: 0;
    border-radius: 8px;
    border: 2px solid #94c43c;
    box-shadow: 0 3px 14px rgba(0,0,0,0.15);
}

.leaflet-popup-tip {
    background: #94c43c;
}

.leaflet-container a.leaflet-popup-close-button {
    color: #0474b4;
    padding: 12px;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.leaflet-container a.leaflet-popup-close-button:hover {
    color: #94c43c;
    text-decoration: none;
}

/* Asegurar que los controles del mapa no se sobrepongan al header */
.leaflet-top {
    z-index: 1000;
}

