.mapa-container {
    width: 100%;
    max-width: 900px;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin: 20px 0;
    cursor: pointer;
}

.mapa-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Badge superior */
.mapa-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    color: white;
}

/* Colores según tipo */
.mapa-badge.lugar {
    background-color: #1e3a8a; /* azul oscuro */
}

.mapa-badge.experiencia {
    background-color: #7a1f2b; /* granate elegante */
}

/* Botón flotante opcional */
.mapa-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.7);
    color: white;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 6px;
}

.mapa-overlay:hover {
    background: rgba(0,0,0,0.9);
}