/* ===============================================
   SOLUCIÓN DEFINITIVA DE CENTRADO CON FLEXBOX
   =============================================== */

.mapa-interactivo {
    /* Convertimos la caja que envuelve el mapa en un contenedor flexible */
    display: flex;

    /* Le ordenamos que centre a sus hijos horizontalmente */
    justify-content: center;

    /* (Opcional) Si también lo quieres centrar verticalmente dentro de su espacio */
    align-items: center; 
}

/* Reducimos el tamaño máximo del SVG para que el centrado sea visible */
.mapa-interactivo svg {
    max-width: 900px; /* Puedes ajustar este valor */
    width: 100%;
    height: auto;
}

/* Los estilos de las provincias se mantienen igual */
.mapa-interactivo svg path {
    fill: #DDE2E8;
    stroke: var(--color-white);
    stroke-width: 1.5px;
    transition: all 0.2s ease-in-out;
}

.mapa-interactivo svg a:hover path {
    fill: var(--color-secondary);
    transform: translateY(-2px);
    cursor: pointer;
}